diff --git a/ChangeLog.md b/ChangeLog.md
index 0b33bb8ca12a..c386ee285bc2 100644
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,3 +1,84 @@
+## 3.7.0 - March 2020
+#### Az.Accounts
+* Fixed 'Get-AzTenant'/'Get-AzDefault'/'Set-AzDefault' throw NullReferenceException when not login [#10292]
+
+#### Az.Compute
+* Added the following parameters to 'New-AzDiskConfig' cmdlet:
+ - DiskIOPSReadOnly, DiskMBpsReadOnly, MaxSharesCount, GalleryImageReference
+* Allowed Encryption property to Target parameter of 'New-AzGalleryImageVersion' cmdlet.
+* Fixed tempDisk issue for 'Set-AzVmss' -Reimage and 'Invoke-AzVMReimage' cmdlets. [#11354]
+* Added support to below cmdlets for new SAP Extension
+ - 'Set-AzVMAEMExtension'
+ - 'Get-AzVMAEMExtension'
+ - 'Remove-AzVMAEMExtension'
+ - 'Update-AzVMAEMExtension'
+* Fixed errors in examples of help document
+* Showed the exact string value for VM PowerState in the table format.
+* 'New-AzVmssConfig': fixed serialization of AutomaticRepairs property when SinglePlacementGroup is disabled. [#11257]
+
+#### Az.DataFactory
+* Updated ADF .Net SDK version to 4.8.0
+* Added optional parameters to 'Invoke-AzDataFactoryV2Pipeline' command to support rerun
+
+#### Az.DataLakeStore
+* Added breaking change description for 'Export-AzDataLakeStoreItem' and 'Import-AzDataLakeStoreItem'
+* Added option of Byte encoding for 'New-AzDataLakeStoreItem', 'Add-AzDAtaLakeStoreItemContent', and 'Get-AzDAtaLakeStoreItemContent'
+
+#### Az.HDInsight
+* Supported specifying minimal supported TLS version when creating cluster.
+
+#### Az.IotHub
+* Added support to manage distributed settings per-device. New Cmdlets are:
+ - 'Get-AzIotHubDistributedTracing'
+ - 'Set-AzIotHubDistributedTracing'
+
+#### Az.KeyVault
+* Added breaking change attributes to 'New-AzKeyVault'
+
+#### Az.Monitor
+* Updated documentation for 'New-AzScheduledQueryRuleLogMetricTrigger'
+
+#### Az.Network
+* Updated cmdlets to allow cross-tenant VirtualHubVnetConnections
+ - 'New-AzVirtualHubVnetConnection'
+ - 'Update-AzVirtualHubVnetConnection'
+ - 'New-AzVirtualHub'
+ - 'Update-AzVirtualHub'
+* Removed Sql Management SDK dependency
+
+#### Az.PolicyInsights
+* Improved error messages
+
+#### Az.RecoveryServices
+* Azure Site Recovery added support for doing reprotect and updated vm properties for Azure disk encrypted Virtual Machines.
+* Added Azure Site Recovery VmwareToAzure properties DR monitoring
+* Azure Backup added support for retrying policy update for failed items.
+* Azure Backup Added support for disk exclusion settings during backup and restore.
+* Azure Backup Added Support for Restoring Multiple files/folders in AzureFileShare
+* Azure Backup Added support for User-specified Resourcegroup support while updating IaasVM Policy
+
+#### Az.Resources
+* Fixed 'Get-AzResource -ResourceGroupName -Name -ExpandProperties -ResourceType' to use actual apiVersion of resources instead of default apiVersion [#11267]
+* Added correlationId logging for error scenarios
+* Small documentation change to 'Get-AzResourceLock'. Added example.
+* Escaped single quote in parameter value of 'Get-AzADUser' [#11317]
+* Added new cmdlets for Deployment Scripts ('Get-AzDeploymentScript', 'Get-AzDeploymentScriptLog', 'Save-AzDeploymentScriptLog', 'Remove-AzDeploymentScript')
+
+#### Az.Sql
+* Added readable secondary parameter to 'Invoke-AzSqlDatabaseFailover'
+* Added cmdlet 'Disable-AzSqlServerActiveDirectoryOnlyAuthentication'
+* Saved sensitivity rank when classifying columns in the database.
+
+#### Az.Support
+* General availability of 'Az.Support' module
+
+#### Az.Websites
+* Added support for working with webapp Traffic Routing Rules via below new cmdlets
+ - 'Get-AzWebAppTrafficRouting'
+ - 'Update-AzWebAppTrafficRouting'
+ - 'Add-AzWebAppTrafficRouting'
+ - 'Remove-AzWebAppTrafficRouting'
+
## 3.6.1 - March 2020
#### Az.Accounts
* Open Azure PowerShell survey page in 'Send-Feedback' [#11020]
diff --git a/src/Accounts/Accounts/Az.Accounts.psd1 b/src/Accounts/Accounts/Az.Accounts.psd1
index 444be5e14d31..3b616a790824 100644
--- a/src/Accounts/Accounts/Az.Accounts.psd1
+++ b/src/Accounts/Accounts/Az.Accounts.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
-# Generated on: 3/3/2020
+# Generated on: 3/26/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '1.7.3'
+ModuleVersion = '1.7.4'
# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'
@@ -142,9 +142,7 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Open Azure PowerShell survey page in ''Send-Feedback'' [#11020]
-* Display Azure PowerShell survey URL in ''Resolve-Error'' [#11021]
-* Added Az version in UserAgent'
+ ReleaseNotes = '* Fixed ''Get-AzTenant''/''Get-AzDefault''/''Set-AzDefault'' throw NullReferenceException when not login [#10292]'
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/Accounts/Accounts/ChangeLog.md b/src/Accounts/Accounts/ChangeLog.md
index f1d77c8de0b2..106216c61a75 100644
--- a/src/Accounts/Accounts/ChangeLog.md
+++ b/src/Accounts/Accounts/ChangeLog.md
@@ -18,6 +18,8 @@
- Additional information about change #1
-->
## Upcoming Release
+
+## Version 1.7.4
* Fixed `Get-AzTenant`/`Get-AzDefault`/`Set-AzDefault` throw NullReferenceException when not login [#10292]
## Version 1.7.3
diff --git a/src/Accounts/Accounts/Properties/AssemblyInfo.cs b/src/Accounts/Accounts/Properties/AssemblyInfo.cs
index 44871b9cea6f..8626e163559c 100644
--- a/src/Accounts/Accounts/Properties/AssemblyInfo.cs
+++ b/src/Accounts/Accounts/Properties/AssemblyInfo.cs
@@ -43,8 +43,8 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
-[assembly: AssemblyVersion("1.7.3")]
-[assembly: AssemblyFileVersion("1.7.3")]
+[assembly: AssemblyVersion("1.7.4")]
+[assembly: AssemblyFileVersion("1.7.4")]
#if !SIGN
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Accounts.Test")]
#endif
diff --git a/src/Advisor/Advisor/Az.Advisor.psd1 b/src/Advisor/Advisor/Az.Advisor.psd1
index be6b299b2018..7827d9016d85 100644
--- a/src/Advisor/Advisor/Az.Advisor.psd1
+++ b/src/Advisor/Advisor/Az.Advisor.psd1
@@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Advisor.dll'
diff --git a/src/Aks/Aks/Az.Aks.psd1 b/src/Aks/Aks/Az.Aks.psd1
index cf6af30602a3..a4d8ef09ea6c 100644
--- a/src/Aks/Aks/Az.Aks.psd1
+++ b/src/Aks/Aks/Az.Aks.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'YamlDotNet.dll', 'AutoMapper.dll'
diff --git a/src/AlertsManagement/AlertsManagement/Az.AlertsManagement.psd1 b/src/AlertsManagement/AlertsManagement/Az.AlertsManagement.psd1
index c6310fde51db..a647ca28e520 100644
--- a/src/AlertsManagement/AlertsManagement/Az.AlertsManagement.psd1
+++ b/src/AlertsManagement/AlertsManagement/Az.AlertsManagement.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.AlertsManagement.dll'
diff --git a/src/AnalysisServices/AnalysisServices/Az.AnalysisServices.psd1 b/src/AnalysisServices/AnalysisServices/Az.AnalysisServices.psd1
index 38ba89be8ae3..148427cdff97 100644
--- a/src/AnalysisServices/AnalysisServices/Az.AnalysisServices.psd1
+++ b/src/AnalysisServices/AnalysisServices/Az.AnalysisServices.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Analysis.dll'
diff --git a/src/ApiManagement/ApiManagement/Az.ApiManagement.psd1 b/src/ApiManagement/ApiManagement/Az.ApiManagement.psd1
index 74cdf772c39c..9a32353b06be 100644
--- a/src/ApiManagement/ApiManagement/Az.ApiManagement.psd1
+++ b/src/ApiManagement/ApiManagement/Az.ApiManagement.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'AutoMapper.dll', 'Microsoft.Azure.Management.ApiManagement.dll',
diff --git a/src/ApplicationInsights/ApplicationInsights/Az.ApplicationInsights.psd1 b/src/ApplicationInsights/ApplicationInsights/Az.ApplicationInsights.psd1
index 7e94f7bc402c..c038ed05fd83 100644
--- a/src/ApplicationInsights/ApplicationInsights/Az.ApplicationInsights.psd1
+++ b/src/ApplicationInsights/ApplicationInsights/Az.ApplicationInsights.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.ApplicationInsights.dll'
diff --git a/src/Attestation/Attestation/Az.Attestation.psd1 b/src/Attestation/Attestation/Az.Attestation.psd1
index e022d2066e45..83ca4807be71 100644
--- a/src/Attestation/Attestation/Az.Attestation.psd1
+++ b/src/Attestation/Attestation/Az.Attestation.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
-# Generated on: 3/3/2020
+# Generated on: 3/26/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '0.1.5'
+ModuleVersion = '0.1.6'
# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'
@@ -53,13 +53,13 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
-RequiredAssemblies = 'Microsoft.Azure.Management.Attestation.dll',
- 'Microsoft.Azure.Attestation.dll',
- 'Microsoft.IdentityModel.JsonWebTokens.dll',
- 'Microsoft.IdentityModel.Tokens.dll',
+RequiredAssemblies = 'Microsoft.Azure.Management.Attestation.dll',
+ 'Microsoft.Azure.Attestation.dll',
+ 'Microsoft.IdentityModel.JsonWebTokens.dll',
+ 'Microsoft.IdentityModel.Tokens.dll',
'Microsoft.IdentityModel.Logging.dll'
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
@@ -78,11 +78,10 @@ NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.Attestation.dll')
FunctionsToExport = @()
# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
-CmdletsToExport = 'New-AzAttestation', 'Get-AzAttestation', 'Remove-AzAttestation',
- 'Get-AzAttestationPolicy', 'Set-AzAttestationPolicy',
- 'Reset-AzAttestationPolicy',
- 'Get-AzAttestationPolicySigners', 'Add-AzAttestationPolicySigner',
- 'Remove-AzAttestationPolicySigner'
+CmdletsToExport = 'New-AzAttestation', 'Get-AzAttestation', 'Remove-AzAttestation',
+ 'Get-AzAttestationPolicy', 'Set-AzAttestationPolicy',
+ 'Reset-AzAttestationPolicy', 'Get-AzAttestationPolicySigners',
+ 'Add-AzAttestationPolicySigner', 'Remove-AzAttestationPolicySigner'
# Variables to export from this module
# VariablesToExport = @()
@@ -117,8 +116,9 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Added policy signer management cmdlets to ''Az.Attestation'' module
-* Added ''Location'' and ''Tag'' to ''New-AzAttestation'''
+ ReleaseNotes = '* Improved error messages for server response codes 400 and 401
+* Improved example code included in documentation files
+* Added three additional required assemblies to Az.Attestation.psd1'
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/Attestation/Attestation/ChangeLog.md b/src/Attestation/Attestation/ChangeLog.md
index 640e9c580bec..517f736ba4db 100644
--- a/src/Attestation/Attestation/ChangeLog.md
+++ b/src/Attestation/Attestation/ChangeLog.md
@@ -20,6 +20,8 @@
## Upcoming Release
+
+## Version 0.1.6
* Improved error messages for server response codes 400 and 401
* Improved example code included in documentation files
* Added three additional required assemblies to Az.Attestation.psd1
diff --git a/src/Attestation/Attestation/Properties/AssemblyInfo.cs b/src/Attestation/Attestation/Properties/AssemblyInfo.cs
index 5055b63a3dd4..3cb170f98867 100644
--- a/src/Attestation/Attestation/Properties/AssemblyInfo.cs
+++ b/src/Attestation/Attestation/Properties/AssemblyInfo.cs
@@ -29,8 +29,8 @@
[assembly: CLSCompliant(false)]
[assembly: Guid("2994548F-69B9-4DC2-8D19-52CC0C0C85BC")]
-[assembly: AssemblyVersion("0.1.5")]
-[assembly: AssemblyFileVersion("0.1.5")]
+[assembly: AssemblyVersion("0.1.6")]
+[assembly: AssemblyFileVersion("0.1.6")]
#if !SIGN
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Attestation.Test")]
#endif
diff --git a/src/Automation/Automation/Az.Automation.psd1 b/src/Automation/Automation/Az.Automation.psd1
index 2ab191ba955e..09a7423947de 100644
--- a/src/Automation/Automation/Az.Automation.psd1
+++ b/src/Automation/Automation/Az.Automation.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Automation.dll'
diff --git a/src/Batch/Batch/Az.Batch.psd1 b/src/Batch/Batch/Az.Batch.psd1
index e51145bf103e..d2a44e14f034 100644
--- a/src/Batch/Batch/Az.Batch.psd1
+++ b/src/Batch/Batch/Az.Batch.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Batch.dll', 'Microsoft.Azure.Management.Batch.dll',
diff --git a/src/Billing/Billing/Az.Billing.psd1 b/src/Billing/Billing/Az.Billing.psd1
index 799f7a8d4d25..839fb02a6460 100644
--- a/src/Billing/Billing/Az.Billing.psd1
+++ b/src/Billing/Billing/Az.Billing.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Billing.dll',
diff --git a/src/Blueprint/Blueprint/Az.Blueprint.psd1 b/src/Blueprint/Blueprint/Az.Blueprint.psd1
index 144076148861..3a98a84935e1 100644
--- a/src/Blueprint/Blueprint/Az.Blueprint.psd1
+++ b/src/Blueprint/Blueprint/Az.Blueprint.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Blueprint.dll'
diff --git a/src/Cdn/Cdn/Az.Cdn.psd1 b/src/Cdn/Cdn/Az.Cdn.psd1
index 462206f83b34..1b18459ccd53 100644
--- a/src/Cdn/Cdn/Az.Cdn.psd1
+++ b/src/Cdn/Cdn/Az.Cdn.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Cdn.dll'
diff --git a/src/CognitiveServices/CognitiveServices/Az.CognitiveServices.psd1 b/src/CognitiveServices/CognitiveServices/Az.CognitiveServices.psd1
index 8e7be6a67a67..85a2f8804788 100644
--- a/src/CognitiveServices/CognitiveServices/Az.CognitiveServices.psd1
+++ b/src/CognitiveServices/CognitiveServices/Az.CognitiveServices.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.CognitiveServices.dll'
diff --git a/src/Compute/Compute.sln b/src/Compute/Compute.sln
index a3724def58c7..4cc26a7c7e69 100644
--- a/src/Compute/Compute.sln
+++ b/src/Compute/Compute.sln
@@ -14,6 +14,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Accounts", "..\Accounts\Acc
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "KeyVault", "..\KeyVault\KeyVault\KeyVault.csproj", "{9FFC40CC-A341-4D0C-A25D-DC6B78EF6C94}"
EndProject
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ManagedServiceIdentity", "..\ManagedServiceIdentity\ManagedServiceIdentity.csproj", "{228EB071-FA04-43B3-95F9-7D76DBF0B850}"
+EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Authentication", "..\Accounts\Authentication\Authentication.csproj", "{FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Authentication.ResourceManager", "..\Accounts\Authentication.ResourceManager\Authentication.ResourceManager.csproj", "{3E016018-D65D-4336-9F64-17DA97783AD0}"
@@ -48,6 +50,10 @@ Global
{9FFC40CC-A341-4D0C-A25D-DC6B78EF6C94}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9FFC40CC-A341-4D0C-A25D-DC6B78EF6C94}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9FFC40CC-A341-4D0C-A25D-DC6B78EF6C94}.Release|Any CPU.Build.0 = Release|Any CPU
+ {228EB071-FA04-43B3-95F9-7D76DBF0B850}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {228EB071-FA04-43B3-95F9-7D76DBF0B850}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {228EB071-FA04-43B3-95F9-7D76DBF0B850}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {228EB071-FA04-43B3-95F9-7D76DBF0B850}.Release|Any CPU.Build.0 = Release|Any CPU
{FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Release|Any CPU.ActiveCfg = Release|Any CPU
diff --git a/src/Compute/Compute/Az.Compute.psd1 b/src/Compute/Compute/Az.Compute.psd1
index 582fc656330b..7fc2361c63c1 100644
--- a/src/Compute/Compute/Az.Compute.psd1
+++ b/src/Compute/Compute/Az.Compute.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
-# Generated on: 2/11/2020
+# Generated on: 3/26/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '3.5.0'
+ModuleVersion = '3.6.0'
# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'
@@ -54,7 +54,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'AutoMapper.dll', 'Microsoft.Azure.Management.Compute.dll',
@@ -203,7 +203,18 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Allowed empty value for ProximityPlacementGroupId during update'
+ ReleaseNotes = '* Added the following parameters to ''New-AzDiskConfig'' cmdlet:
+ - DiskIOPSReadOnly, DiskMBpsReadOnly, MaxSharesCount, GalleryImageReference
+* Allowed Encryption property to Target parameter of ''New-AzGalleryImageVersion'' cmdlet.
+* Fixed tempDisk issue for ''Set-AzVmss'' -Reimage and ''Invoke-AzVMReimage'' cmdlets. [#11354]
+* Added support to below cmdlets for new SAP Extension
+ - ''Set-AzVMAEMExtension''
+ - ''Get-AzVMAEMExtension''
+ - ''Remove-AzVMAEMExtension''
+ - ''Update-AzVMAEMExtension''
+* Fixed errors in examples of help document
+* Showed the exact string value for VM PowerState in the table format.
+* ''New-AzVmssConfig'': fixed serialization of AutomaticRepairs property when SinglePlacementGroup is disabled. [#11257]'
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/Compute/Compute/ChangeLog.md b/src/Compute/Compute/ChangeLog.md
index 91908eb25513..8517bbcf1750 100644
--- a/src/Compute/Compute/ChangeLog.md
+++ b/src/Compute/Compute/ChangeLog.md
@@ -19,6 +19,8 @@
- Additional information about change #1
-->
## Upcoming Release
+
+## Version 3.6.0
* Added the following parameters to `New-AzDiskConfig` cmdlet:
- DiskIOPSReadOnly, DiskMBpsReadOnly, MaxSharesCount, GalleryImageReference
* Allowed Encryption property to Target parameter of `New-AzGalleryImageVersion` cmdlet.
diff --git a/src/Compute/Compute/Properties/AssemblyInfo.cs b/src/Compute/Compute/Properties/AssemblyInfo.cs
index d6fb43f7de67..a51fb78b6cef 100644
--- a/src/Compute/Compute/Properties/AssemblyInfo.cs
+++ b/src/Compute/Compute/Properties/AssemblyInfo.cs
@@ -25,8 +25,8 @@
[assembly: ComVisible(false)]
[assembly: CLSCompliant(false)]
[assembly: Guid("91792853-487B-4DC2-BE6C-DD09A0A1BC10")]
-[assembly: AssemblyVersion("3.5.0")]
-[assembly: AssemblyFileVersion("3.5.0")]
+[assembly: AssemblyVersion("3.6.0")]
+[assembly: AssemblyFileVersion("3.6.0")]
#if !SIGN
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Compute.Test")]
#endif
diff --git a/src/ContainerInstance/ContainerInstance/Az.ContainerInstance.psd1 b/src/ContainerInstance/ContainerInstance/Az.ContainerInstance.psd1
index 6b16cb0c94c7..2c52845f8df5 100644
--- a/src/ContainerInstance/ContainerInstance/Az.ContainerInstance.psd1
+++ b/src/ContainerInstance/ContainerInstance/Az.ContainerInstance.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'AutoMapper.dll',
diff --git a/src/ContainerRegistry/ContainerRegistry/Az.ContainerRegistry.psd1 b/src/ContainerRegistry/ContainerRegistry/Az.ContainerRegistry.psd1
index eedf3ab669bf..b9c708813e3a 100644
--- a/src/ContainerRegistry/ContainerRegistry/Az.ContainerRegistry.psd1
+++ b/src/ContainerRegistry/ContainerRegistry/Az.ContainerRegistry.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.ContainerRegistry.dll'
diff --git a/src/CosmosDB/CosmosDB/Az.CosmosDB.psd1 b/src/CosmosDB/CosmosDB/Az.CosmosDB.psd1
index 6d741cbd0e48..432c12ad3209 100644
--- a/src/CosmosDB/CosmosDB/Az.CosmosDB.psd1
+++ b/src/CosmosDB/CosmosDB/Az.CosmosDB.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
-# Generated on: 2020-02-20
+# Generated on: 3/26/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '0.1.2'
+ModuleVersion = '0.1.3'
# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.CosmosDB.dll'
@@ -163,8 +163,8 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Updated the Azure.Management.CosmosDB Sdk Version to 1.0.2
- - Fix bugs related to https://github.com/Azure/azure-sdk-for-net/issues/10639'
+ ReleaseNotes = '* Allowing Account Creation for API Types: Gremlin, Cassandra and Table.
+* Bug Fixes'
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/CosmosDB/CosmosDB/ChangeLog.md b/src/CosmosDB/CosmosDB/ChangeLog.md
index 2a967ca0356b..c85a358fe9da 100644
--- a/src/CosmosDB/CosmosDB/ChangeLog.md
+++ b/src/CosmosDB/CosmosDB/ChangeLog.md
@@ -19,6 +19,8 @@
-->
## Upcoming Release
+
+## Version 0.1.3
* Allowing Account Creation for API Types: Gremlin, Cassandra and Table.
* Bug Fixes
diff --git a/src/CosmosDB/CosmosDB/Properties/AssemblyInfo.cs b/src/CosmosDB/CosmosDB/Properties/AssemblyInfo.cs
index 6e511e3cb3c8..84ebcb8ebd05 100644
--- a/src/CosmosDB/CosmosDB/Properties/AssemblyInfo.cs
+++ b/src/CosmosDB/CosmosDB/Properties/AssemblyInfo.cs
@@ -25,5 +25,5 @@
[assembly: ComVisible(false)]
[assembly: CLSCompliant(false)]
[assembly: Guid("d90791a2-8102-47fc-8150-de25ae796eb1")]
-[assembly: AssemblyVersion("0.1.2")]
-[assembly: AssemblyFileVersion("0.1.2")]
+[assembly: AssemblyVersion("0.1.3")]
+[assembly: AssemblyFileVersion("0.1.3")]
diff --git a/src/DataBox/DataBox/Az.DataBox.psd1 b/src/DataBox/DataBox/Az.DataBox.psd1
index 194e3f2c8ceb..2d2ab12c01bf 100644
--- a/src/DataBox/DataBox/Az.DataBox.psd1
+++ b/src/DataBox/DataBox/Az.DataBox.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.DataBox.dll'
diff --git a/src/DataBoxEdge/DataBoxEdge/Az.DataBoxEdge.psd1 b/src/DataBoxEdge/DataBoxEdge/Az.DataBoxEdge.psd1
index c29e2514a2cb..a1b2a2031225 100644
--- a/src/DataBoxEdge/DataBoxEdge/Az.DataBoxEdge.psd1
+++ b/src/DataBoxEdge/DataBoxEdge/Az.DataBoxEdge.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.DataBoxEdge.dll'
diff --git a/src/DataFactory/DataFactoryV2/Az.DataFactory.psd1 b/src/DataFactory/DataFactoryV2/Az.DataFactory.psd1
index a51e30eb31f0..c5b7fca63b8d 100644
--- a/src/DataFactory/DataFactoryV2/Az.DataFactory.psd1
+++ b/src/DataFactory/DataFactoryV2/Az.DataFactory.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
-# Generated on: 1/21/2020
+# Generated on: 3/26/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '1.6.1'
+ModuleVersion = '1.7.0'
# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.DataFactory.dll',
@@ -170,7 +170,8 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Update ADF .Net SDK version to 4.7.0'
+ ReleaseNotes = '* Updated ADF .Net SDK version to 4.8.0
+* Added optional parameters to ''Invoke-AzDataFactoryV2Pipeline'' command to support rerun'
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/DataFactory/DataFactoryV2/Changelog.md b/src/DataFactory/DataFactoryV2/Changelog.md
index 2280d5cd962d..f2e7b3f0a689 100644
--- a/src/DataFactory/DataFactoryV2/Changelog.md
+++ b/src/DataFactory/DataFactoryV2/Changelog.md
@@ -18,6 +18,8 @@
- Additional information about change #1
-->
## Upcoming Release
+
+## Version 1.7.0
* Updated ADF .Net SDK version to 4.8.0
* Added optional parameters to `Invoke-AzDataFactoryV2Pipeline` command to support rerun
diff --git a/src/DataFactory/DataFactoryV2/Properties/AssemblyInfo.cs b/src/DataFactory/DataFactoryV2/Properties/AssemblyInfo.cs
index 9de85e318f05..eb204c1f31e9 100644
--- a/src/DataFactory/DataFactoryV2/Properties/AssemblyInfo.cs
+++ b/src/DataFactory/DataFactoryV2/Properties/AssemblyInfo.cs
@@ -25,8 +25,8 @@
[assembly: ComVisible(false)]
[assembly: CLSCompliant(false)]
[assembly: Guid("5d024af0-81c9-44f0-b3b0-7080f103fb4d")]
-[assembly: AssemblyVersion("1.6.1")]
-[assembly: AssemblyFileVersion("1.6.1")]
+[assembly: AssemblyVersion("1.7.0")]
+[assembly: AssemblyFileVersion("1.7.0")]
#if !SIGN
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2.Test")]
#endif
diff --git a/src/DataLakeAnalytics/DataLakeAnalytics/Az.DataLakeAnalytics.psd1 b/src/DataLakeAnalytics/DataLakeAnalytics/Az.DataLakeAnalytics.psd1
index 775dce894ff2..08eb76e61191 100644
--- a/src/DataLakeAnalytics/DataLakeAnalytics/Az.DataLakeAnalytics.psd1
+++ b/src/DataLakeAnalytics/DataLakeAnalytics/Az.DataLakeAnalytics.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.DataLake.Analytics.dll'
diff --git a/src/DataLakeStore/DataLakeStore/Az.DataLakeStore.psd1 b/src/DataLakeStore/DataLakeStore/Az.DataLakeStore.psd1
index 1bbb7068e822..42c0d2545bb5 100644
--- a/src/DataLakeStore/DataLakeStore/Az.DataLakeStore.psd1
+++ b/src/DataLakeStore/DataLakeStore/Az.DataLakeStore.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
-# Generated on: 3/3/2020
+# Generated on: 3/26/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '1.2.7'
+ModuleVersion = '1.2.8'
# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.DataLake.Store.dll',
@@ -160,7 +160,8 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Added reference to System.Buffers explicitly in csproj and psd1.'
+ ReleaseNotes = '* Added breaking change description for ''Export-AzDataLakeStoreItem'' and ''Import-AzDataLakeStoreItem''
+* Added option of Byte encoding for ''New-AzDataLakeStoreItem'', ''Add-AzDAtaLakeStoreItemContent'', and ''Get-AzDAtaLakeStoreItemContent'''
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/DataLakeStore/DataLakeStore/ChangeLog.md b/src/DataLakeStore/DataLakeStore/ChangeLog.md
index 407d11d3e1ee..248416f82654 100644
--- a/src/DataLakeStore/DataLakeStore/ChangeLog.md
+++ b/src/DataLakeStore/DataLakeStore/ChangeLog.md
@@ -18,6 +18,9 @@
- Additional information about change #1
-->
## Upcoming Release
+
+## Version 1.2.8
+* Added breaking change description for `Export-AzDataLakeStoreItem` and `Import-AzDataLakeStoreItem`
* Added option of Byte encoding for `New-AzDataLakeStoreItem`, `Add-AzDAtaLakeStoreItemContent`, and `Get-AzDAtaLakeStoreItemContent`
## Version 1.2.7
diff --git a/src/DataLakeStore/DataLakeStore/DataPlaneCommands/ExportAzureRmDataLakeStoreItem.cs b/src/DataLakeStore/DataLakeStore/DataPlaneCommands/ExportAzureRmDataLakeStoreItem.cs
index 9059f090ce0e..d975d3fe2952 100644
--- a/src/DataLakeStore/DataLakeStore/DataPlaneCommands/ExportAzureRmDataLakeStoreItem.cs
+++ b/src/DataLakeStore/DataLakeStore/DataPlaneCommands/ExportAzureRmDataLakeStoreItem.cs
@@ -12,15 +12,16 @@
// limitations under the License.
// ----------------------------------------------------------------------------------
-using System;
-using Microsoft.Azure.Commands.DataLakeStore.Properties;
+
using Microsoft.Azure.Commands.DataLakeStore.Models;
using Microsoft.Rest.Azure;
using System.Management.Automation;
using Microsoft.Azure.DataLake.Store;
+using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
namespace Microsoft.Azure.Commands.DataLakeStore
{
+ [GenericBreakingChange("For store side export failures, Export-AzDataLakeStoreItem will throw exception instead of printing message on screen", "2.0.0", "05/18/2020")]
[Cmdlet("Export", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "DataLakeStoreItem", SupportsShouldProcess = true, DefaultParameterSetName = BaseParameterSetName), OutputType(typeof(string))]
[Alias("Export-AdlStoreItem")]
public class ExportAzureDataLakeStoreItem : DataLakeStoreFileSystemCmdletBase
diff --git a/src/DataLakeStore/DataLakeStore/DataPlaneCommands/ImportAzureRmDataLakeStoreItem.cs b/src/DataLakeStore/DataLakeStore/DataPlaneCommands/ImportAzureRmDataLakeStoreItem.cs
index 44b2a1c3b186..3e7941e442ce 100644
--- a/src/DataLakeStore/DataLakeStore/DataPlaneCommands/ImportAzureRmDataLakeStoreItem.cs
+++ b/src/DataLakeStore/DataLakeStore/DataPlaneCommands/ImportAzureRmDataLakeStoreItem.cs
@@ -12,15 +12,16 @@
// limitations under the License.
// ----------------------------------------------------------------------------------
-using System;
using Microsoft.Azure.Commands.DataLakeStore.Models;
using Microsoft.Azure.Commands.DataLakeStore.Properties;
using System.Management.Automation;
using Microsoft.Azure.DataLake.Store;
using Microsoft.Rest.Azure;
+using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
namespace Microsoft.Azure.Commands.DataLakeStore
{
+ [GenericBreakingChange("For store side import failures, Import-AzDataLakeStoreItem will throw exception instead of printing message on screen", "2.0.0", "05/18/2020")]
[Cmdlet("Import", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "DataLakeStoreItem", SupportsShouldProcess = true, DefaultParameterSetName = BaseParameterSetName), OutputType(typeof(string))]
[Alias("Import-AdlStoreItem")]
public class ImportAzureDataLakeStoreItem : DataLakeStoreFileSystemCmdletBase
diff --git a/src/DataLakeStore/DataLakeStore/Properties/AssemblyInfo.cs b/src/DataLakeStore/DataLakeStore/Properties/AssemblyInfo.cs
index 27f6955dc6a2..ebd66125ddbe 100644
--- a/src/DataLakeStore/DataLakeStore/Properties/AssemblyInfo.cs
+++ b/src/DataLakeStore/DataLakeStore/Properties/AssemblyInfo.cs
@@ -36,8 +36,8 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
-[assembly: AssemblyVersion("1.2.7")]
-[assembly: AssemblyFileVersion("1.2.7")]
+[assembly: AssemblyVersion("1.2.8")]
+[assembly: AssemblyFileVersion("1.2.8")]
#if SIGN
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")]
#else
diff --git a/src/DataMigration/DataMigration/Az.DataMigration.psd1 b/src/DataMigration/DataMigration/Az.DataMigration.psd1
index 2c3c52f7a2f1..47ca6980062a 100644
--- a/src/DataMigration/DataMigration/Az.DataMigration.psd1
+++ b/src/DataMigration/DataMigration/Az.DataMigration.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.DataMigration.dll'
diff --git a/src/DataShare/DataShare/Az.DataShare.psd1 b/src/DataShare/DataShare/Az.DataShare.psd1
index 6d1c03bd399e..0a2ad0de9e53 100644
--- a/src/DataShare/DataShare/Az.DataShare.psd1
+++ b/src/DataShare/DataShare/Az.DataShare.psd1
@@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.DataShare.dll'
diff --git a/src/DeploymentManager/DeploymentManager/Az.DeploymentManager.psd1 b/src/DeploymentManager/DeploymentManager/Az.DeploymentManager.psd1
index 8462090f160a..11ef36432da7 100644
--- a/src/DeploymentManager/DeploymentManager/Az.DeploymentManager.psd1
+++ b/src/DeploymentManager/DeploymentManager/Az.DeploymentManager.psd1
@@ -52,7 +52,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.DeploymentManager.dll'
diff --git a/src/DevSpaces/DevSpaces/Az.DevSpaces.psd1 b/src/DevSpaces/DevSpaces/Az.DevSpaces.psd1
index c607ae1c7502..dada9de8aaa1 100644
--- a/src/DevSpaces/DevSpaces/Az.DevSpaces.psd1
+++ b/src/DevSpaces/DevSpaces/Az.DevSpaces.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.DevSpaces.dll'
diff --git a/src/DevTestLabs/DevTestLabs/Az.DevTestLabs.psd1 b/src/DevTestLabs/DevTestLabs/Az.DevTestLabs.psd1
index 08b46e1db339..e7df021b2b2d 100644
--- a/src/DevTestLabs/DevTestLabs/Az.DevTestLabs.psd1
+++ b/src/DevTestLabs/DevTestLabs/Az.DevTestLabs.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.DevTestLabs.dll'
diff --git a/src/DeviceProvisioningServices/DeviceProvisioningServices/Az.DeviceProvisioningServices.psd1 b/src/DeviceProvisioningServices/DeviceProvisioningServices/Az.DeviceProvisioningServices.psd1
index f831d1b4b364..173ed092f24c 100644
--- a/src/DeviceProvisioningServices/DeviceProvisioningServices/Az.DeviceProvisioningServices.psd1
+++ b/src/DeviceProvisioningServices/DeviceProvisioningServices/Az.DeviceProvisioningServices.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.DeviceProvisioningServices.dll'
diff --git a/src/Dns/Dns/Az.Dns.psd1 b/src/Dns/Dns/Az.Dns.psd1
index b8119e757678..91ca9600ad65 100644
--- a/src/Dns/Dns/Az.Dns.psd1
+++ b/src/Dns/Dns/Az.Dns.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Dns.dll'
diff --git a/src/EventGrid/EventGrid/Az.EventGrid.psd1 b/src/EventGrid/EventGrid/Az.EventGrid.psd1
index db6f844415af..51728221cff4 100644
--- a/src/EventGrid/EventGrid/Az.EventGrid.psd1
+++ b/src/EventGrid/EventGrid/Az.EventGrid.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.EventGrid.dll'
diff --git a/src/EventHub/EventHub/Az.EventHub.psd1 b/src/EventHub/EventHub/Az.EventHub.psd1
index 160a7c9a752f..94cbd0803508 100644
--- a/src/EventHub/EventHub/Az.EventHub.psd1
+++ b/src/EventHub/EventHub/Az.EventHub.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.EventHub.dll'
diff --git a/src/FrontDoor/FrontDoor/Az.FrontDoor.psd1 b/src/FrontDoor/FrontDoor/Az.FrontDoor.psd1
index 00338222f04e..213d2ac9943f 100644
--- a/src/FrontDoor/FrontDoor/Az.FrontDoor.psd1
+++ b/src/FrontDoor/FrontDoor/Az.FrontDoor.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.FrontDoor.dll'
diff --git a/src/GuestConfiguration/GuestConfiguration/Az.GuestConfiguration.psd1 b/src/GuestConfiguration/GuestConfiguration/Az.GuestConfiguration.psd1
index fe3070c1301c..67ce2c1c5190 100644
--- a/src/GuestConfiguration/GuestConfiguration/Az.GuestConfiguration.psd1
+++ b/src/GuestConfiguration/GuestConfiguration/Az.GuestConfiguration.psd1
@@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.GuestConfiguration.dll'
diff --git a/src/HDInsight/HDInsight/Az.HDInsight.psd1 b/src/HDInsight/HDInsight/Az.HDInsight.psd1
index 2a2892dc674d..a3629eac9da8 100644
--- a/src/HDInsight/HDInsight/Az.HDInsight.psd1
+++ b/src/HDInsight/HDInsight/Az.HDInsight.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
-# Generated on: 1/21/2020
+# Generated on: 3/26/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '3.0.3'
+ModuleVersion = '3.1.0'
# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.HDInsight.dll',
@@ -132,7 +132,7 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Fix document error of New-AzHDInsightCluster.'
+ ReleaseNotes = '* Supported specifying minimal supported TLS version when creating cluster.'
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/HDInsight/HDInsight/ChangeLog.md b/src/HDInsight/HDInsight/ChangeLog.md
index 7869210442f2..5ed30b703c39 100644
--- a/src/HDInsight/HDInsight/ChangeLog.md
+++ b/src/HDInsight/HDInsight/ChangeLog.md
@@ -18,6 +18,8 @@
- Additional information about change #1
-->
## Upcoming Release
+
+## Version 3.1.0
* Supported specifying minimal supported TLS version when creating cluster.
## Version 3.0.3
diff --git a/src/HDInsight/HDInsight/Properties/AssemblyInfo.cs b/src/HDInsight/HDInsight/Properties/AssemblyInfo.cs
index bd0415add41a..b63f32db50ab 100644
--- a/src/HDInsight/HDInsight/Properties/AssemblyInfo.cs
+++ b/src/HDInsight/HDInsight/Properties/AssemblyInfo.cs
@@ -27,5 +27,5 @@
[assembly: ComVisible(false)]
[assembly: CLSCompliant(false)]
[assembly: Guid("57ad7b0e-1f56-4166-b1f9-ec6512139a54")]
-[assembly: AssemblyVersion("3.0.3")]
-[assembly: AssemblyFileVersion("3.0.3")]
+[assembly: AssemblyVersion("3.1.0")]
+[assembly: AssemblyFileVersion("3.1.0")]
diff --git a/src/HealthcareApis/HealthcareApis/Az.HealthcareApis.psd1 b/src/HealthcareApis/HealthcareApis/Az.HealthcareApis.psd1
index 50c32b4f82e9..23869f88e511 100644
--- a/src/HealthcareApis/HealthcareApis/Az.HealthcareApis.psd1
+++ b/src/HealthcareApis/HealthcareApis/Az.HealthcareApis.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.HealthcareApis.dll'
diff --git a/src/IotCentral/IotCentral/Az.IotCentral.psd1 b/src/IotCentral/IotCentral/Az.IotCentral.psd1
index 5a51eb08b809..d6888638be6a 100644
--- a/src/IotCentral/IotCentral/Az.IotCentral.psd1
+++ b/src/IotCentral/IotCentral/Az.IotCentral.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
-# Generated on: 1/21/2020
+# Generated on: 3/26/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '0.7.3'
+ModuleVersion = '0.7.4'
# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.IotCentral.dll'
@@ -110,7 +110,7 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* This release adds new skus: ST0, ST1, ST2 for IotCentral.'
+ ReleaseNotes = '* Updated SDK version to throw Cloud Exception with error details. Update default SKU to be ST2.'
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/IotCentral/IotCentral/ChangeLog.md b/src/IotCentral/IotCentral/ChangeLog.md
index f720b58c6c48..d5874d21508c 100644
--- a/src/IotCentral/IotCentral/ChangeLog.md
+++ b/src/IotCentral/IotCentral/ChangeLog.md
@@ -19,6 +19,8 @@
-->
## Upcoming Release
+## Version 0.7.4
+
* Updated SDK version to throw Cloud Exception with error details. Update default SKU to be ST2.
## Version 0.7.3
diff --git a/src/IotCentral/IotCentral/Properties/AssemblyInfo.cs b/src/IotCentral/IotCentral/Properties/AssemblyInfo.cs
index a211ce0208b2..f44c04d81833 100644
--- a/src/IotCentral/IotCentral/Properties/AssemblyInfo.cs
+++ b/src/IotCentral/IotCentral/Properties/AssemblyInfo.cs
@@ -31,6 +31,6 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
-// [assembly: AssemblyVersion("0.7.3")]
-[assembly: AssemblyVersion("0.7.3")]
-[assembly: AssemblyFileVersion("0.7.3")]
+// [assembly: AssemblyVersion("0.7.4")]
+[assembly: AssemblyVersion("0.7.4")]
+[assembly: AssemblyFileVersion("0.7.4")]
diff --git a/src/IotHub/IotHub/Az.IotHub.psd1 b/src/IotHub/IotHub/Az.IotHub.psd1
index 7ab0cfe3facf..4ca1a9007c40 100644
--- a/src/IotHub/IotHub/Az.IotHub.psd1
+++ b/src/IotHub/IotHub/Az.IotHub.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
-# Generated on: 3/3/2020
+# Generated on: 3/26/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '2.2.0'
+ModuleVersion = '2.3.0'
# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.IotHub.dll',
@@ -110,7 +110,7 @@ AliasesToExport = 'Get-AzIotHubEHCG', 'Add-AzIotHubEHCG', 'Remove-AzIotHubEHCG',
'Set-AzIotHubVC', 'Get-AzIotHubCVC', 'Add-AzIotHubMsgEnrich',
'Get-AzIotHubMsgEnrich', 'Remove-AzIotHubMsgEnrich',
'Set-AzIotHubMsgEnrich', 'Get-AzIotHubDCS', 'Get-AzIotHubMCS',
- 'Add-AzIotHubDCL', 'Remove-AzIotHubDCL', 'Get-AzIotHubDCL',
+ 'Add-AzIotHubDCL', 'Remove-AzIotHubDCL', 'Get-AzIotHubDCL',
'Get-AzIotHubTracing', 'Set-AzIotHubTracing'
# DSC resources to export from this module
@@ -140,22 +140,9 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Added support to manage devices in an Iot Hub. New Cmdlets are:
- - ''Add-AzIotHubDevice''
- - ''Get-AzIotHubDevice''
- - ''Remove-AzIotHubDevice''
- - ''Set-AzIotHubDevice''
-* Added support to manage modules on a target Iot device in an Iot Hub. New Cmdlets are:
- - ''Add-AzIotHubModule''
- - ''Get-AzIotHubModule''
- - ''Remove-AzIotHubModule''
- - ''Set-AzIotHubModule''
-* Added cmdlet to get the connection string of a target IoT device in an Iot Hub.
-* Added cmdlet to get the connection string of a module on a target IoT device in an Iot Hub.
-* Added support to get/set parent device of an IoT device. New Cmdlets are:
- - ''Get-AzIotHubDeviceParent''
- - ''Set-AzIotHubDeviceParent''
-* Added support to manage device parent-child relationship.'
+ ReleaseNotes = '* Added support to manage distributed settings per-device. New Cmdlets are:
+ - ''Get-AzIotHubDistributedTracing''
+ - ''Set-AzIotHubDistributedTracing'''
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/IotHub/IotHub/ChangeLog.md b/src/IotHub/IotHub/ChangeLog.md
index 2c0898a10581..f343811ab3ff 100644
--- a/src/IotHub/IotHub/ChangeLog.md
+++ b/src/IotHub/IotHub/ChangeLog.md
@@ -18,13 +18,15 @@
- Additional information about change #1
-->
## Upcoming Release
-* Added support to manage distributed settings per-device. New Cmdlets are:
- - `Get-AzIotHubDistributedTracing`
- - `Set-AzIotHubDistributedTracing`
* Manage IoT device twin configuration, New cmdlets are:
- `Get-AzIotHubDeviceTwin`
- `Update-AzIotHubDeviceTwin`
+## Version 2.3.0
+* Added support to manage distributed settings per-device. New Cmdlets are:
+ - `Get-AzIotHubDistributedTracing`
+ - `Set-AzIotHubDistributedTracing`
+
## Version 2.2.0
* Added support to manage devices in an Iot Hub. New Cmdlets are:
- `Add-AzIotHubDevice`
diff --git a/src/IotHub/IotHub/Properties/AssemblyInfo.cs b/src/IotHub/IotHub/Properties/AssemblyInfo.cs
index 5c67471f2278..e631b7dc643a 100644
--- a/src/IotHub/IotHub/Properties/AssemblyInfo.cs
+++ b/src/IotHub/IotHub/Properties/AssemblyInfo.cs
@@ -31,6 +31,6 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
-// [assembly: AssemblyVersion("2.2.0")]
-[assembly: AssemblyVersion("2.2.0")]
-[assembly: AssemblyFileVersion("2.2.0")]
+// [assembly: AssemblyVersion("2.3.0")]
+[assembly: AssemblyVersion("2.3.0")]
+[assembly: AssemblyFileVersion("2.3.0")]
diff --git a/src/KeyVault/KeyVault/Az.KeyVault.psd1 b/src/KeyVault/KeyVault/Az.KeyVault.psd1
index 86712dbe55c9..b3f54dcb7818 100644
--- a/src/KeyVault/KeyVault/Az.KeyVault.psd1
+++ b/src/KeyVault/KeyVault/Az.KeyVault.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
-# Generated on: 2/11/2020
+# Generated on: 3/26/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '1.5.1'
+ModuleVersion = '1.5.2'
# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.KeyVault.dll',
@@ -152,7 +152,7 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Fixed duplicated text for Add-AzKeyVaultKey.md'
+ ReleaseNotes = '* Added breaking change attributes to ''New-AzKeyVault'''
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/KeyVault/KeyVault/ChangeLog.md b/src/KeyVault/KeyVault/ChangeLog.md
index 77c5b4b7fd9f..7e0d9df9b248 100644
--- a/src/KeyVault/KeyVault/ChangeLog.md
+++ b/src/KeyVault/KeyVault/ChangeLog.md
@@ -19,6 +19,10 @@
-->
## Upcoming Release
+## Version 1.5.2
+
+* Added breaking change attributes to `New-AzKeyVault`
+
## Version 1.5.1
* Fixed duplicated text for Add-AzKeyVaultKey.md
diff --git a/src/KeyVault/KeyVault/Commands/NewAzureKeyVault.cs b/src/KeyVault/KeyVault/Commands/NewAzureKeyVault.cs
index 64bf99842ea4..9b36f5df3543 100644
--- a/src/KeyVault/KeyVault/Commands/NewAzureKeyVault.cs
+++ b/src/KeyVault/KeyVault/Commands/NewAzureKeyVault.cs
@@ -16,6 +16,7 @@
using Microsoft.Azure.Commands.KeyVault.Properties;
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
using Microsoft.Azure.Management.KeyVault.Models;
+using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
using System;
using System.Collections;
using System.Management.Automation;
@@ -25,7 +26,8 @@ namespace Microsoft.Azure.Commands.KeyVault
///
/// Create a new key vault.
///
- [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "KeyVault",SupportsShouldProcess = true)]
+ [GenericBreakingChange("Soft delete and purge protection will be enabled by default.", "2.0.0")]
+ [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "KeyVault", SupportsShouldProcess = true)]
[OutputType(typeof(PSKeyVault))]
public class NewAzureKeyVault : KeyVaultManagementCmdletBase
{
@@ -81,11 +83,13 @@ public class NewAzureKeyVault : KeyVaultManagementCmdletBase
HelpMessage = "If specified, enables secrets to be retrieved from this key vault by Azure Disk Encryption.")]
public SwitchParameter EnabledForDiskEncryption { get; set; }
+ [CmdletParameterBreakingChange(nameof(EnableSoftDelete), ChangeDescription = "Soft delete will be enabled by default. We will add an option `-DisableSoftDelete` to disable it.")]
[Parameter(Mandatory = false,
ValueFromPipelineByPropertyName = false,
HelpMessage = "If specified, 'soft delete' functionality is enabled for this key vault.")]
public SwitchParameter EnableSoftDelete { get; set; }
+ [CmdletParameterBreakingChange(nameof(EnablePurgeProtection), ChangeDescription = "Purge protection will be enabled by default. We will add an option `-DisablePurgeProtection` to disable it.")]
[Parameter(Mandatory = false,
ValueFromPipelineByPropertyName = false,
HelpMessage = "If specified, protection against immediate deletion is enabled for this vault; requires soft delete to be enabled as well.")]
@@ -144,22 +148,22 @@ public override void ExecuteCmdlet()
}
var newVault = KeyVaultManagementClient.CreateNewVault(new VaultCreationParameters()
- {
- VaultName = this.Name,
- ResourceGroupName = this.ResourceGroupName,
- Location = this.Location,
- EnabledForDeployment = this.EnabledForDeployment.IsPresent,
- EnabledForTemplateDeployment = EnabledForTemplateDeployment.IsPresent,
- EnabledForDiskEncryption = EnabledForDiskEncryption.IsPresent,
- EnableSoftDelete = EnableSoftDelete.IsPresent,
- EnablePurgeProtection = EnablePurgeProtection.IsPresent,
- SkuFamilyName = DefaultSkuFamily,
- SkuName = this.Sku,
- TenantId = GetTenantId(),
- AccessPolicy = accessPolicy,
- NetworkAcls = new NetworkRuleSet(), // New key-vault takes in default network rule set
- Tags = this.Tag
- },
+ {
+ VaultName = this.Name,
+ ResourceGroupName = this.ResourceGroupName,
+ Location = this.Location,
+ EnabledForDeployment = this.EnabledForDeployment.IsPresent,
+ EnabledForTemplateDeployment = EnabledForTemplateDeployment.IsPresent,
+ EnabledForDiskEncryption = EnabledForDiskEncryption.IsPresent,
+ EnableSoftDelete = EnableSoftDelete.IsPresent,
+ EnablePurgeProtection = EnablePurgeProtection.IsPresent,
+ SkuFamilyName = DefaultSkuFamily,
+ SkuName = this.Sku,
+ TenantId = GetTenantId(),
+ AccessPolicy = accessPolicy,
+ NetworkAcls = new NetworkRuleSet(), // New key-vault takes in default network rule set
+ Tags = this.Tag
+ },
ActiveDirectoryClient);
this.WriteObject(newVault);
diff --git a/src/KeyVault/KeyVault/Properties/AssemblyInfo.cs b/src/KeyVault/KeyVault/Properties/AssemblyInfo.cs
index e178ee27e255..47f3ebdcc44f 100644
--- a/src/KeyVault/KeyVault/Properties/AssemblyInfo.cs
+++ b/src/KeyVault/KeyVault/Properties/AssemblyInfo.cs
@@ -29,8 +29,8 @@
[assembly: CLSCompliant(false)]
[assembly: Guid("2994548F-69B9-4DC2-8D19-52CC0C0C85BC")]
-[assembly: AssemblyVersion("1.5.1")]
-[assembly: AssemblyFileVersion("1.5.1")]
+[assembly: AssemblyVersion("1.5.2")]
+[assembly: AssemblyFileVersion("1.5.2")]
#if !SIGN
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.KeyVault.Test")]
#endif
diff --git a/src/KeyVault/KeyVault/help/Add-AzKeyVaultKey.md b/src/KeyVault/KeyVault/help/Add-AzKeyVaultKey.md
index 8e2a3e750047..eda5dd837510 100644
--- a/src/KeyVault/KeyVault/help/Add-AzKeyVaultKey.md
+++ b/src/KeyVault/KeyVault/help/Add-AzKeyVaultKey.md
@@ -282,7 +282,7 @@ Accept wildcard characters: False
Type: System.String
Parameter Sets: InteractiveImport, InputObjectImport, ResourceIdImport
Aliases:
-Accepted values: HSM, Software, HSM, Software
+Accepted values: HSM, Software
Required: False
Position: Named
diff --git a/src/KeyVault/KeyVault/help/Get-AzKeyVault.md b/src/KeyVault/KeyVault/help/Get-AzKeyVault.md
index a49deae5b912..663f7be76cfb 100644
--- a/src/KeyVault/KeyVault/help/Get-AzKeyVault.md
+++ b/src/KeyVault/KeyVault/help/Get-AzKeyVault.md
@@ -240,7 +240,7 @@ Required: False
Position: 1
Default value: None
Accept pipeline input: True (ByPropertyName)
-Accept wildcard characters: True
+Accept wildcard characters: False
```
### -Tag
@@ -271,7 +271,7 @@ Required: False
Position: 0
Default value: None
Accept pipeline input: True (ByPropertyName)
-Accept wildcard characters: True
+Accept wildcard characters: False
```
```yaml
@@ -283,7 +283,7 @@ Required: True
Position: 0
Default value: None
Accept pipeline input: True (ByPropertyName)
-Accept wildcard characters: True
+Accept wildcard characters: False
```
### CommonParameters
diff --git a/src/KeyVault/KeyVault/help/Get-AzKeyVaultCertificate.md b/src/KeyVault/KeyVault/help/Get-AzKeyVaultCertificate.md
index 9c85044ee449..8d57fc8b3f81 100644
--- a/src/KeyVault/KeyVault/help/Get-AzKeyVaultCertificate.md
+++ b/src/KeyVault/KeyVault/help/Get-AzKeyVaultCertificate.md
@@ -313,7 +313,7 @@ Required: False
Position: 1
Default value: None
Accept pipeline input: False
-Accept wildcard characters: True
+Accept wildcard characters: False
```
```yaml
@@ -325,7 +325,7 @@ Required: True
Position: 1
Default value: None
Accept pipeline input: False
-Accept wildcard characters: True
+Accept wildcard characters: False
```
### -ResourceId
diff --git a/src/KeyVault/KeyVault/help/Get-AzKeyVaultCertificateIssuer.md b/src/KeyVault/KeyVault/help/Get-AzKeyVaultCertificateIssuer.md
index 49f78115838a..695eb4317087 100644
--- a/src/KeyVault/KeyVault/help/Get-AzKeyVaultCertificateIssuer.md
+++ b/src/KeyVault/KeyVault/help/Get-AzKeyVaultCertificateIssuer.md
@@ -115,7 +115,7 @@ Required: False
Position: 1
Default value: None
Accept pipeline input: False
-Accept wildcard characters: True
+Accept wildcard characters: False
```
### -ResourceId
diff --git a/src/KeyVault/KeyVault/help/Get-AzKeyVaultKey.md b/src/KeyVault/KeyVault/help/Get-AzKeyVaultKey.md
index bc3e960c3771..ffdbf40fba48 100644
--- a/src/KeyVault/KeyVault/help/Get-AzKeyVaultKey.md
+++ b/src/KeyVault/KeyVault/help/Get-AzKeyVaultKey.md
@@ -323,7 +323,7 @@ Required: False
Position: 1
Default value: None
Accept pipeline input: False
-Accept wildcard characters: True
+Accept wildcard characters: False
```
```yaml
@@ -335,7 +335,7 @@ Required: True
Position: 1
Default value: None
Accept pipeline input: False
-Accept wildcard characters: True
+Accept wildcard characters: False
```
### -ResourceId
diff --git a/src/KeyVault/KeyVault/help/Get-AzKeyVaultManagedStorageAccount.md b/src/KeyVault/KeyVault/help/Get-AzKeyVaultManagedStorageAccount.md
index da5c135a56a6..6da4e0abea92 100644
--- a/src/KeyVault/KeyVault/help/Get-AzKeyVaultManagedStorageAccount.md
+++ b/src/KeyVault/KeyVault/help/Get-AzKeyVaultManagedStorageAccount.md
@@ -113,7 +113,7 @@ Required: False
Position: 1
Default value: None
Accept pipeline input: False
-Accept wildcard characters: True
+Accept wildcard characters: False
```
### -DefaultProfile
diff --git a/src/KeyVault/KeyVault/help/Get-AzKeyVaultSecret.md b/src/KeyVault/KeyVault/help/Get-AzKeyVaultSecret.md
index d4062b77f8b2..828e8b5722ec 100644
--- a/src/KeyVault/KeyVault/help/Get-AzKeyVaultSecret.md
+++ b/src/KeyVault/KeyVault/help/Get-AzKeyVaultSecret.md
@@ -346,7 +346,7 @@ Required: False
Position: 1
Default value: None
Accept pipeline input: False
-Accept wildcard characters: True
+Accept wildcard characters: False
```
```yaml
@@ -358,7 +358,7 @@ Required: True
Position: 1
Default value: None
Accept pipeline input: False
-Accept wildcard characters: True
+Accept wildcard characters: False
```
### -ResourceId
diff --git a/src/Kusto/Kusto/Az.Kusto.psd1 b/src/Kusto/Kusto/Az.Kusto.psd1
index d1e5ce8339a1..88b2b58a9f75 100644
--- a/src/Kusto/Kusto/Az.Kusto.psd1
+++ b/src/Kusto/Kusto/Az.Kusto.psd1
@@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Kusto.dll'
diff --git a/src/LogicApp/LogicApp/Az.LogicApp.psd1 b/src/LogicApp/LogicApp/Az.LogicApp.psd1
index 9a5a83eb4253..3e7d8f2ebbfe 100644
--- a/src/LogicApp/LogicApp/Az.LogicApp.psd1
+++ b/src/LogicApp/LogicApp/Az.LogicApp.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Logic.dll'
diff --git a/src/MachineLearning/MachineLearning/Az.MachineLearning.psd1 b/src/MachineLearning/MachineLearning/Az.MachineLearning.psd1
index 6c18f97b4fb0..553fa1804af5 100644
--- a/src/MachineLearning/MachineLearning/Az.MachineLearning.psd1
+++ b/src/MachineLearning/MachineLearning/Az.MachineLearning.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.MachineLearning.dll',
diff --git a/src/Maintenance/Maintenance/Az.Maintenance.psd1 b/src/Maintenance/Maintenance/Az.Maintenance.psd1
index 147b47239213..18c8d1d2a212 100644
--- a/src/Maintenance/Maintenance/Az.Maintenance.psd1
+++ b/src/Maintenance/Maintenance/Az.Maintenance.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'AutoMapper.dll', 'Microsoft.Azure.Management.Maintenance.dll'
diff --git a/src/ManagedServiceIdentity/ManagedServiceIdentity/Az.ManagedServiceIdentity.psd1 b/src/ManagedServiceIdentity/ManagedServiceIdentity/Az.ManagedServiceIdentity.psd1
index e3d53b141e25..f963bbb5a264 100644
--- a/src/ManagedServiceIdentity/ManagedServiceIdentity/Az.ManagedServiceIdentity.psd1
+++ b/src/ManagedServiceIdentity/ManagedServiceIdentity/Az.ManagedServiceIdentity.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.ManagedServiceIdentity.dll'
diff --git a/src/ManagedServices/ManagedServices/Az.ManagedServices.psd1 b/src/ManagedServices/ManagedServices/Az.ManagedServices.psd1
index 368f643deaab..e776792b90d2 100644
--- a/src/ManagedServices/ManagedServices/Az.ManagedServices.psd1
+++ b/src/ManagedServices/ManagedServices/Az.ManagedServices.psd1
@@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.ManagedServices.dll'
diff --git a/src/ManagementPartner/ManagementPartner/Az.ManagementPartner.psd1 b/src/ManagementPartner/ManagementPartner/Az.ManagementPartner.psd1
index f8f8cbf18b1f..12c285da2a0b 100644
--- a/src/ManagementPartner/ManagementPartner/Az.ManagementPartner.psd1
+++ b/src/ManagementPartner/ManagementPartner/Az.ManagementPartner.psd1
@@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.ManagementPartner.dll'
diff --git a/src/Maps/Maps/Az.Maps.psd1 b/src/Maps/Maps/Az.Maps.psd1
index 046764f6f36d..4664af241e9e 100644
--- a/src/Maps/Maps/Az.Maps.psd1
+++ b/src/Maps/Maps/Az.Maps.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
-# Generated on: 12/11/2019
+# Generated on: 3/26/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '0.7.2'
+ModuleVersion = '0.7.3'
# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Maps.dll'
@@ -110,7 +110,8 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Update references in .psd1 to use relative path'
+ ReleaseNotes = '* Update the privacy notice text displayed during account creation
+ - Per CELA guidance we have updated the privacy notice text shown while you create an account.'
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/Maps/Maps/ChangeLog.md b/src/Maps/Maps/ChangeLog.md
index 947533acab31..bceefa9e18a9 100644
--- a/src/Maps/Maps/ChangeLog.md
+++ b/src/Maps/Maps/ChangeLog.md
@@ -18,6 +18,8 @@
- Additional information about change #1
-->
## Upcoming Release
+
+## Version 0.7.3
* Update the privacy notice text displayed during account creation
- Per CELA guidance we have updated the privacy notice text shown while you create an account.
diff --git a/src/Maps/Maps/Properties/AssemblyInfo.cs b/src/Maps/Maps/Properties/AssemblyInfo.cs
index 2ad67f12fa1b..8e55ac95f10d 100644
--- a/src/Maps/Maps/Properties/AssemblyInfo.cs
+++ b/src/Maps/Maps/Properties/AssemblyInfo.cs
@@ -46,5 +46,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
-[assembly: AssemblyVersion("0.7.2")]
-[assembly: AssemblyFileVersion("0.7.2")]
+[assembly: AssemblyVersion("0.7.3")]
+[assembly: AssemblyFileVersion("0.7.3")]
diff --git a/src/MarketplaceOrdering/MarketplaceOrdering/Az.MarketplaceOrdering.psd1 b/src/MarketplaceOrdering/MarketplaceOrdering/Az.MarketplaceOrdering.psd1
index 1f246fa32dc9..5323d061a049 100644
--- a/src/MarketplaceOrdering/MarketplaceOrdering/Az.MarketplaceOrdering.psd1
+++ b/src/MarketplaceOrdering/MarketplaceOrdering/Az.MarketplaceOrdering.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.MarketplaceOrdering.dll'
diff --git a/src/Media/Media/Az.Media.psd1 b/src/Media/Media/Az.Media.psd1
index 2559e1a4f668..4b7cf40f9587 100644
--- a/src/Media/Media/Az.Media.psd1
+++ b/src/Media/Media/Az.Media.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Media.dll'
diff --git a/src/MixedReality/MixedReality/Az.MixedReality.psd1 b/src/MixedReality/MixedReality/Az.MixedReality.psd1
index 8ecc11cd2f0e..7e40bfe5eba4 100644
--- a/src/MixedReality/MixedReality/Az.MixedReality.psd1
+++ b/src/MixedReality/MixedReality/Az.MixedReality.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.MixedReality.dll'
diff --git a/src/Monitor/Monitor/Az.Monitor.psd1 b/src/Monitor/Monitor/Az.Monitor.psd1
index 4445ffb486c5..150d10ac3857 100644
--- a/src/Monitor/Monitor/Az.Monitor.psd1
+++ b/src/Monitor/Monitor/Az.Monitor.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
-# Generated on: 3/4/2020
+# Generated on: 3/26/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '1.6.1'
+ModuleVersion = '1.6.2'
# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Monitor.dll'
@@ -136,7 +136,7 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Fixed output value for ''Get-AzMetricDefinition'' [#9714]'
+ ReleaseNotes = '* Updated documentation for ''New-AzScheduledQueryRuleLogMetricTrigger'''
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/Monitor/Monitor/ChangeLog.md b/src/Monitor/Monitor/ChangeLog.md
index 6a19db546e7d..5fe1242dc2d2 100644
--- a/src/Monitor/Monitor/ChangeLog.md
+++ b/src/Monitor/Monitor/ChangeLog.md
@@ -19,6 +19,8 @@
-->
## Upcoming Release
+
+## Version 1.6.2
* Updated documentation for `New-AzScheduledQueryRuleLogMetricTrigger`
## Version 1.6.1
diff --git a/src/Monitor/Monitor/Properties/AssemblyInfo.cs b/src/Monitor/Monitor/Properties/AssemblyInfo.cs
index d6feec294a02..7f6553d4ca57 100644
--- a/src/Monitor/Monitor/Properties/AssemblyInfo.cs
+++ b/src/Monitor/Monitor/Properties/AssemblyInfo.cs
@@ -24,5 +24,5 @@
[assembly: ComVisible(false)]
[assembly: CLSCompliant(false)]
[assembly: Guid("ed102280-3577-49bf-93dd-11b6e3a44a57")]
-[assembly: AssemblyVersion("1.6.1")]
-[assembly: AssemblyFileVersion("1.6.1")]
+[assembly: AssemblyVersion("1.6.2")]
+[assembly: AssemblyFileVersion("1.6.2")]
diff --git a/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1 b/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1
index e0166f66899f..54f4eb07d55b 100644
--- a/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1
+++ b/src/NetAppFiles/NetAppFiles/Az.NetAppFiles.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.NetApp.dll'
diff --git a/src/Network/Network/Az.Network.psd1 b/src/Network/Network/Az.Network.psd1
index 8e34fb893dcd..97ed76682136 100644
--- a/src/Network/Network/Az.Network.psd1
+++ b/src/Network/Network/Az.Network.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
-# Generated on: 3/5/2020
+# Generated on: 3/26/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '2.3.2'
+ModuleVersion = '2.4.0'
# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'AutoMapper.dll', 'Microsoft.Azure.Management.Network.dll'
@@ -245,10 +245,8 @@ CmdletsToExport = 'Add-AzApplicationGatewayAuthenticationCertificate',
'Start-AzNetworkWatcherResourceTroubleshooting',
'Get-AzNetworkWatcherTroubleshootingResult',
'Get-AzNetworkWatcherFlowLogStatus',
- 'Set-AzNetworkWatcherConfigFlowLog',
- 'New-AzNetworkWatcherFlowLog',
- 'Set-AzNetworkWatcherFlowLog',
- 'Get-AzNetworkWatcherFlowLog',
+ 'Set-AzNetworkWatcherConfigFlowLog', 'New-AzNetworkWatcherFlowLog',
+ 'Set-AzNetworkWatcherFlowLog', 'Get-AzNetworkWatcherFlowLog',
'Remove-AzNetworkWatcherFlowLog',
'Test-AzNetworkWatcherConnectivity',
'Get-AzNetworkWatcherReachabilityReport',
@@ -399,7 +397,7 @@ CmdletsToExport = 'Add-AzApplicationGatewayAuthenticationCertificate',
'Update-AzVirtualHubVnetConnection', 'Get-AzVpnServerConfiguration',
'New-AzVpnServerConfiguration', 'Remove-AzVpnServerConfiguration',
'Update-AzVpnServerConfiguration', 'Get-AzP2sVpnGateway',
- 'Disconnect-AzP2sVpnGatewayVpnConnection',
+ 'Disconnect-AzP2sVpnGatewayVpnConnection',
'Get-AzP2sVpnGatewayConnectionHealth',
'Get-AzP2sVpnGatewayDetailedConnectionHealth',
'Get-AzP2sVpnGatewayVpnProfile', 'New-AzP2sVpnGateway',
@@ -451,7 +449,7 @@ CmdletsToExport = 'Add-AzApplicationGatewayAuthenticationCertificate',
'Stop-AzVirtualNetworkGatewayPacketCapture',
'Start-AzVirtualNetworkGatewayConnectionPacketCapture',
'Stop-AzVirtualNetworkGatewayConnectionPacketCapture',
- 'Disconnect-AzVirtualNetworkGatewayVpnConnection',
+ 'Disconnect-AzVirtualNetworkGatewayVpnConnection',
'New-AzFirewallPolicyNetworkRule',
'New-AzFirewallPolicyApplicationRule',
'New-AzFirewallPolicyNatRuleCollection',
@@ -514,10 +512,12 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Updated Sql Management SDK
-* Fixed a naming-difference issue in PrivateLinkServiceConnectionState class.
- - Mapping the field ActionsRequired to ActionRequired.
-* Added PublicNetworkAccess to ''New-AzSqlServer'' and ''Set-AzSqlServer'''
+ ReleaseNotes = '* Updated cmdlets to allow cross-tenant VirtualHubVnetConnections
+ - ''New-AzVirtualHubVnetConnection''
+ - ''Update-AzVirtualHubVnetConnection''
+ - ''New-AzVirtualHub''
+ - ''Update-AzVirtualHub''
+* Removed Sql Management SDK dependency'
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/Network/Network/ChangeLog.md b/src/Network/Network/ChangeLog.md
index ccf6e60e99a4..8065f9b9a63b 100644
--- a/src/Network/Network/ChangeLog.md
+++ b/src/Network/Network/ChangeLog.md
@@ -19,6 +19,8 @@
--->
## Upcoming Release
+
+## Version 2.4.0
* Updated cmdlets to allow cross-tenant VirtualHubVnetConnections
- `New-AzVirtualHubVnetConnection`
- `Update-AzVirtualHubVnetConnection`
diff --git a/src/Network/Network/Properties/AssemblyInfo.cs b/src/Network/Network/Properties/AssemblyInfo.cs
index 5234a22518de..0eaef811bf1c 100644
--- a/src/Network/Network/Properties/AssemblyInfo.cs
+++ b/src/Network/Network/Properties/AssemblyInfo.cs
@@ -25,8 +25,8 @@
[assembly: ComVisible(false)]
[assembly: CLSCompliant(false)]
[assembly: Guid("be2ca022-590c-48ba-b465-9ab61d6e2ea0")]
-[assembly: AssemblyVersion("2.3.2")]
-[assembly: AssemblyFileVersion("2.3.2")]
+[assembly: AssemblyVersion("2.4.0")]
+[assembly: AssemblyFileVersion("2.4.0")]
#if !SIGN
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Network.Test")]
#endif
diff --git a/src/NotificationHubs/NotificationHubs/Az.NotificationHubs.psd1 b/src/NotificationHubs/NotificationHubs/Az.NotificationHubs.psd1
index b757db70b43c..98bf1ec62469 100644
--- a/src/NotificationHubs/NotificationHubs/Az.NotificationHubs.psd1
+++ b/src/NotificationHubs/NotificationHubs/Az.NotificationHubs.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.NotificationHubs.dll'
diff --git a/src/OperationalInsights/OperationalInsights/Az.OperationalInsights.psd1 b/src/OperationalInsights/OperationalInsights/Az.OperationalInsights.psd1
index f65f0455b608..b3db1c7c5c2f 100644
--- a/src/OperationalInsights/OperationalInsights/Az.OperationalInsights.psd1
+++ b/src/OperationalInsights/OperationalInsights/Az.OperationalInsights.psd1
@@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.OperationalInsights.dll',
diff --git a/src/Peering/Peering/Az.Peering.psd1 b/src/Peering/Peering/Az.Peering.psd1
index 1461a5a53093..dc733fc4e45c 100644
--- a/src/Peering/Peering/Az.Peering.psd1
+++ b/src/Peering/Peering/Az.Peering.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Peering.dll', 'AutoMapper.dll'
diff --git a/src/PolicyInsights/PolicyInsights/Az.PolicyInsights.psd1 b/src/PolicyInsights/PolicyInsights/Az.PolicyInsights.psd1
index 1cd96e177746..c014ec63480c 100644
--- a/src/PolicyInsights/PolicyInsights/Az.PolicyInsights.psd1
+++ b/src/PolicyInsights/PolicyInsights/Az.PolicyInsights.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
-# Generated on: 1/21/2020
+# Generated on: 3/26/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '1.2.0'
+ModuleVersion = '1.2.1'
# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.PolicyInsights.dll'
@@ -112,10 +112,7 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Support evaluating compliance prior to determining what resource to remediate
- - Add ''-ResourceDiscoverMode'' parameter to Start-AzPolicyRemediation
-* Add Get-AzPolicyMetadata cmdlet for getting policy metadata resources
-* Updated Get-AzPolicyState and Get-AzPolicyStateSummary for API version 2019-10-01'
+ ReleaseNotes = '* Improved error messages'
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/PolicyInsights/PolicyInsights/ChangeLog.md b/src/PolicyInsights/PolicyInsights/ChangeLog.md
index 006685eed902..5c773ffffb93 100644
--- a/src/PolicyInsights/PolicyInsights/ChangeLog.md
+++ b/src/PolicyInsights/PolicyInsights/ChangeLog.md
@@ -18,6 +18,8 @@
- Additional information about change #1
-->
## Upcoming Release
+
+## Version 1.2.1
* Improved error messages
## Version 1.2.0
diff --git a/src/PolicyInsights/PolicyInsights/Properties/AssemblyInfo.cs b/src/PolicyInsights/PolicyInsights/Properties/AssemblyInfo.cs
index 74a1073694ef..8f4464c2e09d 100644
--- a/src/PolicyInsights/PolicyInsights/Properties/AssemblyInfo.cs
+++ b/src/PolicyInsights/PolicyInsights/Properties/AssemblyInfo.cs
@@ -25,5 +25,5 @@
[assembly: CLSCompliant(false)]
[assembly: Guid("d28548d3-2673-4508-a28b-a69e0470faf7")]
-[assembly: AssemblyVersion("1.2.0")]
-[assembly: AssemblyFileVersion("1.2.0")]
+[assembly: AssemblyVersion("1.2.1")]
+[assembly: AssemblyFileVersion("1.2.1")]
diff --git a/src/PowerBIEmbedded/PowerBIEmbedded/Az.PowerBIEmbedded.psd1 b/src/PowerBIEmbedded/PowerBIEmbedded/Az.PowerBIEmbedded.psd1
index 0d424bc9993b..079b18be0520 100644
--- a/src/PowerBIEmbedded/PowerBIEmbedded/Az.PowerBIEmbedded.psd1
+++ b/src/PowerBIEmbedded/PowerBIEmbedded/Az.PowerBIEmbedded.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.PowerBIEmbedded.dll',
diff --git a/src/PrivateDns/PrivateDns/Az.PrivateDns.psd1 b/src/PrivateDns/PrivateDns/Az.PrivateDns.psd1
index e1abae92adbe..a356ca0cc65d 100644
--- a/src/PrivateDns/PrivateDns/Az.PrivateDns.psd1
+++ b/src/PrivateDns/PrivateDns/Az.PrivateDns.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.PrivateDns.dll'
diff --git a/src/RecoveryServices/RecoveryServices.Backup.Helpers/Conversions/ConversionHelpers.cs b/src/RecoveryServices/RecoveryServices.Backup.Helpers/Conversions/ConversionHelpers.cs
index 919a62dfdd28..715b19d5327e 100644
--- a/src/RecoveryServices/RecoveryServices.Backup.Helpers/Conversions/ConversionHelpers.cs
+++ b/src/RecoveryServices/RecoveryServices.Backup.Helpers/Conversions/ConversionHelpers.cs
@@ -170,6 +170,10 @@ public static PolicyBase GetPolicyModelForAzureIaaSVM(ServiceClientModel.Protect
iaasPolicyModel.SchedulePolicy = PolicyHelpers.GetPSSimpleSchedulePolicy((ServiceClientModel.SimpleSchedulePolicy)
((ServiceClientModel.AzureIaaSVMProtectionPolicy)serviceClientResponse.Properties).SchedulePolicy,
((ServiceClientModel.AzureIaaSVMProtectionPolicy)serviceClientResponse.Properties).TimeZone);
+ iaasPolicyModel.AzureBackupRGName =
+ ((ServiceClientModel.AzureIaaSVMProtectionPolicy)serviceClientResponse.Properties).InstantRPDetails.AzureBackupRGNamePrefix;
+ iaasPolicyModel.AzureBackupRGNameSuffix =
+ ((ServiceClientModel.AzureIaaSVMProtectionPolicy)serviceClientResponse.Properties).InstantRPDetails.AzureBackupRGNameSuffix;
return policyModel;
}
diff --git a/src/RecoveryServices/RecoveryServices.Backup.Models/AzureVmModels/AzureVmPolicy.cs b/src/RecoveryServices/RecoveryServices.Backup.Models/AzureVmModels/AzureVmPolicy.cs
index cf94cfc0cbf8..547b665a43e2 100644
--- a/src/RecoveryServices/RecoveryServices.Backup.Models/AzureVmModels/AzureVmPolicy.cs
+++ b/src/RecoveryServices/RecoveryServices.Backup.Models/AzureVmModels/AzureVmPolicy.cs
@@ -12,6 +12,8 @@
// limitations under the License.
// ----------------------------------------------------------------------------------
+using Microsoft.Azure.Commands.Common.Compute.Version_2018_04.Models;
+
namespace Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models
{
///
@@ -28,6 +30,16 @@ public class AzureVmPolicy : AzurePolicy
/// Object defining the number of associated items for the policy
///
public int? ProtectedItemsCount { get; set; }
+
+ ///
+ /// object defining the RG Name to store Restore Points
+ ///
+ public string AzureBackupRGName { get; set; }
+
+ ///
+ /// object defining the RG Name suffix to store Restore Points
+ ///
+ public string AzureBackupRGNameSuffix { get; set; }
}
}
\ No newline at end of file
diff --git a/src/RecoveryServices/RecoveryServices.Backup.Models/CmdletParamEnums.cs b/src/RecoveryServices/RecoveryServices.Backup.Models/CmdletParamEnums.cs
index ed549305517f..e98da016ac6f 100644
--- a/src/RecoveryServices/RecoveryServices.Backup.Models/CmdletParamEnums.cs
+++ b/src/RecoveryServices/RecoveryServices.Backup.Models/CmdletParamEnums.cs
@@ -71,7 +71,8 @@ public enum RestoreFSBackupItemParams
SourceFileType,
TargetStorageAccountName,
TargetFileShareName,
- TargetFolder
+ TargetFolder,
+ MultipleSourceFilePath
}
public enum RestoreWLBackupItemParams
{
diff --git a/src/RecoveryServices/RecoveryServices.Backup.Models/Properties/Resources.Designer.cs b/src/RecoveryServices/RecoveryServices.Backup.Models/Properties/Resources.Designer.cs
index f2f0504e1a49..5a2d71812d3d 100644
--- a/src/RecoveryServices/RecoveryServices.Backup.Models/Properties/Resources.Designer.cs
+++ b/src/RecoveryServices/RecoveryServices.Backup.Models/Properties/Resources.Designer.cs
@@ -137,7 +137,18 @@ public static string AzureFileSourceFileTypeMissingException {
return ResourceManager.GetString("AzureFileSourceFileTypeMissingException", resourceCulture);
}
}
-
+
+ ///
+ /// Looks up a localized string similar to Both source file path and multiple source file paths provided. Please give only one option
+ ///
+ public static string AzureFileSourceFilePathRedundantException
+ {
+ get
+ {
+ return ResourceManager.GetString("AzureFileSourceFilePathRedundantException", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Provide TargetFileShareName for Alternate Location restore or remove TargetStorageAccountName for Original Location restore.
///
diff --git a/src/RecoveryServices/RecoveryServices.Backup.Models/Properties/Resources.resx b/src/RecoveryServices/RecoveryServices.Backup.Models/Properties/Resources.resx
index 7417765eede5..49752c99c932 100644
--- a/src/RecoveryServices/RecoveryServices.Backup.Models/Properties/Resources.resx
+++ b/src/RecoveryServices/RecoveryServices.Backup.Models/Properties/Resources.resx
@@ -598,4 +598,7 @@ Please contact Microsoft for further assistance.
The disks of the managed VM will be restored as unmanaged since TargetResourceGroupName parameter is not provided. This will NOT leverage the instant restore functionality and hence can be significantly slow based on given storage account. To leverage instant restore, provide the TargetResourceGroupName parameter. Otherwise, provide the intent next time by passing the RestoreAsUnmanagedDisks parameter
+
+ Both source file path and multiple source file paths provided. Please give only one option
+
\ No newline at end of file
diff --git a/src/RecoveryServices/RecoveryServices.Backup.Providers/Providers/AzureFilesPsBackupProvider.cs b/src/RecoveryServices/RecoveryServices.Backup.Providers/Providers/AzureFilesPsBackupProvider.cs
index 3a287d774743..c99f5cd0ac68 100644
--- a/src/RecoveryServices/RecoveryServices.Backup.Providers/Providers/AzureFilesPsBackupProvider.cs
+++ b/src/RecoveryServices/RecoveryServices.Backup.Providers/Providers/AzureFilesPsBackupProvider.cs
@@ -177,12 +177,14 @@ public RestAzureNS.AzureOperationResponse TriggerRestore()
(string)ProviderData[RestoreFSBackupItemParams.TargetFileShareName] : null;
string targetFolder = ProviderData.ContainsKey(RestoreFSBackupItemParams.TargetFolder) ?
(string)ProviderData[RestoreFSBackupItemParams.TargetFolder] : null;
+ string[] multipleSourceFilePaths = ProviderData.ContainsKey(RestoreFSBackupItemParams.MultipleSourceFilePath) ?
+ (string[])ProviderData[RestoreFSBackupItemParams.MultipleSourceFilePath] : null;
//validate file recovery request
- ValidateFileRestoreRequest(sourceFilePath, sourceFileType);
+ ValidateFileRestoreRequest(sourceFilePath, sourceFileType, multipleSourceFilePaths);
//validate alternate location restore request
- ValidateLocationRestoreRequest(targetFileShareName, targetStorageAccountName);
+ ValidateLocationRestoreRequest(targetFileShareName, targetStorageAccountName, targetFolder);
if (targetFileShareName != null && targetStorageAccountName != null && targetFolder == null)
{
@@ -228,6 +230,31 @@ public RestAzureNS.AzureOperationResponse TriggerRestore()
restoreFileSpecs = new List();
restoreFileSpecs.Add(restoreFileSpec);
}
+ else if(multipleSourceFilePaths != null)
+ {
+ restoreFileSpecs = new List();
+ foreach (string filepath in multipleSourceFilePaths)
+ {
+ RestoreFileSpecs fileSpec = new RestoreFileSpecs();
+ fileSpec.Path = filepath;
+ fileSpec.FileSpecType = sourceFileType;
+ restoreRequest.RestoreRequestType = RestoreRequestType.ItemLevelRestore;
+ if(targetFolder != null)
+ {
+ fileSpec.TargetFolderPath = targetFolder;
+ targetDetails = new TargetAFSRestoreInfo();
+ targetDetails.Name = targetFileShareName;
+ targetDetails.TargetResourceId = targetStorageAccountResource.Id;
+ restoreRequest.RecoveryType = RecoveryType.AlternateLocation;
+ }
+ else
+ {
+ fileSpec.TargetFolderPath = null;
+ restoreRequest.RecoveryType = RecoveryType.OriginalLocation;
+ }
+ restoreFileSpecs.Add(fileSpec);
+ }
+ }
else
{
restoreRequest.RestoreRequestType = RestoreRequestType.FullShareRestore;
@@ -884,9 +911,10 @@ private void ValidateAzureFilesModifyProtectionRequest(ItemBase itemBase,
}
}
- private void ValidateFileRestoreRequest(string sourceFilePath, string sourceFileType)
+ private void ValidateFileRestoreRequest(string sourceFilePath, string sourceFileType,
+ string[] multipleSourceFilePaths)
{
- if (sourceFilePath == null && sourceFileType != null)
+ if (sourceFilePath == null && multipleSourceFilePaths == null && sourceFileType != null)
{
throw new ArgumentException(string.Format(Resources.AzureFileSourceFilePathMissingException));
}
@@ -894,9 +922,13 @@ private void ValidateFileRestoreRequest(string sourceFilePath, string sourceFile
{
throw new ArgumentException(string.Format(Resources.AzureFileSourceFileTypeMissingException));
}
+ else if(sourceFilePath != null && multipleSourceFilePaths != null)
+ {
+ throw new ArgumentException(string.Format(Resources.AzureFileSourceFilePathRedundantException));
+ }
}
- private void ValidateLocationRestoreRequest(string targetFileShareName, string targetStorageAccountName)
+ private void ValidateLocationRestoreRequest(string targetFileShareName, string targetStorageAccountName, string targetFolder)
{
if (targetFileShareName == null && targetStorageAccountName != null)
{
@@ -906,6 +938,10 @@ private void ValidateLocationRestoreRequest(string targetFileShareName, string t
{
throw new ArgumentException(string.Format(Resources.AzureFileTargetSANameMissingException));
}
+ else if(targetFolder != null && targetFileShareName == null && targetStorageAccountName == null)
+ {
+ throw new ArgumentException(string.Format(Resources.AzureFileTargetSANameMissingException));
+ }
}
public List GetLogChains()
diff --git a/src/RecoveryServices/RecoveryServices.Backup.Providers/Providers/IaasVmPsBackupProvider.cs b/src/RecoveryServices/RecoveryServices.Backup.Providers/Providers/IaasVmPsBackupProvider.cs
index 05f77b67899e..6961fc8c079d 100644
--- a/src/RecoveryServices/RecoveryServices.Backup.Providers/Providers/IaasVmPsBackupProvider.cs
+++ b/src/RecoveryServices/RecoveryServices.Backup.Providers/Providers/IaasVmPsBackupProvider.cs
@@ -753,7 +753,10 @@ public RestAzureNS.AzureOperationResponse ModifyPolicy
SchedulePolicy = PolicyHelpers.GetServiceClientSimpleSchedulePolicy(
(CmdletModel.SimpleSchedulePolicy)((AzureVmPolicy)policy).SchedulePolicy),
TimeZone = DateTimeKind.Utc.ToString().ToUpper(),
- InstantRpRetentionRangeInDays = ((AzureVmPolicy)policy).SnapshotRetentionInDays
+ InstantRpRetentionRangeInDays = ((AzureVmPolicy)policy).SnapshotRetentionInDays,
+ InstantRPDetails = new InstantRPAdditionalDetails(
+ ((AzureVmPolicy)policy).AzureBackupRGName,
+ ((AzureVmPolicy)policy).AzureBackupRGNameSuffix)
}
};
diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/AzureFiles/ItemTests.ps1 b/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/AzureFiles/ItemTests.ps1
index 47fb5a407b7b..a7399cf14769 100644
--- a/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/AzureFiles/ItemTests.ps1
+++ b/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/AzureFiles/ItemTests.ps1
@@ -24,6 +24,8 @@ $targetFileShareName = "fs1"
$targetFolder = "pstestfolder3rty7d7s"
$folderPath = "pstestfolder1bca8f8e"
$filePath = "pstestfolder1bca8f8e/pstestfile1bca8f8e.txt"
+$file1 = "file1.txt"
+$file2 = "file2.txt"
$skuName="Standard_LRS"
$policyName = "afspolicy1"
$newPolicyName = "NewAFSBackupPolicy"
@@ -314,6 +316,19 @@ function Test-AzureFSFullRestore
-ResolveConflict Overwrite `
-SourceFilePath $filePath } `
"Provide SourceFileType for File restore or remove SourceFilePath for file share restore"
+
+ # Multiple Files Restore
+ $files = ($file1, $file2)
+ $restoreJob = Restore-AzRecoveryServicesBackupItem `
+ -VaultId $vault.ID `
+ -VaultLocation $vault.Location `
+ -RecoveryPoint $recoveryPoint[0] `
+ -MultipleSourceFilePath $files `
+ -SourceFileType File `
+ -ResolveConflict Overwrite | `
+ Wait-AzRecoveryServicesBackupJob -VaultId $vault.ID
+
+ Assert-True { $restoreJob.Status -eq "Completed" }
# Test without storage account dependancy
# Item level restore at alternate location
diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/IaasVm/PolicyTests.ps1 b/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/IaasVm/PolicyTests.ps1
index 509c1eff0e7f..d369c0769e23 100644
--- a/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/IaasVm/PolicyTests.ps1
+++ b/src/RecoveryServices/RecoveryServices.Backup.Test/ScenarioTests/IaasVm/PolicyTests.ps1
@@ -18,6 +18,8 @@ $policyName = "PsTestPolicy";
$defaultPolicyName = "DefaultPolicy";
$DefaultSnapshotDays = 2;
$UpdatedSnapShotDays = 5;
+$rgPrefix = "RecoveryServices";
+$rgsuffix = "Policy";
# Test old polices in the VaultId
$oldResourceGroupName = "sambit_rg"
@@ -78,6 +80,8 @@ function Test-AzureVMPolicy
#update snapshot days
$policy.SnapshotRetentionInDays = $UpdatedSnapShotDays;
+ $policy.AzureBackupRGName = $rgPrefix;
+ $policy.AzureBackupRGNameSuffix = $rgsuffix;
# Update policy
Set-AzRecoveryServicesBackupProtectionPolicy `
diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureFSFullRestore.json b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureFSFullRestore.json
index 68295763116f..b2db4ad1f50b 100644
--- a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureFSFullRestore.json
+++ b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.ItemTests/TestAzureFSFullRestore.json
@@ -7,15 +7,15 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ea273fe6-e668-4a14-8d8b-5fee95b71bc0-2020-02-03 07:54:02Z-P"
+ "4cc3b07b-a1f7-4610-ad0a-b05f33a56055-2020-03-19 09:50:13Z-P"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.1.0"
]
},
@@ -30,10 +30,10 @@
"nosniff"
],
"x-ms-request-id": [
- "6009beba-f323-49e2-b6fc-3a9560c9dd43"
+ "c1abf60d-4c7c-4136-8276-16decf5456f5"
],
"x-ms-client-request-id": [
- "ea273fe6-e668-4a14-8d8b-5fee95b71bc0-2020-02-03 07:54:02Z-P"
+ "4cc3b07b-a1f7-4610-ad0a-b05f33a56055-2020-03-19 09:50:13Z-P"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -42,19 +42,19 @@
"Microsoft-IIS/10.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11840"
+ "11999"
],
"x-ms-correlation-request-id": [
- "6009beba-f323-49e2-b6fc-3a9560c9dd43"
+ "c1abf60d-4c7c-4136-8276-16decf5456f5"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075403Z:6009beba-f323-49e2-b6fc-3a9560c9dd43"
+ "WESTINDIA:20200319T095014Z:c1abf60d-4c7c-4136-8276-16decf5456f5"
],
"Date": [
- "Mon, 03 Feb 2020 07:54:03 GMT"
+ "Thu, 19 Mar 2020 09:50:14 GMT"
],
"Content-Length": [
- "351"
+ "466"
],
"Content-Type": [
"application/json"
@@ -63,7 +63,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pstestrsv8895\",\r\n \"etag\": \"W/\\\"datetime'2019-10-29T07%3A22%3A47.495853Z'\\\"\",\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"pstestrsv8895\",\r\n \"etag\": \"W/\\\"datetime'2019-10-29T07%3A22%3A47.495853Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -73,15 +73,15 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "19ec8434-95bc-4ce0-bd82-81c8e78684ed"
+ "c6f4a0bb-3aac-40b2-8ae5-7433c6a57283"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -96,11 +96,11 @@
"nosniff"
],
"x-ms-request-id": [
- "f4e3d436-7af3-4c91-98a9-bd41eca41a56"
+ "d16be58b-5334-4228-9893-01e270bd5288"
],
"x-ms-client-request-id": [
- "19ec8434-95bc-4ce0-bd82-81c8e78684ed",
- "19ec8434-95bc-4ce0-bd82-81c8e78684ed"
+ "c6f4a0bb-3aac-40b2-8ae5-7433c6a57283",
+ "c6f4a0bb-3aac-40b2-8ae5-7433c6a57283"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -112,16 +112,16 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11839"
+ "11998"
],
"x-ms-correlation-request-id": [
- "f4e3d436-7af3-4c91-98a9-bd41eca41a56"
+ "d16be58b-5334-4228-9893-01e270bd5288"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075404Z:f4e3d436-7af3-4c91-98a9-bd41eca41a56"
+ "WESTINDIA:20200319T095015Z:d16be58b-5334-4228-9893-01e270bd5288"
],
"Date": [
- "Mon, 03 Feb 2020 07:54:04 GMT"
+ "Thu, 19 Mar 2020 09:50:15 GMT"
],
"Content-Length": [
"12"
@@ -143,15 +143,15 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0b83e0b5-a52e-4629-b883-eedca08687e9"
+ "94f1d4fb-5887-4c43-8049-f8ddb3946224"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -166,32 +166,32 @@
"nosniff"
],
"x-ms-request-id": [
- "59287292-2800-4b52-b5b1-a30dc1021b6b"
+ "776082fd-10c5-4616-95f1-69a39d83f475"
],
"x-ms-client-request-id": [
- "0b83e0b5-a52e-4629-b883-eedca08687e9",
- "0b83e0b5-a52e-4629-b883-eedca08687e9"
+ "94f1d4fb-5887-4c43-8049-f8ddb3946224",
+ "94f1d4fb-5887-4c43-8049-f8ddb3946224"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11809"
- ],
"Server": [
"Microsoft-IIS/10.0"
],
"X-Powered-By": [
"ASP.NET"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11691"
+ ],
"x-ms-correlation-request-id": [
- "59287292-2800-4b52-b5b1-a30dc1021b6b"
+ "776082fd-10c5-4616-95f1-69a39d83f475"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075546Z:59287292-2800-4b52-b5b1-a30dc1021b6b"
+ "WESTINDIA:20200319T095136Z:776082fd-10c5-4616-95f1-69a39d83f475"
],
"Date": [
- "Mon, 03 Feb 2020 07:55:45 GMT"
+ "Thu, 19 Mar 2020 09:51:35 GMT"
],
"Content-Length": [
"789"
@@ -213,15 +213,15 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f7573d86-9885-4808-9fca-8f74d9f21d07"
+ "e431af6d-54aa-448d-8885-8cc43e41c797"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -236,11 +236,11 @@
"nosniff"
],
"x-ms-request-id": [
- "4f41310d-e370-4f81-86d4-3a56d2a7c0a5"
+ "db71c519-6055-430b-8e70-c015f653f468"
],
"x-ms-client-request-id": [
- "f7573d86-9885-4808-9fca-8f74d9f21d07",
- "f7573d86-9885-4808-9fca-8f74d9f21d07"
+ "e431af6d-54aa-448d-8885-8cc43e41c797",
+ "e431af6d-54aa-448d-8885-8cc43e41c797"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -252,16 +252,16 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11806"
+ "11688"
],
"x-ms-correlation-request-id": [
- "4f41310d-e370-4f81-86d4-3a56d2a7c0a5"
+ "db71c519-6055-430b-8e70-c015f653f468"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075549Z:4f41310d-e370-4f81-86d4-3a56d2a7c0a5"
+ "WESTINDIA:20200319T095138Z:db71c519-6055-430b-8e70-c015f653f468"
],
"Date": [
- "Mon, 03 Feb 2020 07:55:49 GMT"
+ "Thu, 19 Mar 2020 09:51:37 GMT"
],
"Content-Length": [
"789"
@@ -283,15 +283,15 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a17cfde3-dcde-4854-97bf-cfedb375dcf9"
+ "4600d58d-3bc7-41c1-9a1f-2abef822538d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -306,11 +306,11 @@
"nosniff"
],
"x-ms-request-id": [
- "746383b8-0394-4942-a67d-9ca3dabf9a78"
+ "0b6c84e8-a5ca-44e4-a72e-49936a65a77a"
],
"x-ms-client-request-id": [
- "a17cfde3-dcde-4854-97bf-cfedb375dcf9",
- "a17cfde3-dcde-4854-97bf-cfedb375dcf9"
+ "4600d58d-3bc7-41c1-9a1f-2abef822538d",
+ "4600d58d-3bc7-41c1-9a1f-2abef822538d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -322,16 +322,16 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11838"
+ "11997"
],
"x-ms-correlation-request-id": [
- "746383b8-0394-4942-a67d-9ca3dabf9a78"
+ "0b6c84e8-a5ca-44e4-a72e-49936a65a77a"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075405Z:746383b8-0394-4942-a67d-9ca3dabf9a78"
+ "WESTINDIA:20200319T095016Z:0b6c84e8-a5ca-44e4-a72e-49936a65a77a"
],
"Date": [
- "Mon, 03 Feb 2020 07:54:04 GMT"
+ "Thu, 19 Mar 2020 09:50:16 GMT"
],
"Content-Length": [
"693"
@@ -353,15 +353,15 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0e714d9d-3008-4ec9-9bba-c339856e7766"
+ "0f0e3341-341a-43d6-a082-4a3005e16232"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -373,23 +373,23 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/8deff99a-97e7-411d-a5e5-1144ef6dda8c?api-version=2016-12-01"
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
],
"Retry-After": [
"60"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationsStatus/8deff99a-97e7-411d-a5e5-1144ef6dda8c?api-version=2019-05-13-preview"
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationsStatus/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2019-05-13-preview"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "46d92e0c-220d-4394-8798-2552a46e2f4f"
+ "6d4585d3-98c6-44fd-91a7-13e82fc079f7"
],
"x-ms-client-request-id": [
- "0e714d9d-3008-4ec9-9bba-c339856e7766",
- "0e714d9d-3008-4ec9-9bba-c339856e7766"
+ "0f0e3341-341a-43d6-a082-4a3005e16232",
+ "0f0e3341-341a-43d6-a082-4a3005e16232"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -398,16 +398,16 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1190"
+ "1199"
],
"x-ms-correlation-request-id": [
- "46d92e0c-220d-4394-8798-2552a46e2f4f"
+ "6d4585d3-98c6-44fd-91a7-13e82fc079f7"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075406Z:46d92e0c-220d-4394-8798-2552a46e2f4f"
+ "WESTINDIA:20200319T095018Z:6d4585d3-98c6-44fd-91a7-13e82fc079f7"
],
"Date": [
- "Mon, 03 Feb 2020 07:54:06 GMT"
+ "Thu, 19 Mar 2020 09:50:17 GMT"
],
"Expires": [
"-1"
@@ -420,21 +420,21 @@
"StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/8deff99a-97e7-411d-a5e5-1144ef6dda8c?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzhkZWZmOTlhLTk3ZTctNDExZC1hNWU1LTExNDRlZjZkZGE4Yz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b96a7620-67af-4740-88a2-3858a81a672f"
+ "1eebe105-5035-46d4-8f55-31bef26eeadc"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -446,7 +446,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/8deff99a-97e7-411d-a5e5-1144ef6dda8c?api-version=2016-12-01"
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
],
"Retry-After": [
"60"
@@ -455,11 +455,11 @@
"nosniff"
],
"x-ms-request-id": [
- "55595c02-332c-4847-b9e0-2ac380867974"
+ "a54701ae-536f-42b7-bfd1-29ee414cc835"
],
"x-ms-client-request-id": [
- "b96a7620-67af-4740-88a2-3858a81a672f",
- "b96a7620-67af-4740-88a2-3858a81a672f"
+ "1eebe105-5035-46d4-8f55-31bef26eeadc",
+ "1eebe105-5035-46d4-8f55-31bef26eeadc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -468,16 +468,16 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11837"
+ "11996"
],
"x-ms-correlation-request-id": [
- "55595c02-332c-4847-b9e0-2ac380867974"
+ "a54701ae-536f-42b7-bfd1-29ee414cc835"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075406Z:55595c02-332c-4847-b9e0-2ac380867974"
+ "WESTINDIA:20200319T095018Z:a54701ae-536f-42b7-bfd1-29ee414cc835"
],
"Date": [
- "Mon, 03 Feb 2020 07:54:06 GMT"
+ "Thu, 19 Mar 2020 09:50:18 GMT"
],
"Expires": [
"-1"
@@ -490,21 +490,21 @@
"StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/8deff99a-97e7-411d-a5e5-1144ef6dda8c?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzhkZWZmOTlhLTk3ZTctNDExZC1hNWU1LTExNDRlZjZkZGE4Yz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1e31f993-e2e3-4771-8187-1078d936ace7"
+ "519f6440-51d2-47d3-8ccf-bf9fc5b85f82"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -516,7 +516,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/8deff99a-97e7-411d-a5e5-1144ef6dda8c?api-version=2016-12-01"
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
],
"Retry-After": [
"60"
@@ -525,11 +525,11 @@
"nosniff"
],
"x-ms-request-id": [
- "e5a2a15a-eb79-41c6-bbca-2631848373ca"
+ "ccf747f6-7108-4a09-acf6-2fad253d0d72"
],
"x-ms-client-request-id": [
- "1e31f993-e2e3-4771-8187-1078d936ace7",
- "1e31f993-e2e3-4771-8187-1078d936ace7"
+ "519f6440-51d2-47d3-8ccf-bf9fc5b85f82",
+ "519f6440-51d2-47d3-8ccf-bf9fc5b85f82"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -538,16 +538,16 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11836"
+ "11995"
],
"x-ms-correlation-request-id": [
- "e5a2a15a-eb79-41c6-bbca-2631848373ca"
+ "ccf747f6-7108-4a09-acf6-2fad253d0d72"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075412Z:e5a2a15a-eb79-41c6-bbca-2631848373ca"
+ "WESTINDIA:20200319T095018Z:ccf747f6-7108-4a09-acf6-2fad253d0d72"
],
"Date": [
- "Mon, 03 Feb 2020 07:54:11 GMT"
+ "Thu, 19 Mar 2020 09:50:18 GMT"
],
"Expires": [
"-1"
@@ -560,21 +560,21 @@
"StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/8deff99a-97e7-411d-a5e5-1144ef6dda8c?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzhkZWZmOTlhLTk3ZTctNDExZC1hNWU1LTExNDRlZjZkZGE4Yz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9b251bf4-ef47-4402-831b-e91464db02ee"
+ "2bf3c524-0631-49ea-944e-442a91bffa92"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -585,15 +585,21 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "10cac8b3-39fc-4e7d-bda2-e0cfed7dbffa"
+ "7d3cedd4-4862-4105-aef1-fb4308954da9"
],
"x-ms-client-request-id": [
- "9b251bf4-ef47-4402-831b-e91464db02ee",
- "9b251bf4-ef47-4402-831b-e91464db02ee"
+ "2bf3c524-0631-49ea-944e-442a91bffa92",
+ "2bf3c524-0631-49ea-944e-442a91bffa92"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -602,40 +608,43 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11835"
+ "11994"
],
"x-ms-correlation-request-id": [
- "10cac8b3-39fc-4e7d-bda2-e0cfed7dbffa"
+ "7d3cedd4-4862-4105-aef1-fb4308954da9"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075417Z:10cac8b3-39fc-4e7d-bda2-e0cfed7dbffa"
+ "WESTINDIA:20200319T095018Z:7d3cedd4-4862-4105-aef1-fb4308954da9"
],
"Date": [
- "Mon, 03 Feb 2020 07:54:16 GMT"
+ "Thu, 19 Mar 2020 09:50:18 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
- "StatusCode": 204
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/8deff99a-97e7-411d-a5e5-1144ef6dda8c?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzhkZWZmOTlhLTk3ZTctNDExZC1hNWU1LTExNDRlZjZkZGE4Yz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "db72ada7-15f7-4372-9c6e-c2462985f720"
+ "7e7c4c07-893a-43ac-a44c-18751de1780f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -646,15 +655,21 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "25a50c7d-def2-40bc-8b85-8eea1ab56ab6"
+ "2172a96a-72ef-4839-bf02-65f9287f1b22"
],
"x-ms-client-request-id": [
- "db72ada7-15f7-4372-9c6e-c2462985f720",
- "db72ada7-15f7-4372-9c6e-c2462985f720"
+ "7e7c4c07-893a-43ac-a44c-18751de1780f",
+ "7e7c4c07-893a-43ac-a44c-18751de1780f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -663,40 +678,43 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11834"
+ "11993"
],
"x-ms-correlation-request-id": [
- "25a50c7d-def2-40bc-8b85-8eea1ab56ab6"
+ "2172a96a-72ef-4839-bf02-65f9287f1b22"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075418Z:25a50c7d-def2-40bc-8b85-8eea1ab56ab6"
+ "WESTINDIA:20200319T095019Z:2172a96a-72ef-4839-bf02-65f9287f1b22"
],
"Date": [
- "Mon, 03 Feb 2020 07:54:18 GMT"
+ "Thu, 19 Mar 2020 09:50:19 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
- "StatusCode": 204
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZScmYXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "22ea8057-5b3e-4823-a576-bd90fe34d4be"
+ "c2a3af33-a7e3-4fef-9c09-4beba47fa790"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -707,143 +725,67 @@
"Pragma": [
"no-cache"
],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "x-ms-request-id": [
- "7177176b-15ad-4af6-b21d-0046b8a0ba53"
- ],
- "x-ms-client-request-id": [
- "22ea8057-5b3e-4823-a576-bd90fe34d4be",
- "22ea8057-5b3e-4823-a576-bd90fe34d4be"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11833"
- ],
- "x-ms-correlation-request-id": [
- "7177176b-15ad-4af6-b21d-0046b8a0ba53"
- ],
- "x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075418Z:7177176b-15ad-4af6-b21d-0046b8a0ba53"
- ],
- "Date": [
- "Mon, 03 Feb 2020 07:54:18 GMT"
- ],
- "Content-Length": [
- "12"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"value\": []\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0YWJsZUNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZScmYXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "9fe74989-0e43-4ced-a11e-8ef014c96f48"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
],
- "Pragma": [
- "no-cache"
+ "Retry-After": [
+ "60"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "1a4a265c-c8a1-4706-81ec-e4431ce551f1"
+ "97e98654-ba8e-40a3-9cad-c9d105f7e394"
],
"x-ms-client-request-id": [
- "9fe74989-0e43-4ced-a11e-8ef014c96f48",
- "9fe74989-0e43-4ced-a11e-8ef014c96f48"
+ "c2a3af33-a7e3-4fef-9c09-4beba47fa790",
+ "c2a3af33-a7e3-4fef-9c09-4beba47fa790"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11832"
+ "11992"
],
"x-ms-correlation-request-id": [
- "1a4a265c-c8a1-4706-81ec-e4431ce551f1"
+ "97e98654-ba8e-40a3-9cad-c9d105f7e394"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075419Z:1a4a265c-c8a1-4706-81ec-e4431ce551f1"
+ "WESTINDIA:20200319T095019Z:97e98654-ba8e-40a3-9cad-c9d105f7e394"
],
"Date": [
- "Mon, 03 Feb 2020 07:54:19 GMT"
- ],
- "Content-Length": [
- "7826"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:50:19 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;ClassicStorage;iaasvm.existing;iaasextstore2\",\r\n \"name\": \"StorageContainer;ClassicStorage;iaasvm.existing;iaasextstore2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasextstore2\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.ClassicStorage/storageAccounts/iaasextstore2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;ClassicStorage;riteshcRG;riteshcrg7070\",\r\n \"name\": \"StorageContainer;ClassicStorage;riteshcRG;riteshcrg7070\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"riteshcrg7070\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/riteshcRG/providers/Microsoft.ClassicStorage/storageAccounts/riteshcrg7070\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.encryptedvm;iaasvmencryptedvmdiag170\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.encryptedvm;iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmencryptedvmdiag170\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.existing;iaasextstore1\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.existing;iaasextstore1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasextstore1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.new;iaasnewstore1\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.new;iaasnewstore1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasnewstore1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasnewstore1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.new;iaasvmnewdiag1\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.new;iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmnewdiag1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;IaasVMNavigationTest-RG;iaasvmnavigationstore\",\r\n \"name\": \"StorageContainer;Storage;IaasVMNavigationTest-RG;iaasvmnavigationstore\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmnavigationstore\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/iaasvmnavigationstore\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pscloudtestrg;pscloudtestrgdiag\",\r\n \"name\": \"StorageContainer;Storage;pscloudtestrg;pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pscloudtestrgdiag\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstesttargetsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstesttargetsa8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstesttargetsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstesttargetsa8896\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstesttargetsa8896\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstesttargetsa8896\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\"\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"containerType\": \"StorageContainer\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"resourceGroup\": \"pstestrg8895\",\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\"\r\n }\r\n}",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c3db6ef3-2d89-4940-9687-66678c9ccf75"
+ "94e6ce82-5276-4fab-8a98-38ea019c1918"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "354"
]
},
"ResponseHeaders": {
@@ -854,74 +796,65 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/b9822e38-719a-4932-8eb0-6a6917de0877?api-version=2016-12-01"
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
],
"Retry-After": [
"60"
],
- "Azure-AsyncOperation": [
- "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/b9822e38-719a-4932-8eb0-6a6917de0877?api-version=2019-05-13-preview"
- ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "4cb0ae5d-41b6-4c59-a190-6449f55378c7"
+ "a88d7693-06c5-4433-9d46-aff7c2280560"
],
"x-ms-client-request-id": [
- "c3db6ef3-2d89-4940-9687-66678c9ccf75",
- "c3db6ef3-2d89-4940-9687-66678c9ccf75"
+ "94e6ce82-5276-4fab-8a98-38ea019c1918",
+ "94e6ce82-5276-4fab-8a98-38ea019c1918"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
"X-Powered-By": [
"ASP.NET"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1192"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
],
"x-ms-correlation-request-id": [
- "4cb0ae5d-41b6-4c59-a190-6449f55378c7"
+ "a88d7693-06c5-4433-9d46-aff7c2280560"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075420Z:4cb0ae5d-41b6-4c59-a190-6449f55378c7"
+ "WESTINDIA:20200319T095019Z:a88d7693-06c5-4433-9d46-aff7c2280560"
],
"Date": [
- "Mon, 03 Feb 2020 07:54:19 GMT"
- ],
- "Content-Length": [
- "2"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:50:19 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{}",
+ "ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/b9822e38-719a-4932-8eb0-6a6917de0877?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2I5ODIyZTM4LTcxOWEtNDkzMi04ZWIwLTZhNjkxN2RlMDg3Nz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0a10cda8-2d9f-4e3d-8e67-1b7d0af97adc"
+ "5bfdea24-d6f4-4604-8393-5ceac9104d5e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -933,74 +866,65 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/b9822e38-719a-4932-8eb0-6a6917de0877?api-version=2016-12-01"
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
],
"Retry-After": [
"60"
],
- "Azure-AsyncOperation": [
- "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/b9822e38-719a-4932-8eb0-6a6917de0877?api-version=2019-05-13-preview"
- ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "bcda494d-4ef2-4c49-9417-7df87ec67b80"
+ "9e3cac1a-bee2-414c-9b7c-c1258530b3fa"
],
"x-ms-client-request-id": [
- "0a10cda8-2d9f-4e3d-8e67-1b7d0af97adc",
- "0a10cda8-2d9f-4e3d-8e67-1b7d0af97adc"
+ "5bfdea24-d6f4-4604-8393-5ceac9104d5e",
+ "5bfdea24-d6f4-4604-8393-5ceac9104d5e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11831"
+ "11990"
],
"x-ms-correlation-request-id": [
- "bcda494d-4ef2-4c49-9417-7df87ec67b80"
+ "9e3cac1a-bee2-414c-9b7c-c1258530b3fa"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075420Z:bcda494d-4ef2-4c49-9417-7df87ec67b80"
+ "WESTINDIA:20200319T095019Z:9e3cac1a-bee2-414c-9b7c-c1258530b3fa"
],
"Date": [
- "Mon, 03 Feb 2020 07:54:20 GMT"
- ],
- "Content-Length": [
- "2"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:50:19 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{}",
+ "ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/b9822e38-719a-4932-8eb0-6a6917de0877?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2I5ODIyZTM4LTcxOWEtNDkzMi04ZWIwLTZhNjkxN2RlMDg3Nz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "adbad5a9-edae-412e-857a-6ef726ad062e"
+ "6304b1ab-1008-4bc0-89db-eabcef3adc76"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -1012,74 +936,65 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/b9822e38-719a-4932-8eb0-6a6917de0877?api-version=2016-12-01"
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
],
"Retry-After": [
"60"
],
- "Azure-AsyncOperation": [
- "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/b9822e38-719a-4932-8eb0-6a6917de0877?api-version=2019-05-13-preview"
- ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "03240c33-02e5-440a-a026-e6caa675df39"
+ "6ab06ee7-457d-40a9-b34a-37d3de3cb34a"
],
"x-ms-client-request-id": [
- "adbad5a9-edae-412e-857a-6ef726ad062e",
- "adbad5a9-edae-412e-857a-6ef726ad062e"
+ "6304b1ab-1008-4bc0-89db-eabcef3adc76",
+ "6304b1ab-1008-4bc0-89db-eabcef3adc76"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11830"
+ "11989"
],
"x-ms-correlation-request-id": [
- "03240c33-02e5-440a-a026-e6caa675df39"
+ "6ab06ee7-457d-40a9-b34a-37d3de3cb34a"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075426Z:03240c33-02e5-440a-a026-e6caa675df39"
+ "WESTINDIA:20200319T095020Z:6ab06ee7-457d-40a9-b34a-37d3de3cb34a"
],
"Date": [
- "Mon, 03 Feb 2020 07:54:26 GMT"
- ],
- "Content-Length": [
- "2"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:50:19 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{}",
+ "ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/b9822e38-719a-4932-8eb0-6a6917de0877?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2I5ODIyZTM4LTcxOWEtNDkzMi04ZWIwLTZhNjkxN2RlMDg3Nz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5a5a4f6a-c3a9-4b96-aa53-97d3e66da7b4"
+ "9339cec1-4390-43ad-abd3-efe0e8a93504"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -1090,136 +1005,66 @@
"Pragma": [
"no-cache"
],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "x-ms-request-id": [
- "6b30dd3d-9bd5-478f-9b39-762e0ff7cb9e"
- ],
- "x-ms-client-request-id": [
- "5a5a4f6a-c3a9-4b96-aa53-97d3e66da7b4",
- "5a5a4f6a-c3a9-4b96-aa53-97d3e66da7b4"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11829"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-correlation-request-id": [
- "6b30dd3d-9bd5-478f-9b39-762e0ff7cb9e"
- ],
- "x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075432Z:6b30dd3d-9bd5-478f-9b39-762e0ff7cb9e"
- ],
- "Date": [
- "Mon, 03 Feb 2020 07:54:32 GMT"
- ],
- "Content-Length": [
- "699"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"properties\": {\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"protectedItemCount\": 0,\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"registrationStatus\": \"Registered\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerType\": \"StorageContainer\",\r\n \"protectableObjectType\": \"StorageContainer\"\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/b9822e38-719a-4932-8eb0-6a6917de0877?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2I5ODIyZTM4LTcxOWEtNDkzMi04ZWIwLTZhNjkxN2RlMDg3Nz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "17dd689e-7e9c-4c60-94a1-9cea550ade0c"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
],
- "Pragma": [
- "no-cache"
+ "Retry-After": [
+ "60"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "9ab25515-460f-4455-945f-bb2cb58079da"
+ "87dba2e8-2afb-4fb0-b65d-31370b6ffcd1"
],
"x-ms-client-request-id": [
- "17dd689e-7e9c-4c60-94a1-9cea550ade0c",
- "17dd689e-7e9c-4c60-94a1-9cea550ade0c"
+ "9339cec1-4390-43ad-abd3-efe0e8a93504",
+ "9339cec1-4390-43ad-abd3-efe0e8a93504"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11828"
+ "11988"
],
"x-ms-correlation-request-id": [
- "9ab25515-460f-4455-945f-bb2cb58079da"
+ "87dba2e8-2afb-4fb0-b65d-31370b6ffcd1"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075433Z:9ab25515-460f-4455-945f-bb2cb58079da"
+ "WESTINDIA:20200319T095020Z:87dba2e8-2afb-4fb0-b65d-31370b6ffcd1"
],
"Date": [
- "Mon, 03 Feb 2020 07:54:33 GMT"
- ],
- "Content-Length": [
- "699"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:50:20 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"properties\": {\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"protectedItemCount\": 0,\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"registrationStatus\": \"Registered\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerType\": \"StorageContainer\",\r\n \"protectableObjectType\": \"StorageContainer\"\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/inquire?$filter=workloadType%20eq%20'AzureFileShare'&api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9pbnF1aXJlPyRmaWx0ZXI9d29ya2xvYWRUeXBlJTIwZXElMjAnQXp1cmVGaWxlU2hhcmUnJmFwaS12ZXJzaW9uPTIwMTYtMTItMDE=",
- "RequestMethod": "POST",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "472abbda-be33-4aca-bb72-9a156c2d08c9"
+ "a6efcbf2-b3b7-4546-8036-43de1ce8fbf0"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -1231,23 +1076,20 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/016ea299-835f-4f4a-873b-0b1012bb0c43?api-version=2016-12-01"
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
],
"Retry-After": [
"60"
],
- "Azure-AsyncOperation": [
- "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/016ea299-835f-4f4a-873b-0b1012bb0c43?api-version=2019-05-13-preview"
- ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "a710ffcb-2181-4331-a814-7d972ab5d192"
+ "20e91e4b-57d3-4aab-ac7b-5ae4e7dca934"
],
"x-ms-client-request-id": [
- "472abbda-be33-4aca-bb72-9a156c2d08c9",
- "472abbda-be33-4aca-bb72-9a156c2d08c9"
+ "a6efcbf2-b3b7-4546-8036-43de1ce8fbf0",
+ "a6efcbf2-b3b7-4546-8036-43de1ce8fbf0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1255,17 +1097,17 @@
"X-Powered-By": [
"ASP.NET"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1189"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
],
"x-ms-correlation-request-id": [
- "a710ffcb-2181-4331-a814-7d972ab5d192"
+ "20e91e4b-57d3-4aab-ac7b-5ae4e7dca934"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075434Z:a710ffcb-2181-4331-a814-7d972ab5d192"
+ "WESTINDIA:20200319T095020Z:20e91e4b-57d3-4aab-ac7b-5ae4e7dca934"
],
"Date": [
- "Mon, 03 Feb 2020 07:54:33 GMT"
+ "Thu, 19 Mar 2020 09:50:20 GMT"
],
"Expires": [
"-1"
@@ -1278,21 +1120,21 @@
"StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/016ea299-835f-4f4a-873b-0b1012bb0c43?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzAxNmVhMjk5LTgzNWYtNGY0YS04NzNiLTBiMTAxMmJiMGM0Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "33b6e050-5e9a-446c-a55e-fd4ea4343b00"
+ "3df1e20b-0a41-4747-9692-8dd105059bdb"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -1304,7 +1146,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/016ea299-835f-4f4a-873b-0b1012bb0c43?api-version=2016-12-01"
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
],
"Retry-After": [
"60"
@@ -1313,11 +1155,11 @@
"nosniff"
],
"x-ms-request-id": [
- "ffb21434-ba7c-4388-b03c-dfbadeb72b26"
+ "afb2c144-ddaa-4a28-af12-6b8bfc82e935"
],
"x-ms-client-request-id": [
- "33b6e050-5e9a-446c-a55e-fd4ea4343b00",
- "33b6e050-5e9a-446c-a55e-fd4ea4343b00"
+ "3df1e20b-0a41-4747-9692-8dd105059bdb",
+ "3df1e20b-0a41-4747-9692-8dd105059bdb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1326,16 +1168,16 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11827"
+ "11986"
],
"x-ms-correlation-request-id": [
- "ffb21434-ba7c-4388-b03c-dfbadeb72b26"
+ "afb2c144-ddaa-4a28-af12-6b8bfc82e935"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075435Z:ffb21434-ba7c-4388-b03c-dfbadeb72b26"
+ "WESTINDIA:20200319T095020Z:afb2c144-ddaa-4a28-af12-6b8bfc82e935"
],
"Date": [
- "Mon, 03 Feb 2020 07:54:35 GMT"
+ "Thu, 19 Mar 2020 09:50:20 GMT"
],
"Expires": [
"-1"
@@ -1348,21 +1190,21 @@
"StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/016ea299-835f-4f4a-873b-0b1012bb0c43?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzAxNmVhMjk5LTgzNWYtNGY0YS04NzNiLTBiMTAxMmJiMGM0Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ba4abe33-3e76-43e4-8a93-44003fbf6c4a"
+ "9afe3114-3d95-4331-ab5f-a350955fabb7"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -1374,7 +1216,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/016ea299-835f-4f4a-873b-0b1012bb0c43?api-version=2016-12-01"
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
],
"Retry-After": [
"60"
@@ -1383,11 +1225,11 @@
"nosniff"
],
"x-ms-request-id": [
- "53c3d9a9-dee0-4ccf-bcd3-8bf5f6bb480f"
+ "57703489-a26c-47cb-a513-eb6a9eafce92"
],
"x-ms-client-request-id": [
- "ba4abe33-3e76-43e4-8a93-44003fbf6c4a",
- "ba4abe33-3e76-43e4-8a93-44003fbf6c4a"
+ "9afe3114-3d95-4331-ab5f-a350955fabb7",
+ "9afe3114-3d95-4331-ab5f-a350955fabb7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1396,16 +1238,16 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11826"
+ "11985"
],
"x-ms-correlation-request-id": [
- "53c3d9a9-dee0-4ccf-bcd3-8bf5f6bb480f"
+ "57703489-a26c-47cb-a513-eb6a9eafce92"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075440Z:53c3d9a9-dee0-4ccf-bcd3-8bf5f6bb480f"
+ "WESTINDIA:20200319T095020Z:57703489-a26c-47cb-a513-eb6a9eafce92"
],
"Date": [
- "Mon, 03 Feb 2020 07:54:39 GMT"
+ "Thu, 19 Mar 2020 09:50:20 GMT"
],
"Expires": [
"-1"
@@ -1418,21 +1260,21 @@
"StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/016ea299-835f-4f4a-873b-0b1012bb0c43?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzAxNmVhMjk5LTgzNWYtNGY0YS04NzNiLTBiMTAxMmJiMGM0Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "06202437-c501-4e4c-927b-b3ce40491868"
+ "0b32ebcd-301c-4429-b4d6-cbdba7cc3d9b"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -1444,7 +1286,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/016ea299-835f-4f4a-873b-0b1012bb0c43?api-version=2016-12-01"
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
],
"Retry-After": [
"60"
@@ -1453,11 +1295,11 @@
"nosniff"
],
"x-ms-request-id": [
- "fc9e052e-351f-4265-bf84-74828256b935"
+ "8f90d3ea-a8f1-40cc-89d1-3036d5ddd421"
],
"x-ms-client-request-id": [
- "06202437-c501-4e4c-927b-b3ce40491868",
- "06202437-c501-4e4c-927b-b3ce40491868"
+ "0b32ebcd-301c-4429-b4d6-cbdba7cc3d9b",
+ "0b32ebcd-301c-4429-b4d6-cbdba7cc3d9b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1466,16 +1308,16 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11825"
+ "11984"
],
"x-ms-correlation-request-id": [
- "fc9e052e-351f-4265-bf84-74828256b935"
+ "8f90d3ea-a8f1-40cc-89d1-3036d5ddd421"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075446Z:fc9e052e-351f-4265-bf84-74828256b935"
+ "WESTINDIA:20200319T095021Z:8f90d3ea-a8f1-40cc-89d1-3036d5ddd421"
],
"Date": [
- "Mon, 03 Feb 2020 07:54:45 GMT"
+ "Thu, 19 Mar 2020 09:50:20 GMT"
],
"Expires": [
"-1"
@@ -1488,21 +1330,21 @@
"StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/016ea299-835f-4f4a-873b-0b1012bb0c43?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzAxNmVhMjk5LTgzNWYtNGY0YS04NzNiLTBiMTAxMmJiMGM0Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ecd6bbe7-73ef-4c6e-92d3-ccad7595fa0c"
+ "6b5f720e-879f-4a6b-8a15-509a1f00ad4d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -1514,7 +1356,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/016ea299-835f-4f4a-873b-0b1012bb0c43?api-version=2016-12-01"
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
],
"Retry-After": [
"60"
@@ -1523,11 +1365,11 @@
"nosniff"
],
"x-ms-request-id": [
- "c8dfa105-d2d1-48bf-ae57-8d4737501cb8"
+ "4dfc632d-cb53-4f1e-af81-7af7c4d4fc3f"
],
"x-ms-client-request-id": [
- "ecd6bbe7-73ef-4c6e-92d3-ccad7595fa0c",
- "ecd6bbe7-73ef-4c6e-92d3-ccad7595fa0c"
+ "6b5f720e-879f-4a6b-8a15-509a1f00ad4d",
+ "6b5f720e-879f-4a6b-8a15-509a1f00ad4d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1536,16 +1378,16 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11824"
+ "11983"
],
"x-ms-correlation-request-id": [
- "c8dfa105-d2d1-48bf-ae57-8d4737501cb8"
+ "4dfc632d-cb53-4f1e-af81-7af7c4d4fc3f"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075451Z:c8dfa105-d2d1-48bf-ae57-8d4737501cb8"
+ "WESTINDIA:20200319T095021Z:4dfc632d-cb53-4f1e-af81-7af7c4d4fc3f"
],
"Date": [
- "Mon, 03 Feb 2020 07:54:51 GMT"
+ "Thu, 19 Mar 2020 09:50:21 GMT"
],
"Expires": [
"-1"
@@ -1558,21 +1400,21 @@
"StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/016ea299-835f-4f4a-873b-0b1012bb0c43?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzAxNmVhMjk5LTgzNWYtNGY0YS04NzNiLTBiMTAxMmJiMGM0Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "41af0d68-047c-480e-b623-b753bdf38524"
+ "0962e79c-35f7-429c-8d5c-b6cb20f7579a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -1583,15 +1425,21 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "4b141717-e4e5-4fcc-a8ab-e15ab2df6d33"
+ "a9866c0a-0130-461a-81e2-4e31e29772fe"
],
"x-ms-client-request-id": [
- "41af0d68-047c-480e-b623-b753bdf38524",
- "41af0d68-047c-480e-b623-b753bdf38524"
+ "0962e79c-35f7-429c-8d5c-b6cb20f7579a",
+ "0962e79c-35f7-429c-8d5c-b6cb20f7579a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1600,40 +1448,43 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11823"
+ "11982"
],
"x-ms-correlation-request-id": [
- "4b141717-e4e5-4fcc-a8ab-e15ab2df6d33"
+ "a9866c0a-0130-461a-81e2-4e31e29772fe"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075457Z:4b141717-e4e5-4fcc-a8ab-e15ab2df6d33"
+ "WESTINDIA:20200319T095021Z:a9866c0a-0130-461a-81e2-4e31e29772fe"
],
"Date": [
- "Mon, 03 Feb 2020 07:54:57 GMT"
+ "Thu, 19 Mar 2020 09:50:21 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
- "StatusCode": 204
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/016ea299-835f-4f4a-873b-0b1012bb0c43?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzAxNmVhMjk5LTgzNWYtNGY0YS04NzNiLTBiMTAxMmJiMGM0Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e2a395f8-d81f-4392-81e2-3079e864fe4e"
+ "caf7793d-3cf1-40ad-8a40-60ed858bbc8b"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -1644,15 +1495,21 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "37532e8a-9152-41d1-8b00-bece54381a6b"
+ "b34090a3-25c5-4b82-a2bc-f0fa6f02c395"
],
"x-ms-client-request-id": [
- "e2a395f8-d81f-4392-81e2-3079e864fe4e",
- "e2a395f8-d81f-4392-81e2-3079e864fe4e"
+ "caf7793d-3cf1-40ad-8a40-60ed858bbc8b",
+ "caf7793d-3cf1-40ad-8a40-60ed858bbc8b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1661,40 +1518,43 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11822"
+ "11981"
],
"x-ms-correlation-request-id": [
- "37532e8a-9152-41d1-8b00-bece54381a6b"
+ "b34090a3-25c5-4b82-a2bc-f0fa6f02c395"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075457Z:37532e8a-9152-41d1-8b00-bece54381a6b"
+ "WESTINDIA:20200319T095021Z:b34090a3-25c5-4b82-a2bc-f0fa6f02c395"
],
"Date": [
- "Mon, 03 Feb 2020 07:54:57 GMT"
+ "Thu, 19 Mar 2020 09:50:21 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
- "StatusCode": 204
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGFibGVJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVTdG9yYWdlJyZhcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "779c0f60-a389-4182-b69b-96b7648a8f07"
+ "7533ec1d-8485-44ad-8800-521d185987ac"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -1705,73 +1565,67 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "d2373a44-5cde-470d-b533-42033b794f66"
+ "f6ce832c-f92b-4879-a988-73925f36e001"
],
"x-ms-client-request-id": [
- "779c0f60-a389-4182-b69b-96b7648a8f07",
- "779c0f60-a389-4182-b69b-96b7648a8f07"
+ "7533ec1d-8485-44ad-8800-521d185987ac",
+ "7533ec1d-8485-44ad-8800-521d185987ac"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11821"
+ "11980"
],
"x-ms-correlation-request-id": [
- "d2373a44-5cde-470d-b533-42033b794f66"
+ "f6ce832c-f92b-4879-a988-73925f36e001"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075458Z:d2373a44-5cde-470d-b533-42033b794f66"
+ "WESTINDIA:20200319T095022Z:f6ce832c-f92b-4879-a988-73925f36e001"
],
"Date": [
- "Mon, 03 Feb 2020 07:54:58 GMT"
- ],
- "Content-Length": [
- "825"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:50:21 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectableItems/azurefileshare;fs1\",\r\n \"name\": \"azurefileshare;fs1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"parentContainerFabricId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"parentContainerFriendlyName\": \"pstestsa8895\",\r\n \"azureFileShareType\": \"XSMB\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"protectableItemType\": \"AzureFileShare\",\r\n \"friendlyName\": \"fs1\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/azurefileshare%3Bfs1?api-version=2019-06-15",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9zdG9yYWdlY29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9henVyZWZpbGVzaGFyZSUzQmZzMT9hcGktdmVyc2lvbj0yMDE5LTA2LTE1",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\"\r\n }\r\n}",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7fb8ef56-415b-48fc-88ce-072d4ddeea2a"
+ "fde303f3-ec4a-461d-88f0-a1b4dce7dacd"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "433"
]
},
"ResponseHeaders": {
@@ -1782,23 +1636,20 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectedItems/azurefileshare;fs1/operationResults/fbdcc234-6983-4cdf-a562-e1208eede051?api-version=2019-06-15"
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
],
"Retry-After": [
"60"
],
- "Azure-AsyncOperation": [
- "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectedItems/azurefileshare;fs1/operationsStatus/fbdcc234-6983-4cdf-a562-e1208eede051?api-version=2019-06-15"
- ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "67155330-2643-41e1-b877-1c9bdb49d5be"
+ "931b0afd-9b85-4493-be9d-903cd3cbbcb5"
],
"x-ms-client-request-id": [
- "7fb8ef56-415b-48fc-88ce-072d4ddeea2a",
- "7fb8ef56-415b-48fc-88ce-072d4ddeea2a"
+ "fde303f3-ec4a-461d-88f0-a1b4dce7dacd",
+ "fde303f3-ec4a-461d-88f0-a1b4dce7dacd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1806,17 +1657,17 @@
"X-Powered-By": [
"ASP.NET"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1191"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11979"
],
"x-ms-correlation-request-id": [
- "67155330-2643-41e1-b877-1c9bdb49d5be"
+ "931b0afd-9b85-4493-be9d-903cd3cbbcb5"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075459Z:67155330-2643-41e1-b877-1c9bdb49d5be"
+ "WESTINDIA:20200319T095022Z:931b0afd-9b85-4493-be9d-903cd3cbbcb5"
],
"Date": [
- "Mon, 03 Feb 2020 07:54:58 GMT"
+ "Thu, 19 Mar 2020 09:50:22 GMT"
],
"Expires": [
"-1"
@@ -1829,21 +1680,21 @@
"StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fbdcc234-6983-4cdf-a562-e1208eede051?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYmRjYzIzNC02OTgzLTRjZGYtYTU2Mi1lMTIwOGVlZGUwNTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ee804866-8f56-4454-9113-1760c60e07dd"
+ "a9b260cf-24cf-4286-9614-81fb4d7fec2b"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -1854,66 +1705,66 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "a19026ac-2954-4ccf-bb19-fe44cb3e24e5"
+ "c9d80b9a-79de-4180-b976-9d8408ebc945"
],
"x-ms-client-request-id": [
- "ee804866-8f56-4454-9113-1760c60e07dd",
- "ee804866-8f56-4454-9113-1760c60e07dd"
+ "a9b260cf-24cf-4286-9614-81fb4d7fec2b",
+ "a9b260cf-24cf-4286-9614-81fb4d7fec2b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11820"
+ "11978"
],
"x-ms-correlation-request-id": [
- "a19026ac-2954-4ccf-bb19-fe44cb3e24e5"
+ "c9d80b9a-79de-4180-b976-9d8408ebc945"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075459Z:a19026ac-2954-4ccf-bb19-fe44cb3e24e5"
+ "WESTINDIA:20200319T095022Z:c9d80b9a-79de-4180-b976-9d8408ebc945"
],
"Date": [
- "Mon, 03 Feb 2020 07:54:59 GMT"
- ],
- "Content-Length": [
- "188"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:50:22 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"fbdcc234-6983-4cdf-a562-e1208eede051\",\r\n \"name\": \"fbdcc234-6983-4cdf-a562-e1208eede051\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-02-03T07:54:59.0639303Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fbdcc234-6983-4cdf-a562-e1208eede051?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYmRjYzIzNC02OTgzLTRjZGYtYTU2Mi1lMTIwOGVlZGUwNTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ddbd9665-7d46-4ead-b3d7-b5c817d9b3bc"
+ "c9a43158-99d7-4831-8b8c-fb10b36aa5a5"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -1924,66 +1775,66 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "a576a26c-39bf-4e2c-9168-eb1dbeced31f"
+ "a35655f3-e5a9-41d8-a4ab-1fb0fcc5eff0"
],
"x-ms-client-request-id": [
- "ddbd9665-7d46-4ead-b3d7-b5c817d9b3bc",
- "ddbd9665-7d46-4ead-b3d7-b5c817d9b3bc"
+ "c9a43158-99d7-4831-8b8c-fb10b36aa5a5",
+ "c9a43158-99d7-4831-8b8c-fb10b36aa5a5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11819"
+ "11977"
],
"x-ms-correlation-request-id": [
- "a576a26c-39bf-4e2c-9168-eb1dbeced31f"
+ "a35655f3-e5a9-41d8-a4ab-1fb0fcc5eff0"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075505Z:a576a26c-39bf-4e2c-9168-eb1dbeced31f"
+ "WESTINDIA:20200319T095022Z:a35655f3-e5a9-41d8-a4ab-1fb0fcc5eff0"
],
"Date": [
- "Mon, 03 Feb 2020 07:55:05 GMT"
- ],
- "Content-Length": [
- "188"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:50:22 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"fbdcc234-6983-4cdf-a562-e1208eede051\",\r\n \"name\": \"fbdcc234-6983-4cdf-a562-e1208eede051\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-02-03T07:54:59.0639303Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fbdcc234-6983-4cdf-a562-e1208eede051?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYmRjYzIzNC02OTgzLTRjZGYtYTU2Mi1lMTIwOGVlZGUwNTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "60d36f24-e437-4b13-b2be-4be0bd5bfe63"
+ "49e97647-aa0a-4a3c-ae9b-b99438aef996"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -1994,66 +1845,66 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "3d17dc44-60a8-4e01-8e32-08612597eb55"
+ "5ab21775-4f9a-48e8-ba18-9ba005ad9734"
],
"x-ms-client-request-id": [
- "60d36f24-e437-4b13-b2be-4be0bd5bfe63",
- "60d36f24-e437-4b13-b2be-4be0bd5bfe63"
+ "49e97647-aa0a-4a3c-ae9b-b99438aef996",
+ "49e97647-aa0a-4a3c-ae9b-b99438aef996"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11818"
+ "11976"
],
"x-ms-correlation-request-id": [
- "3d17dc44-60a8-4e01-8e32-08612597eb55"
+ "5ab21775-4f9a-48e8-ba18-9ba005ad9734"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075511Z:3d17dc44-60a8-4e01-8e32-08612597eb55"
+ "WESTINDIA:20200319T095022Z:5ab21775-4f9a-48e8-ba18-9ba005ad9734"
],
"Date": [
- "Mon, 03 Feb 2020 07:55:11 GMT"
- ],
- "Content-Length": [
- "188"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:50:22 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"fbdcc234-6983-4cdf-a562-e1208eede051\",\r\n \"name\": \"fbdcc234-6983-4cdf-a562-e1208eede051\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-02-03T07:54:59.0639303Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fbdcc234-6983-4cdf-a562-e1208eede051?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYmRjYzIzNC02OTgzLTRjZGYtYTU2Mi1lMTIwOGVlZGUwNTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "75c395e8-44a8-4212-a143-a3d9ddfb0a73"
+ "7cd9c615-9460-4053-a4d3-1385b2241501"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -2064,66 +1915,66 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "4a6e7b16-60cb-4604-88da-fb43cdeb5d7b"
+ "00b4f8ea-b8de-4c47-aac5-f99d4815a03d"
],
"x-ms-client-request-id": [
- "75c395e8-44a8-4212-a143-a3d9ddfb0a73",
- "75c395e8-44a8-4212-a143-a3d9ddfb0a73"
+ "7cd9c615-9460-4053-a4d3-1385b2241501",
+ "7cd9c615-9460-4053-a4d3-1385b2241501"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11817"
+ "11975"
],
"x-ms-correlation-request-id": [
- "4a6e7b16-60cb-4604-88da-fb43cdeb5d7b"
+ "00b4f8ea-b8de-4c47-aac5-f99d4815a03d"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075516Z:4a6e7b16-60cb-4604-88da-fb43cdeb5d7b"
+ "WESTINDIA:20200319T095023Z:00b4f8ea-b8de-4c47-aac5-f99d4815a03d"
],
"Date": [
- "Mon, 03 Feb 2020 07:55:16 GMT"
- ],
- "Content-Length": [
- "188"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:50:23 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"fbdcc234-6983-4cdf-a562-e1208eede051\",\r\n \"name\": \"fbdcc234-6983-4cdf-a562-e1208eede051\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-02-03T07:54:59.0639303Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fbdcc234-6983-4cdf-a562-e1208eede051?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYmRjYzIzNC02OTgzLTRjZGYtYTU2Mi1lMTIwOGVlZGUwNTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "39a537e5-b441-4566-9e27-708f04c354f2"
+ "9f04d23d-1b66-40de-a7fa-f28994e96ecf"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -2134,66 +1985,66 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "7ca00796-2657-42b0-adc1-743cb374a1de"
+ "e7739ea5-34b8-44fd-aecf-c53b238f3dbf"
],
"x-ms-client-request-id": [
- "39a537e5-b441-4566-9e27-708f04c354f2",
- "39a537e5-b441-4566-9e27-708f04c354f2"
+ "9f04d23d-1b66-40de-a7fa-f28994e96ecf",
+ "9f04d23d-1b66-40de-a7fa-f28994e96ecf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11816"
+ "11974"
],
"x-ms-correlation-request-id": [
- "7ca00796-2657-42b0-adc1-743cb374a1de"
+ "e7739ea5-34b8-44fd-aecf-c53b238f3dbf"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075522Z:7ca00796-2657-42b0-adc1-743cb374a1de"
+ "WESTINDIA:20200319T095023Z:e7739ea5-34b8-44fd-aecf-c53b238f3dbf"
],
"Date": [
- "Mon, 03 Feb 2020 07:55:22 GMT"
- ],
- "Content-Length": [
- "188"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:50:23 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"fbdcc234-6983-4cdf-a562-e1208eede051\",\r\n \"name\": \"fbdcc234-6983-4cdf-a562-e1208eede051\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-02-03T07:54:59.0639303Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fbdcc234-6983-4cdf-a562-e1208eede051?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYmRjYzIzNC02OTgzLTRjZGYtYTU2Mi1lMTIwOGVlZGUwNTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "98bdc140-4dcd-4266-8f35-a7625593ac4b"
+ "7b1e3400-7d21-47f8-9bd8-b60d44abe88f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -2204,66 +2055,66 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "39e5f299-287a-4cb7-80c8-1238a3f1d062"
+ "9f5eee46-95a8-41a3-90a8-615ab70f9a25"
],
"x-ms-client-request-id": [
- "98bdc140-4dcd-4266-8f35-a7625593ac4b",
- "98bdc140-4dcd-4266-8f35-a7625593ac4b"
+ "7b1e3400-7d21-47f8-9bd8-b60d44abe88f",
+ "7b1e3400-7d21-47f8-9bd8-b60d44abe88f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11815"
+ "11973"
],
"x-ms-correlation-request-id": [
- "39e5f299-287a-4cb7-80c8-1238a3f1d062"
+ "9f5eee46-95a8-41a3-90a8-615ab70f9a25"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075527Z:39e5f299-287a-4cb7-80c8-1238a3f1d062"
+ "WESTINDIA:20200319T095023Z:9f5eee46-95a8-41a3-90a8-615ab70f9a25"
],
"Date": [
- "Mon, 03 Feb 2020 07:55:27 GMT"
- ],
- "Content-Length": [
- "188"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:50:23 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"fbdcc234-6983-4cdf-a562-e1208eede051\",\r\n \"name\": \"fbdcc234-6983-4cdf-a562-e1208eede051\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-02-03T07:54:59.0639303Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fbdcc234-6983-4cdf-a562-e1208eede051?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYmRjYzIzNC02OTgzLTRjZGYtYTU2Mi1lMTIwOGVlZGUwNTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d36eec8d-439b-47de-a034-ac3234af3b20"
+ "953e641e-cfa0-43d1-8368-002660b0c7db"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -2274,66 +2125,66 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "08f928f2-6a88-470f-ab72-41c57667368e"
+ "0a29809b-51d1-4ee7-80b3-ad88ac53fcd1"
],
"x-ms-client-request-id": [
- "d36eec8d-439b-47de-a034-ac3234af3b20",
- "d36eec8d-439b-47de-a034-ac3234af3b20"
+ "953e641e-cfa0-43d1-8368-002660b0c7db",
+ "953e641e-cfa0-43d1-8368-002660b0c7db"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11814"
+ "11972"
],
"x-ms-correlation-request-id": [
- "08f928f2-6a88-470f-ab72-41c57667368e"
+ "0a29809b-51d1-4ee7-80b3-ad88ac53fcd1"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075533Z:08f928f2-6a88-470f-ab72-41c57667368e"
+ "WESTINDIA:20200319T095023Z:0a29809b-51d1-4ee7-80b3-ad88ac53fcd1"
],
"Date": [
- "Mon, 03 Feb 2020 07:55:33 GMT"
- ],
- "Content-Length": [
- "188"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:50:23 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"fbdcc234-6983-4cdf-a562-e1208eede051\",\r\n \"name\": \"fbdcc234-6983-4cdf-a562-e1208eede051\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-02-03T07:54:59.0639303Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fbdcc234-6983-4cdf-a562-e1208eede051?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYmRjYzIzNC02OTgzLTRjZGYtYTU2Mi1lMTIwOGVlZGUwNTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fc6f259d-3670-4574-ab8b-da8b565bbfb2"
+ "90781f7c-2f64-4d10-8c08-bb9bfcb400c6"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -2344,66 +2195,66 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "3f364154-988d-41db-b398-50f384cf4c41"
+ "5eced0c2-d340-4e15-ae1e-f242725236bc"
],
"x-ms-client-request-id": [
- "fc6f259d-3670-4574-ab8b-da8b565bbfb2",
- "fc6f259d-3670-4574-ab8b-da8b565bbfb2"
+ "90781f7c-2f64-4d10-8c08-bb9bfcb400c6",
+ "90781f7c-2f64-4d10-8c08-bb9bfcb400c6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11813"
+ "11971"
],
"x-ms-correlation-request-id": [
- "3f364154-988d-41db-b398-50f384cf4c41"
+ "5eced0c2-d340-4e15-ae1e-f242725236bc"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075538Z:3f364154-988d-41db-b398-50f384cf4c41"
+ "WESTINDIA:20200319T095024Z:5eced0c2-d340-4e15-ae1e-f242725236bc"
],
"Date": [
- "Mon, 03 Feb 2020 07:55:38 GMT"
- ],
- "Content-Length": [
- "188"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:50:23 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"fbdcc234-6983-4cdf-a562-e1208eede051\",\r\n \"name\": \"fbdcc234-6983-4cdf-a562-e1208eede051\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-02-03T07:54:59.0639303Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fbdcc234-6983-4cdf-a562-e1208eede051?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYmRjYzIzNC02OTgzLTRjZGYtYTU2Mi1lMTIwOGVlZGUwNTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5b32099f-b51e-4173-9198-04abb45f43fd"
+ "9db70ac5-18c5-476a-b8fa-240498410d7b"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -2414,66 +2265,66 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "a1a3d358-47e0-4b22-ac57-7d1db28fe818"
+ "1e11acb0-19d0-4582-a4a9-9b2784e60226"
],
"x-ms-client-request-id": [
- "5b32099f-b51e-4173-9198-04abb45f43fd",
- "5b32099f-b51e-4173-9198-04abb45f43fd"
+ "9db70ac5-18c5-476a-b8fa-240498410d7b",
+ "9db70ac5-18c5-476a-b8fa-240498410d7b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11812"
+ "11970"
],
"x-ms-correlation-request-id": [
- "a1a3d358-47e0-4b22-ac57-7d1db28fe818"
+ "1e11acb0-19d0-4582-a4a9-9b2784e60226"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075544Z:a1a3d358-47e0-4b22-ac57-7d1db28fe818"
+ "WESTINDIA:20200319T095024Z:1e11acb0-19d0-4582-a4a9-9b2784e60226"
],
"Date": [
- "Mon, 03 Feb 2020 07:55:44 GMT"
- ],
- "Content-Length": [
- "304"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:50:24 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"fbdcc234-6983-4cdf-a562-e1208eede051\",\r\n \"name\": \"fbdcc234-6983-4cdf-a562-e1208eede051\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-02-03T07:54:59.0639303Z\",\r\n \"endTime\": \"2020-02-03T07:54:59.0639303Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"2726bdfc-faa6-4e43-8224-b679f622f811\"\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fbdcc234-6983-4cdf-a562-e1208eede051?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYmRjYzIzNC02OTgzLTRjZGYtYTU2Mi1lMTIwOGVlZGUwNTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d2080485-0618-411a-a355-c0750127a31a"
+ "c4519802-99e2-4d0a-9270-64e9607cd52a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -2484,66 +2335,66 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "28e0833f-e8be-46e4-8620-f59cf6d49c41"
+ "4d086d4f-c4ff-4b54-b4e6-708cbbb978b0"
],
"x-ms-client-request-id": [
- "d2080485-0618-411a-a355-c0750127a31a",
- "d2080485-0618-411a-a355-c0750127a31a"
+ "c4519802-99e2-4d0a-9270-64e9607cd52a",
+ "c4519802-99e2-4d0a-9270-64e9607cd52a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11811"
+ "11969"
],
"x-ms-correlation-request-id": [
- "28e0833f-e8be-46e4-8620-f59cf6d49c41"
+ "4d086d4f-c4ff-4b54-b4e6-708cbbb978b0"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075545Z:28e0833f-e8be-46e4-8620-f59cf6d49c41"
+ "WESTINDIA:20200319T095024Z:4d086d4f-c4ff-4b54-b4e6-708cbbb978b0"
],
"Date": [
- "Mon, 03 Feb 2020 07:55:44 GMT"
- ],
- "Content-Length": [
- "304"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:50:24 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"fbdcc234-6983-4cdf-a562-e1208eede051\",\r\n \"name\": \"fbdcc234-6983-4cdf-a562-e1208eede051\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-02-03T07:54:59.0639303Z\",\r\n \"endTime\": \"2020-02-03T07:54:59.0639303Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"2726bdfc-faa6-4e43-8224-b679f622f811\"\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/2726bdfc-faa6-4e43-8224-b679f622f811?api-version=2019-06-15",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8yNzI2YmRmYy1mYWE2LTRlNDMtODIyNC1iNjc5ZjYyMmY4MTE/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0f890800-a6d6-4c73-81b1-7c74ab466a65"
+ "b80d962b-8d21-4171-b573-11fb026e4183"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -2554,67 +2405,66 @@
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-IIS/10.0",
- "Microsoft-IIS/10.0"
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "c999f554-2eb2-4e70-b177-95d323b05934"
+ "5d6f67f4-cce1-4286-b360-3d66be8d5fe3"
],
"x-ms-client-request-id": [
- "0f890800-a6d6-4c73-81b1-7c74ab466a65",
- "0f890800-a6d6-4c73-81b1-7c74ab466a65"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "b80d962b-8d21-4171-b573-11fb026e4183",
+ "b80d962b-8d21-4171-b573-11fb026e4183"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11810"
+ "11968"
],
"x-ms-correlation-request-id": [
- "c999f554-2eb2-4e70-b177-95d323b05934"
+ "5d6f67f4-cce1-4286-b360-3d66be8d5fe3"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075545Z:c999f554-2eb2-4e70-b177-95d323b05934"
+ "WESTINDIA:20200319T095024Z:5d6f67f4-cce1-4286-b360-3d66be8d5fe3"
],
"Date": [
- "Mon, 03 Feb 2020 07:55:45 GMT"
- ],
- "Content-Length": [
- "822"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:50:24 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/2726bdfc-faa6-4e43-8224-b679f622f811\",\r\n \"name\": \"2726bdfc-faa6-4e43-8224-b679f622f811\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT42.2854287S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2020-02-03T07:54:59.0639303Z\",\r\n \"endTime\": \"2020-02-03T07:55:41.349359Z\",\r\n \"activityId\": \"7fb8ef56-415b-48fc-88ce-072d4ddeea2a\"\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureStorage'%20and%20itemType%20eq%20'AzureFileShare'&api-version=2019-06-15",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGVkSXRlbXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZSclMjBhbmQlMjBpdGVtVHlwZSUyMGVxJTIwJ0F6dXJlRmlsZVNoYXJlJyZhcGktdmVyc2lvbj0yMDE5LTA2LTE1",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "20ae399f-1551-4ddb-a176-017fc4a55de5"
+ "66ad1620-6fd3-417d-a88b-1d2b02570daa"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -2625,66 +2475,66 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "7bd04e56-7612-47b3-8120-a6a0d9576d2f"
+ "657967a6-392e-499f-9730-923f5c397d65"
],
"x-ms-client-request-id": [
- "20ae399f-1551-4ddb-a176-017fc4a55de5",
- "20ae399f-1551-4ddb-a176-017fc4a55de5"
+ "66ad1620-6fd3-417d-a88b-1d2b02570daa",
+ "66ad1620-6fd3-417d-a88b-1d2b02570daa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11808"
+ "11967"
],
"x-ms-correlation-request-id": [
- "7bd04e56-7612-47b3-8120-a6a0d9576d2f"
+ "657967a6-392e-499f-9730-923f5c397d65"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075547Z:7bd04e56-7612-47b3-8120-a6a0d9576d2f"
+ "WESTINDIA:20200319T095024Z:657967a6-392e-499f-9730-923f5c397d65"
],
"Date": [
- "Mon, 03 Feb 2020 07:55:47 GMT"
- ],
- "Content-Length": [
- "1055"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:50:24 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;fs1\",\r\n \"name\": \"AzureFileShare;fs1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\"\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3Bfs1?$filter=expand%20eq%20'extendedinfo'&api-version=2019-06-15",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQmZzMT8kZmlsdGVyPWV4cGFuZCUyMGVxJTIwJ2V4dGVuZGVkaW5mbycmYXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "11dd6646-8a81-40a9-b729-1563ce02a71c"
+ "0bb0ce6d-301b-4827-973d-cbae711d45a4"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -2695,73 +2545,67 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "75705065-a1f7-45ed-b0a2-b234a5a5dcdf"
+ "73a50058-13fd-487b-ac4e-335f6d0d2683"
],
"x-ms-client-request-id": [
- "11dd6646-8a81-40a9-b729-1563ce02a71c",
- "11dd6646-8a81-40a9-b729-1563ce02a71c"
+ "0bb0ce6d-301b-4827-973d-cbae711d45a4",
+ "0bb0ce6d-301b-4827-973d-cbae711d45a4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11807"
+ "11966"
],
"x-ms-correlation-request-id": [
- "75705065-a1f7-45ed-b0a2-b234a5a5dcdf"
+ "73a50058-13fd-487b-ac4e-335f6d0d2683"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075548Z:75705065-a1f7-45ed-b0a2-b234a5a5dcdf"
+ "WESTINDIA:20200319T095025Z:73a50058-13fd-487b-ac4e-335f6d0d2683"
],
"Date": [
- "Mon, 03 Feb 2020 07:55:47 GMT"
- ],
- "Content-Length": [
- "1190"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:50:24 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;fs1\",\r\n \"name\": \"AzureFileShare;fs1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"extendedInfo\": {\r\n \"recoveryPointCount\": 0,\r\n \"policyState\": \"Consistent\",\r\n \"resourceState\": \"Active\",\r\n \"resourceStateSyncTime\": \"2020-02-03T07:55:41.1306017Z\"\r\n },\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\"\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3Bfs1/backup?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQmZzMS9iYWNrdXA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
- "RequestMethod": "POST",
- "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"AzureFileShareBackupRequest\"\r\n }\r\n}",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1f596b1d-8d3b-49ce-8fe2-9bf780dcfed5"
+ "5e5f96aa-2b91-4730-8645-bae7e70a7ccf"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "77"
]
},
"ResponseHeaders": {
@@ -2772,23 +2616,20 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;fs1/operationResults/01c60834-e99c-4a3b-a9c3-2ac3a21b9614?api-version=2016-12-01"
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
],
"Retry-After": [
"60"
],
- "Azure-AsyncOperation": [
- "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;fs1/operationsStatus/01c60834-e99c-4a3b-a9c3-2ac3a21b9614?api-version=2016-12-01"
- ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "428d02ff-364e-4451-a1d0-65a202de42a4"
+ "df14770f-2061-4086-8aa3-9ef950550db5"
],
"x-ms-client-request-id": [
- "1f596b1d-8d3b-49ce-8fe2-9bf780dcfed5",
- "1f596b1d-8d3b-49ce-8fe2-9bf780dcfed5"
+ "5e5f96aa-2b91-4730-8645-bae7e70a7ccf",
+ "5e5f96aa-2b91-4730-8645-bae7e70a7ccf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2796,17 +2637,17 @@
"X-Powered-By": [
"ASP.NET"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1188"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11965"
],
"x-ms-correlation-request-id": [
- "428d02ff-364e-4451-a1d0-65a202de42a4"
+ "df14770f-2061-4086-8aa3-9ef950550db5"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075550Z:428d02ff-364e-4451-a1d0-65a202de42a4"
+ "WESTINDIA:20200319T095025Z:df14770f-2061-4086-8aa3-9ef950550db5"
],
"Date": [
- "Mon, 03 Feb 2020 07:55:49 GMT"
+ "Thu, 19 Mar 2020 09:50:25 GMT"
],
"Expires": [
"-1"
@@ -2819,21 +2660,21 @@
"StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/01c60834-e99c-4a3b-a9c3-2ac3a21b9614?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wMWM2MDgzNC1lOTljLTRhM2ItYTljMy0yYWMzYTIxYjk2MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c7ee4170-efdb-425e-8fb3-f35c95ca80fb"
+ "5d5a6f5a-1af7-4af5-88a4-41865e46aeb2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -2844,66 +2685,66 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "f06c7e79-7ea0-4efa-9d07-b889589abf4d"
+ "1a592e53-f853-4a88-93b1-c95d5a7ad27b"
],
"x-ms-client-request-id": [
- "c7ee4170-efdb-425e-8fb3-f35c95ca80fb",
- "c7ee4170-efdb-425e-8fb3-f35c95ca80fb"
+ "5d5a6f5a-1af7-4af5-88a4-41865e46aeb2",
+ "5d5a6f5a-1af7-4af5-88a4-41865e46aeb2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11805"
+ "11964"
],
"x-ms-correlation-request-id": [
- "f06c7e79-7ea0-4efa-9d07-b889589abf4d"
+ "1a592e53-f853-4a88-93b1-c95d5a7ad27b"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075550Z:f06c7e79-7ea0-4efa-9d07-b889589abf4d"
+ "WESTINDIA:20200319T095025Z:1a592e53-f853-4a88-93b1-c95d5a7ad27b"
],
"Date": [
- "Mon, 03 Feb 2020 07:55:50 GMT"
- ],
- "Content-Length": [
- "304"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:50:25 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"01c60834-e99c-4a3b-a9c3-2ac3a21b9614\",\r\n \"name\": \"01c60834-e99c-4a3b-a9c3-2ac3a21b9614\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-02-03T07:55:49.8786004Z\",\r\n \"endTime\": \"2020-02-03T07:55:49.8786004Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"d8fbb5f1-826e-40d6-8754-fe7ec76338f0\"\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/01c60834-e99c-4a3b-a9c3-2ac3a21b9614?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8wMWM2MDgzNC1lOTljLTRhM2ItYTljMy0yYWMzYTIxYjk2MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "49971d24-1ce4-4a6c-a7d7-3819b13d6d86"
+ "cc30c095-f51b-4f8e-9a7e-468568935ca6"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -2914,66 +2755,66 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "3341bf2e-0530-41f8-8783-789617e9dc8d"
+ "192583b8-8de5-48a7-8c3c-86af6819f0d9"
],
"x-ms-client-request-id": [
- "49971d24-1ce4-4a6c-a7d7-3819b13d6d86",
- "49971d24-1ce4-4a6c-a7d7-3819b13d6d86"
+ "cc30c095-f51b-4f8e-9a7e-468568935ca6",
+ "cc30c095-f51b-4f8e-9a7e-468568935ca6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11804"
+ "11963"
],
"x-ms-correlation-request-id": [
- "3341bf2e-0530-41f8-8783-789617e9dc8d"
+ "192583b8-8de5-48a7-8c3c-86af6819f0d9"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075551Z:3341bf2e-0530-41f8-8783-789617e9dc8d"
+ "WESTINDIA:20200319T095026Z:192583b8-8de5-48a7-8c3c-86af6819f0d9"
],
"Date": [
- "Mon, 03 Feb 2020 07:55:50 GMT"
- ],
- "Content-Length": [
- "304"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:50:26 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"01c60834-e99c-4a3b-a9c3-2ac3a21b9614\",\r\n \"name\": \"01c60834-e99c-4a3b-a9c3-2ac3a21b9614\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-02-03T07:55:49.8786004Z\",\r\n \"endTime\": \"2020-02-03T07:55:49.8786004Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"d8fbb5f1-826e-40d6-8754-fe7ec76338f0\"\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/d8fbb5f1-826e-40d6-8754-fe7ec76338f0?api-version=2019-06-15",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9kOGZiYjVmMS04MjZlLTQwZDYtODc1NC1mZTdlYzc2MzM4ZjA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "13127f07-015a-466a-9031-4bc768ddded8"
+ "674bc631-dcc1-4e93-9f72-cd50227d9d89"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -2984,67 +2825,66 @@
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-IIS/10.0",
- "Microsoft-IIS/10.0"
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "93933ea6-f2e6-408d-a8fb-b2cd596a327d"
+ "e59341d4-2cb6-454e-bc17-af7933576f92"
],
"x-ms-client-request-id": [
- "13127f07-015a-466a-9031-4bc768ddded8",
- "13127f07-015a-466a-9031-4bc768ddded8"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "674bc631-dcc1-4e93-9f72-cd50227d9d89",
+ "674bc631-dcc1-4e93-9f72-cd50227d9d89"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11803"
+ "11962"
],
"x-ms-correlation-request-id": [
- "93933ea6-f2e6-408d-a8fb-b2cd596a327d"
+ "e59341d4-2cb6-454e-bc17-af7933576f92"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075551Z:93933ea6-f2e6-408d-a8fb-b2cd596a327d"
+ "WESTINDIA:20200319T095026Z:e59341d4-2cb6-454e-bc17-af7933576f92"
],
"Date": [
- "Mon, 03 Feb 2020 07:55:51 GMT"
- ],
- "Content-Length": [
- "840"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:50:26 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/d8fbb5f1-826e-40d6-8754-fe7ec76338f0\",\r\n \"name\": \"d8fbb5f1-826e-40d6-8754-fe7ec76338f0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT1.9375645S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"MicrosoftStorage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"File Share Name\": \"fs1\",\r\n \"Whether job is adhoc or scheduled.\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-02-03T07:55:49.8786004Z\",\r\n \"activityId\": \"1f596b1d-8d3b-49ce-8fe2-9bf780dcfed5\"\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/d8fbb5f1-826e-40d6-8754-fe7ec76338f0?api-version=2019-06-15",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9kOGZiYjVmMS04MjZlLTQwZDYtODc1NC1mZTdlYzc2MzM4ZjA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5fcc85e3-a103-4b8d-ad1a-eb5510589637"
+ "5aa0a795-a76d-4a04-9642-110408816d95"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -3055,67 +2895,66 @@
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-IIS/10.0",
- "Microsoft-IIS/10.0"
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "1f7a9e92-3dc0-49e3-a47f-62101bd0426a"
+ "5ea0938b-bdd5-49be-be5d-8d1f0ea02e3d"
],
"x-ms-client-request-id": [
- "5fcc85e3-a103-4b8d-ad1a-eb5510589637",
- "5fcc85e3-a103-4b8d-ad1a-eb5510589637"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "5aa0a795-a76d-4a04-9642-110408816d95",
+ "5aa0a795-a76d-4a04-9642-110408816d95"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11802"
+ "11961"
],
"x-ms-correlation-request-id": [
- "1f7a9e92-3dc0-49e3-a47f-62101bd0426a"
+ "5ea0938b-bdd5-49be-be5d-8d1f0ea02e3d"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075552Z:1f7a9e92-3dc0-49e3-a47f-62101bd0426a"
+ "WESTINDIA:20200319T095026Z:5ea0938b-bdd5-49be-be5d-8d1f0ea02e3d"
],
"Date": [
- "Mon, 03 Feb 2020 07:55:51 GMT"
- ],
- "Content-Length": [
- "840"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:50:26 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/d8fbb5f1-826e-40d6-8754-fe7ec76338f0\",\r\n \"name\": \"d8fbb5f1-826e-40d6-8754-fe7ec76338f0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT2.5389219S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"MicrosoftStorage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"File Share Name\": \"fs1\",\r\n \"Whether job is adhoc or scheduled.\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-02-03T07:55:49.8786004Z\",\r\n \"activityId\": \"1f596b1d-8d3b-49ce-8fe2-9bf780dcfed5\"\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/d8fbb5f1-826e-40d6-8754-fe7ec76338f0?api-version=2019-06-15",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9kOGZiYjVmMS04MjZlLTQwZDYtODc1NC1mZTdlYzc2MzM4ZjA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "77a384bb-7feb-41de-88f0-ac3a7aa0657e"
+ "362f8559-801c-4b99-94f8-e6654940ab24"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -3126,67 +2965,136 @@
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-IIS/10.0",
- "Microsoft-IIS/10.0"
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "57486383-a2a5-4900-a10a-7eea78d652ce"
+ "6559e326-7555-4e8c-bfa2-6abbbad36318"
],
"x-ms-client-request-id": [
- "77a384bb-7feb-41de-88f0-ac3a7aa0657e",
- "77a384bb-7feb-41de-88f0-ac3a7aa0657e"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "362f8559-801c-4b99-94f8-e6654940ab24",
+ "362f8559-801c-4b99-94f8-e6654940ab24"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11801"
+ "11960"
],
"x-ms-correlation-request-id": [
- "57486383-a2a5-4900-a10a-7eea78d652ce"
+ "6559e326-7555-4e8c-bfa2-6abbbad36318"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075623Z:57486383-a2a5-4900-a10a-7eea78d652ce"
+ "WESTINDIA:20200319T095026Z:6559e326-7555-4e8c-bfa2-6abbbad36318"
],
"Date": [
- "Mon, 03 Feb 2020 07:56:23 GMT"
+ "Thu, 19 Mar 2020 09:50:26 GMT"
+ ],
+ "Expires": [
+ "-1"
],
"Content-Length": [
- "879"
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "83072bd0-299a-4921-998f-1a1db12082ee"
],
- "Content-Type": [
- "application/json"
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "ace98a06-0276-4ba3-90a7-69cc904cac4d"
+ ],
+ "x-ms-client-request-id": [
+ "83072bd0-299a-4921-998f-1a1db12082ee",
+ "83072bd0-299a-4921-998f-1a1db12082ee"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11959"
+ ],
+ "x-ms-correlation-request-id": [
+ "ace98a06-0276-4ba3-90a7-69cc904cac4d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095027Z:ace98a06-0276-4ba3-90a7-69cc904cac4d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:26 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/d8fbb5f1-826e-40d6-8754-fe7ec76338f0\",\r\n \"name\": \"d8fbb5f1-826e-40d6-8754-fe7ec76338f0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT2.0395275S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"MicrosoftStorage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"status\": \"Completed\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"File Share Name\": \"fs1\",\r\n \"Whether job is adhoc or scheduled.\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2020-02-03T07:55:49.8786004Z\",\r\n \"endTime\": \"2020-02-03T07:55:51.9181279Z\",\r\n \"activityId\": \"1f596b1d-8d3b-49ce-8fe2-9bf780dcfed5\"\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3Bfs1/recoveryPoints?$filter=startDate%20eq%20'2020-02-03%2007:54:49%20AM'%20and%20endDate%20eq%20'2020-02-03%2007:56:51%20AM'&api-version=2019-06-15",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQmZzMS9yZWNvdmVyeVBvaW50cz8kZmlsdGVyPXN0YXJ0RGF0ZSUyMGVxJTIwJzIwMjAtMDItMDMlMjAwNzo1NDo0OSUyMEFNJyUyMGFuZCUyMGVuZERhdGUlMjBlcSUyMCcyMDIwLTAyLTAzJTIwMDc6NTY6NTElMjBBTScmYXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "be6b8f1e-b437-4b4a-ab4f-091ca3647ad8"
+ "3bfc3cab-3ebb-4367-8a53-0bcb190bc084"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -3197,67 +3105,72361 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "0f79c0b5-7871-42ed-91eb-797091561c2b"
+ ],
+ "x-ms-client-request-id": [
+ "3bfc3cab-3ebb-4367-8a53-0bcb190bc084",
+ "3bfc3cab-3ebb-4367-8a53-0bcb190bc084"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11958"
+ ],
+ "x-ms-correlation-request-id": [
+ "0f79c0b5-7871-42ed-91eb-797091561c2b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095027Z:0f79c0b5-7871-42ed-91eb-797091561c2b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:27 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "205463a8-f6ad-4c16-946c-8229e8ca95ad"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "a983f14b-bb05-456d-b372-6c60b963e95f"
+ ],
+ "x-ms-client-request-id": [
+ "205463a8-f6ad-4c16-946c-8229e8ca95ad",
+ "205463a8-f6ad-4c16-946c-8229e8ca95ad"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11957"
+ ],
+ "x-ms-correlation-request-id": [
+ "a983f14b-bb05-456d-b372-6c60b963e95f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095027Z:a983f14b-bb05-456d-b372-6c60b963e95f"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:27 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "43f5ff9f-30bc-4743-abb9-ea80f2c9482c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "0e36a3ca-0c7a-48d0-a43d-55b0b009ed86"
+ ],
+ "x-ms-client-request-id": [
+ "43f5ff9f-30bc-4743-abb9-ea80f2c9482c",
+ "43f5ff9f-30bc-4743-abb9-ea80f2c9482c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11956"
+ ],
+ "x-ms-correlation-request-id": [
+ "0e36a3ca-0c7a-48d0-a43d-55b0b009ed86"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095027Z:0e36a3ca-0c7a-48d0-a43d-55b0b009ed86"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:27 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "243645db-aa2a-4b84-b0c6-3ef079c0e305"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "69fe2da1-7fb2-49b9-b23e-c58808da2a4f"
+ ],
+ "x-ms-client-request-id": [
+ "243645db-aa2a-4b84-b0c6-3ef079c0e305",
+ "243645db-aa2a-4b84-b0c6-3ef079c0e305"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11955"
+ ],
+ "x-ms-correlation-request-id": [
+ "69fe2da1-7fb2-49b9-b23e-c58808da2a4f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095028Z:69fe2da1-7fb2-49b9-b23e-c58808da2a4f"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:28 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "33b5d2bc-7dd2-4633-92f0-e81a6d5f2046"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "0bf7250b-b20b-4e74-a69c-2193194e20f0"
+ ],
+ "x-ms-client-request-id": [
+ "33b5d2bc-7dd2-4633-92f0-e81a6d5f2046",
+ "33b5d2bc-7dd2-4633-92f0-e81a6d5f2046"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11954"
+ ],
+ "x-ms-correlation-request-id": [
+ "0bf7250b-b20b-4e74-a69c-2193194e20f0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095028Z:0bf7250b-b20b-4e74-a69c-2193194e20f0"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:28 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7586c8f3-5581-4fa4-895e-821eb6ba76c5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "5fcabc9d-5ffa-4e34-a06c-b8e0d68d1460"
+ ],
+ "x-ms-client-request-id": [
+ "7586c8f3-5581-4fa4-895e-821eb6ba76c5",
+ "7586c8f3-5581-4fa4-895e-821eb6ba76c5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11953"
+ ],
+ "x-ms-correlation-request-id": [
+ "5fcabc9d-5ffa-4e34-a06c-b8e0d68d1460"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095028Z:5fcabc9d-5ffa-4e34-a06c-b8e0d68d1460"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:28 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fdd2fe2a-a5d6-4adb-8363-57f7ae5c718b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "7994b1f7-307f-4aa4-ab8b-f8465a09c82b"
+ ],
+ "x-ms-client-request-id": [
+ "fdd2fe2a-a5d6-4adb-8363-57f7ae5c718b",
+ "fdd2fe2a-a5d6-4adb-8363-57f7ae5c718b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11952"
+ ],
+ "x-ms-correlation-request-id": [
+ "7994b1f7-307f-4aa4-ab8b-f8465a09c82b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095028Z:7994b1f7-307f-4aa4-ab8b-f8465a09c82b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:28 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "aa7a83c2-c4ee-42fd-8be9-3107d2a0dadb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "da55a7e0-c902-4e00-ab74-cc7e80959f19"
+ ],
+ "x-ms-client-request-id": [
+ "aa7a83c2-c4ee-42fd-8be9-3107d2a0dadb",
+ "aa7a83c2-c4ee-42fd-8be9-3107d2a0dadb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11951"
+ ],
+ "x-ms-correlation-request-id": [
+ "da55a7e0-c902-4e00-ab74-cc7e80959f19"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095029Z:da55a7e0-c902-4e00-ab74-cc7e80959f19"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:28 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b6f1938b-fb22-4628-8bad-ef8e35f75053"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "deed2139-3f19-4feb-9d7c-cbbf4d7191cf"
+ ],
+ "x-ms-client-request-id": [
+ "b6f1938b-fb22-4628-8bad-ef8e35f75053",
+ "b6f1938b-fb22-4628-8bad-ef8e35f75053"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11950"
+ ],
+ "x-ms-correlation-request-id": [
+ "deed2139-3f19-4feb-9d7c-cbbf4d7191cf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095029Z:deed2139-3f19-4feb-9d7c-cbbf4d7191cf"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:29 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "28a602b5-2a7b-428c-8d89-2eedbf7de026"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "5a755ccc-a713-4302-b08b-67728af7d41e"
+ ],
+ "x-ms-client-request-id": [
+ "28a602b5-2a7b-428c-8d89-2eedbf7de026",
+ "28a602b5-2a7b-428c-8d89-2eedbf7de026"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11949"
+ ],
+ "x-ms-correlation-request-id": [
+ "5a755ccc-a713-4302-b08b-67728af7d41e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095029Z:5a755ccc-a713-4302-b08b-67728af7d41e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:29 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/424d6f7b-5198-4e74-b386-903e8a7d693a?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzQyNGQ2ZjdiLTUxOTgtNGU3NC1iMzg2LTkwM2U4YTdkNjkzYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2e0701d5-cf39-42db-9b95-aa8a1bf2b329"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "bc350a8f-aea9-4326-9054-fa6f2191e233"
+ ],
+ "x-ms-client-request-id": [
+ "2e0701d5-cf39-42db-9b95-aa8a1bf2b329",
+ "2e0701d5-cf39-42db-9b95-aa8a1bf2b329"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11948"
+ ],
+ "x-ms-correlation-request-id": [
+ "bc350a8f-aea9-4326-9054-fa6f2191e233"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095029Z:bc350a8f-aea9-4326-9054-fa6f2191e233"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:29 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGlvbkNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZScmYXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7f911d07-af99-4076-9560-ea589a614584"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "a73abbf6-30d6-4185-8ced-e5472e118490"
+ ],
+ "x-ms-client-request-id": [
+ "7f911d07-af99-4076-9560-ea589a614584",
+ "7f911d07-af99-4076-9560-ea589a614584"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11947"
+ ],
+ "x-ms-correlation-request-id": [
+ "a73abbf6-30d6-4185-8ced-e5472e118490"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095030Z:a73abbf6-30d6-4185-8ced-e5472e118490"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:29 GMT"
+ ],
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0YWJsZUNvbnRhaW5lcnM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZScmYXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c6d809e0-83bf-4142-a3e3-54b8af96257a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "b96654bf-23ac-4a7e-8035-c18481430be3"
+ ],
+ "x-ms-client-request-id": [
+ "c6d809e0-83bf-4142-a3e3-54b8af96257a",
+ "c6d809e0-83bf-4142-a3e3-54b8af96257a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11946"
+ ],
+ "x-ms-correlation-request-id": [
+ "b96654bf-23ac-4a7e-8035-c18481430be3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095030Z:b96654bf-23ac-4a7e-8035-c18481430be3"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:30 GMT"
+ ],
+ "Content-Length": [
+ "7142"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;ClassicStorage;iaasvm.existing;iaasextstore2\",\r\n \"name\": \"StorageContainer;ClassicStorage;iaasvm.existing;iaasextstore2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasextstore2\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.ClassicStorage/storageAccounts/iaasextstore2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;ClassicStorage;riteshcRG;riteshcrg7070\",\r\n \"name\": \"StorageContainer;ClassicStorage;riteshcRG;riteshcrg7070\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"riteshcrg7070\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/riteshcRG/providers/Microsoft.ClassicStorage/storageAccounts/riteshcrg7070\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.encryptedvm;iaasvmencryptedvmdiag170\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.encryptedvm;iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmencryptedvmdiag170\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.existing;iaasextstore1\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.existing;iaasextstore1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasextstore1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;iaasvm.new;iaasvmnewdiag1\",\r\n \"name\": \"StorageContainer;Storage;iaasvm.new;iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmnewdiag1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;IaasVMNavigationTest-RG;iaasvmnavigationstore\",\r\n \"name\": \"StorageContainer;Storage;IaasVMNavigationTest-RG;iaasvmnavigationstore\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"iaasvmnavigationstore\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/iaasvmnavigationstore\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pscloudtestrg;pscloudtestrgdiag\",\r\n \"name\": \"StorageContainer;Storage;pscloudtestrg;pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pscloudtestrgdiag\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstesttargetsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstesttargetsa8895\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstesttargetsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;pstestrg8895;pstesttargetsa8896\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstesttargetsa8896\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers\",\r\n \"properties\": {\r\n \"friendlyName\": \"pstesttargetsa8896\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"protectableContainerType\": \"StorageContainer\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\"\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"containerType\": \"StorageContainer\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"resourceGroup\": \"pstestrg8895\",\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\"\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9f5a8e16-841d-4be4-9591-e722f459fc48"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "354"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "31ddd41e-1a27-4803-8570-482c81ca6528"
+ ],
+ "x-ms-client-request-id": [
+ "9f5a8e16-841d-4be4-9591-e722f459fc48",
+ "9f5a8e16-841d-4be4-9591-e722f459fc48"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "31ddd41e-1a27-4803-8570-482c81ca6528"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095031Z:31ddd41e-1a27-4803-8570-482c81ca6528"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:31 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0c20b91d-f27a-4932-93f1-46e665628fb0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "968b83f9-1f11-4040-ba82-e2b2dd8d8be4"
+ ],
+ "x-ms-client-request-id": [
+ "0c20b91d-f27a-4932-93f1-46e665628fb0",
+ "0c20b91d-f27a-4932-93f1-46e665628fb0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11945"
+ ],
+ "x-ms-correlation-request-id": [
+ "968b83f9-1f11-4040-ba82-e2b2dd8d8be4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095031Z:968b83f9-1f11-4040-ba82-e2b2dd8d8be4"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:31 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "00791b4b-4829-411d-9843-40a0611a9ea1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f740bcf0-5142-42de-a1df-92dc0ca3ea5f"
+ ],
+ "x-ms-client-request-id": [
+ "00791b4b-4829-411d-9843-40a0611a9ea1",
+ "00791b4b-4829-411d-9843-40a0611a9ea1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11944"
+ ],
+ "x-ms-correlation-request-id": [
+ "f740bcf0-5142-42de-a1df-92dc0ca3ea5f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095031Z:f740bcf0-5142-42de-a1df-92dc0ca3ea5f"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:31 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b8295fac-b140-46e7-9595-9f1c1f97729e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "cf34fd91-7991-4cff-b521-9eb4a1da0646"
+ ],
+ "x-ms-client-request-id": [
+ "b8295fac-b140-46e7-9595-9f1c1f97729e",
+ "b8295fac-b140-46e7-9595-9f1c1f97729e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11943"
+ ],
+ "x-ms-correlation-request-id": [
+ "cf34fd91-7991-4cff-b521-9eb4a1da0646"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095031Z:cf34fd91-7991-4cff-b521-9eb4a1da0646"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:31 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7079905b-60a2-413c-9df2-ea9d7c37b112"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "47f8765b-b59a-47a5-84a3-cd981ef9a0e4"
+ ],
+ "x-ms-client-request-id": [
+ "7079905b-60a2-413c-9df2-ea9d7c37b112",
+ "7079905b-60a2-413c-9df2-ea9d7c37b112"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11942"
+ ],
+ "x-ms-correlation-request-id": [
+ "47f8765b-b59a-47a5-84a3-cd981ef9a0e4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095032Z:47f8765b-b59a-47a5-84a3-cd981ef9a0e4"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:32 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "318afd1d-3375-40ef-b5c6-127934d84751"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "343dd551-2a51-4131-b3ad-bb8a0d060de6"
+ ],
+ "x-ms-client-request-id": [
+ "318afd1d-3375-40ef-b5c6-127934d84751",
+ "318afd1d-3375-40ef-b5c6-127934d84751"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11941"
+ ],
+ "x-ms-correlation-request-id": [
+ "343dd551-2a51-4131-b3ad-bb8a0d060de6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095032Z:343dd551-2a51-4131-b3ad-bb8a0d060de6"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:32 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "63e12191-0d83-4eea-b6dd-7f9295378013"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "3d3181b2-ba44-4d37-be27-d5fa4ee4bd75"
+ ],
+ "x-ms-client-request-id": [
+ "63e12191-0d83-4eea-b6dd-7f9295378013",
+ "63e12191-0d83-4eea-b6dd-7f9295378013"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11940"
+ ],
+ "x-ms-correlation-request-id": [
+ "3d3181b2-ba44-4d37-be27-d5fa4ee4bd75"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095032Z:3d3181b2-ba44-4d37-be27-d5fa4ee4bd75"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:32 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8dacb21d-9aec-4790-828a-cdabc966ed3c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "27a244ba-54df-496b-abd6-ee05beeb5ec5"
+ ],
+ "x-ms-client-request-id": [
+ "8dacb21d-9aec-4790-828a-cdabc966ed3c",
+ "8dacb21d-9aec-4790-828a-cdabc966ed3c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11939"
+ ],
+ "x-ms-correlation-request-id": [
+ "27a244ba-54df-496b-abd6-ee05beeb5ec5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095032Z:27a244ba-54df-496b-abd6-ee05beeb5ec5"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:32 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "46bc4684-17c2-43a7-ae52-698309fea819"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "d182e3c3-6926-4d3f-ad7f-c16e3a454d38"
+ ],
+ "x-ms-client-request-id": [
+ "46bc4684-17c2-43a7-ae52-698309fea819",
+ "46bc4684-17c2-43a7-ae52-698309fea819"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11938"
+ ],
+ "x-ms-correlation-request-id": [
+ "d182e3c3-6926-4d3f-ad7f-c16e3a454d38"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095033Z:d182e3c3-6926-4d3f-ad7f-c16e3a454d38"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:32 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "de47a1ac-29fa-408c-9ee6-51cdde366514"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "5e36eb1c-4285-4283-94d0-5709e7030483"
+ ],
+ "x-ms-client-request-id": [
+ "de47a1ac-29fa-408c-9ee6-51cdde366514",
+ "de47a1ac-29fa-408c-9ee6-51cdde366514"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11937"
+ ],
+ "x-ms-correlation-request-id": [
+ "5e36eb1c-4285-4283-94d0-5709e7030483"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095033Z:5e36eb1c-4285-4283-94d0-5709e7030483"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:33 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cf535cde-b8c7-4171-b6b1-9dad3b570d83"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e36c7b46-8204-4c3e-a250-69c05d11273a"
+ ],
+ "x-ms-client-request-id": [
+ "cf535cde-b8c7-4171-b6b1-9dad3b570d83",
+ "cf535cde-b8c7-4171-b6b1-9dad3b570d83"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11936"
+ ],
+ "x-ms-correlation-request-id": [
+ "e36c7b46-8204-4c3e-a250-69c05d11273a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095033Z:e36c7b46-8204-4c3e-a250-69c05d11273a"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:33 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6651bc07-ca37-470d-aadd-5ed0274a85f8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "cc47282f-abb5-4092-904b-740533c0430c"
+ ],
+ "x-ms-client-request-id": [
+ "6651bc07-ca37-470d-aadd-5ed0274a85f8",
+ "6651bc07-ca37-470d-aadd-5ed0274a85f8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11935"
+ ],
+ "x-ms-correlation-request-id": [
+ "cc47282f-abb5-4092-904b-740533c0430c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095033Z:cc47282f-abb5-4092-904b-740533c0430c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:33 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "74cdce35-2753-457a-b88b-f94a2d780463"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "6fd1ca8a-43a4-4c56-8894-0065486ac8ee"
+ ],
+ "x-ms-client-request-id": [
+ "74cdce35-2753-457a-b88b-f94a2d780463",
+ "74cdce35-2753-457a-b88b-f94a2d780463"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11934"
+ ],
+ "x-ms-correlation-request-id": [
+ "6fd1ca8a-43a4-4c56-8894-0065486ac8ee"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095033Z:6fd1ca8a-43a4-4c56-8894-0065486ac8ee"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:33 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "45409aa1-0ff5-4aec-83ca-dd9d226bf9a8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f2f927fa-dbaa-4e10-ad7d-b26696f8ff84"
+ ],
+ "x-ms-client-request-id": [
+ "45409aa1-0ff5-4aec-83ca-dd9d226bf9a8",
+ "45409aa1-0ff5-4aec-83ca-dd9d226bf9a8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11933"
+ ],
+ "x-ms-correlation-request-id": [
+ "f2f927fa-dbaa-4e10-ad7d-b26696f8ff84"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095034Z:f2f927fa-dbaa-4e10-ad7d-b26696f8ff84"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:33 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "96754671-09fc-4930-b77a-734285c31021"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "ebb586ce-167c-4811-ae95-a08eef3bfce1"
+ ],
+ "x-ms-client-request-id": [
+ "96754671-09fc-4930-b77a-734285c31021",
+ "96754671-09fc-4930-b77a-734285c31021"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11932"
+ ],
+ "x-ms-correlation-request-id": [
+ "ebb586ce-167c-4811-ae95-a08eef3bfce1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095034Z:ebb586ce-167c-4811-ae95-a08eef3bfce1"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:34 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c911963e-36ae-4cd5-84fd-b726adf62fc9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "952df0d1-fb17-46bd-bfc6-381e00a44bc7"
+ ],
+ "x-ms-client-request-id": [
+ "c911963e-36ae-4cd5-84fd-b726adf62fc9",
+ "c911963e-36ae-4cd5-84fd-b726adf62fc9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11931"
+ ],
+ "x-ms-correlation-request-id": [
+ "952df0d1-fb17-46bd-bfc6-381e00a44bc7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095034Z:952df0d1-fb17-46bd-bfc6-381e00a44bc7"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:34 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "86e4ec9c-9bb0-4b50-8e7d-8c0b3832b78d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "4b75b718-1a16-42eb-9665-d2afd467cb7f"
+ ],
+ "x-ms-client-request-id": [
+ "86e4ec9c-9bb0-4b50-8e7d-8c0b3832b78d",
+ "86e4ec9c-9bb0-4b50-8e7d-8c0b3832b78d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11930"
+ ],
+ "x-ms-correlation-request-id": [
+ "4b75b718-1a16-42eb-9665-d2afd467cb7f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095034Z:4b75b718-1a16-42eb-9665-d2afd467cb7f"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:34 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "38dfd8e3-cb9f-4220-88a8-4e2c62808857"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "87ede9d2-e4f7-4cb3-a38c-58642e8b8c84"
+ ],
+ "x-ms-client-request-id": [
+ "38dfd8e3-cb9f-4220-88a8-4e2c62808857",
+ "38dfd8e3-cb9f-4220-88a8-4e2c62808857"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11929"
+ ],
+ "x-ms-correlation-request-id": [
+ "87ede9d2-e4f7-4cb3-a38c-58642e8b8c84"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095034Z:87ede9d2-e4f7-4cb3-a38c-58642e8b8c84"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:34 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bb935dd1-b716-4c9f-a52b-18d18b544031"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "6224fad6-03a9-41da-8313-2d6f9c585174"
+ ],
+ "x-ms-client-request-id": [
+ "bb935dd1-b716-4c9f-a52b-18d18b544031",
+ "bb935dd1-b716-4c9f-a52b-18d18b544031"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11928"
+ ],
+ "x-ms-correlation-request-id": [
+ "6224fad6-03a9-41da-8313-2d6f9c585174"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095035Z:6224fad6-03a9-41da-8313-2d6f9c585174"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:34 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "77f5367f-eab4-4337-931d-7cb1a3312978"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "45054a3f-4d9d-43bb-a7d1-a0d9e6f4971a"
+ ],
+ "x-ms-client-request-id": [
+ "77f5367f-eab4-4337-931d-7cb1a3312978",
+ "77f5367f-eab4-4337-931d-7cb1a3312978"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11927"
+ ],
+ "x-ms-correlation-request-id": [
+ "45054a3f-4d9d-43bb-a7d1-a0d9e6f4971a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095035Z:45054a3f-4d9d-43bb-a7d1-a0d9e6f4971a"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:35 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "85bfa811-c37e-4777-ad9e-eda95aad2f93"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "5216454f-ec38-45c4-a79d-be6349ed61e0"
+ ],
+ "x-ms-client-request-id": [
+ "85bfa811-c37e-4777-ad9e-eda95aad2f93",
+ "85bfa811-c37e-4777-ad9e-eda95aad2f93"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11926"
+ ],
+ "x-ms-correlation-request-id": [
+ "5216454f-ec38-45c4-a79d-be6349ed61e0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095035Z:5216454f-ec38-45c4-a79d-be6349ed61e0"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:35 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "43fdcfee-a372-4030-9f37-3700dee5da60"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "69aa5593-944e-4aef-a581-3feb7e9d48cc"
+ ],
+ "x-ms-client-request-id": [
+ "43fdcfee-a372-4030-9f37-3700dee5da60",
+ "43fdcfee-a372-4030-9f37-3700dee5da60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11925"
+ ],
+ "x-ms-correlation-request-id": [
+ "69aa5593-944e-4aef-a581-3feb7e9d48cc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095035Z:69aa5593-944e-4aef-a581-3feb7e9d48cc"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:35 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a7b64cd4-458b-4862-9f82-97f929a172c4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "932bf39b-c80d-423d-82ec-bd20508b2ee6"
+ ],
+ "x-ms-client-request-id": [
+ "a7b64cd4-458b-4862-9f82-97f929a172c4",
+ "a7b64cd4-458b-4862-9f82-97f929a172c4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11924"
+ ],
+ "x-ms-correlation-request-id": [
+ "932bf39b-c80d-423d-82ec-bd20508b2ee6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095036Z:932bf39b-c80d-423d-82ec-bd20508b2ee6"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:35 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "48e59180-ed3f-47a7-ba18-e72e879e28bb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "a0a6814a-c34a-4fd0-9b42-09fd5ab60263"
+ ],
+ "x-ms-client-request-id": [
+ "48e59180-ed3f-47a7-ba18-e72e879e28bb",
+ "48e59180-ed3f-47a7-ba18-e72e879e28bb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11923"
+ ],
+ "x-ms-correlation-request-id": [
+ "a0a6814a-c34a-4fd0-9b42-09fd5ab60263"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095036Z:a0a6814a-c34a-4fd0-9b42-09fd5ab60263"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:35 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "28f3eb76-77ae-4111-9f44-14eb648813f5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "4397b915-0be8-457c-9ca3-1cad7108adc1"
+ ],
+ "x-ms-client-request-id": [
+ "28f3eb76-77ae-4111-9f44-14eb648813f5",
+ "28f3eb76-77ae-4111-9f44-14eb648813f5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11922"
+ ],
+ "x-ms-correlation-request-id": [
+ "4397b915-0be8-457c-9ca3-1cad7108adc1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095036Z:4397b915-0be8-457c-9ca3-1cad7108adc1"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:36 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "48e23ab4-8d2a-454d-ba53-28d7fd92e1bd"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "9af61e6e-8e0c-4c3b-9bc9-91dd925fcd5d"
+ ],
+ "x-ms-client-request-id": [
+ "48e23ab4-8d2a-454d-ba53-28d7fd92e1bd",
+ "48e23ab4-8d2a-454d-ba53-28d7fd92e1bd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11921"
+ ],
+ "x-ms-correlation-request-id": [
+ "9af61e6e-8e0c-4c3b-9bc9-91dd925fcd5d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095036Z:9af61e6e-8e0c-4c3b-9bc9-91dd925fcd5d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:36 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7bf795a3-8ab0-405c-b766-5478e3c913c4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "162c03c9-cf38-4f8b-b602-4daf8c781aaf"
+ ],
+ "x-ms-client-request-id": [
+ "7bf795a3-8ab0-405c-b766-5478e3c913c4",
+ "7bf795a3-8ab0-405c-b766-5478e3c913c4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11920"
+ ],
+ "x-ms-correlation-request-id": [
+ "162c03c9-cf38-4f8b-b602-4daf8c781aaf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095036Z:162c03c9-cf38-4f8b-b602-4daf8c781aaf"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:36 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ce83c5d3-efd8-4025-9a43-baae7cecccea"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e286d569-5d3e-4098-9c1a-4e53991ead70"
+ ],
+ "x-ms-client-request-id": [
+ "ce83c5d3-efd8-4025-9a43-baae7cecccea",
+ "ce83c5d3-efd8-4025-9a43-baae7cecccea"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11919"
+ ],
+ "x-ms-correlation-request-id": [
+ "e286d569-5d3e-4098-9c1a-4e53991ead70"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095037Z:e286d569-5d3e-4098-9c1a-4e53991ead70"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:36 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b9cb4ad9-bba7-4b58-afb7-1de6401248c4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "7f956639-f382-427e-b332-ddc116c06c69"
+ ],
+ "x-ms-client-request-id": [
+ "b9cb4ad9-bba7-4b58-afb7-1de6401248c4",
+ "b9cb4ad9-bba7-4b58-afb7-1de6401248c4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11918"
+ ],
+ "x-ms-correlation-request-id": [
+ "7f956639-f382-427e-b332-ddc116c06c69"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095037Z:7f956639-f382-427e-b332-ddc116c06c69"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:37 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "54206391-c313-4231-a70d-dd0d175eb496"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "7933d61b-f5a0-44e2-b7c7-bf1d5d08cf04"
+ ],
+ "x-ms-client-request-id": [
+ "54206391-c313-4231-a70d-dd0d175eb496",
+ "54206391-c313-4231-a70d-dd0d175eb496"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11917"
+ ],
+ "x-ms-correlation-request-id": [
+ "7933d61b-f5a0-44e2-b7c7-bf1d5d08cf04"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095037Z:7933d61b-f5a0-44e2-b7c7-bf1d5d08cf04"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:37 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ca0e9ee5-4054-460b-9797-3561c64f8d4c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "de5da460-41e3-4561-bb25-7da4376f49f2"
+ ],
+ "x-ms-client-request-id": [
+ "ca0e9ee5-4054-460b-9797-3561c64f8d4c",
+ "ca0e9ee5-4054-460b-9797-3561c64f8d4c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11916"
+ ],
+ "x-ms-correlation-request-id": [
+ "de5da460-41e3-4561-bb25-7da4376f49f2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095037Z:de5da460-41e3-4561-bb25-7da4376f49f2"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:37 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c497763f-8280-4069-86d6-7c0977235a70"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "0e9cbf42-09e3-4766-9e92-8afb4aacbc39"
+ ],
+ "x-ms-client-request-id": [
+ "c497763f-8280-4069-86d6-7c0977235a70",
+ "c497763f-8280-4069-86d6-7c0977235a70"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11915"
+ ],
+ "x-ms-correlation-request-id": [
+ "0e9cbf42-09e3-4766-9e92-8afb4aacbc39"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095038Z:0e9cbf42-09e3-4766-9e92-8afb4aacbc39"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:37 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c2ffedc7-8252-497e-b851-2e0cc1615c22"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f5cd9480-404c-4901-9efc-4617394e33b8"
+ ],
+ "x-ms-client-request-id": [
+ "c2ffedc7-8252-497e-b851-2e0cc1615c22",
+ "c2ffedc7-8252-497e-b851-2e0cc1615c22"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11914"
+ ],
+ "x-ms-correlation-request-id": [
+ "f5cd9480-404c-4901-9efc-4617394e33b8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095038Z:f5cd9480-404c-4901-9efc-4617394e33b8"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:37 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3d4b03dd-4661-48dc-adfd-af6d15209cc0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "0f4ddf57-3195-4968-836c-f5de4715bee1"
+ ],
+ "x-ms-client-request-id": [
+ "3d4b03dd-4661-48dc-adfd-af6d15209cc0",
+ "3d4b03dd-4661-48dc-adfd-af6d15209cc0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11913"
+ ],
+ "x-ms-correlation-request-id": [
+ "0f4ddf57-3195-4968-836c-f5de4715bee1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095038Z:0f4ddf57-3195-4968-836c-f5de4715bee1"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:38 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7ddf16d0-77e1-4f05-baf2-3825f5d086df"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "d3580337-2258-4e30-9937-1b70bc049137"
+ ],
+ "x-ms-client-request-id": [
+ "7ddf16d0-77e1-4f05-baf2-3825f5d086df",
+ "7ddf16d0-77e1-4f05-baf2-3825f5d086df"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11912"
+ ],
+ "x-ms-correlation-request-id": [
+ "d3580337-2258-4e30-9937-1b70bc049137"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095038Z:d3580337-2258-4e30-9937-1b70bc049137"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:38 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fe48080a-bb3d-4e6e-be5d-240c5031f9e3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "cd3b273c-acc6-4510-be62-3df7f135b03e"
+ ],
+ "x-ms-client-request-id": [
+ "fe48080a-bb3d-4e6e-be5d-240c5031f9e3",
+ "fe48080a-bb3d-4e6e-be5d-240c5031f9e3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11911"
+ ],
+ "x-ms-correlation-request-id": [
+ "cd3b273c-acc6-4510-be62-3df7f135b03e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095038Z:cd3b273c-acc6-4510-be62-3df7f135b03e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:38 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "97818752-539d-42d8-a4e7-b9f3aec1a536"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "556fc91d-a18e-41e5-8379-677c35853799"
+ ],
+ "x-ms-client-request-id": [
+ "97818752-539d-42d8-a4e7-b9f3aec1a536",
+ "97818752-539d-42d8-a4e7-b9f3aec1a536"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11910"
+ ],
+ "x-ms-correlation-request-id": [
+ "556fc91d-a18e-41e5-8379-677c35853799"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095039Z:556fc91d-a18e-41e5-8379-677c35853799"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:38 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "60d108a9-09f2-4a24-944f-1424bec391a3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "84e30096-9319-41c9-a2a0-59945c3561d0"
+ ],
+ "x-ms-client-request-id": [
+ "60d108a9-09f2-4a24-944f-1424bec391a3",
+ "60d108a9-09f2-4a24-944f-1424bec391a3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11909"
+ ],
+ "x-ms-correlation-request-id": [
+ "84e30096-9319-41c9-a2a0-59945c3561d0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095039Z:84e30096-9319-41c9-a2a0-59945c3561d0"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:39 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7a7739bc-ee16-418a-b460-bc22e9eff0eb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e5dead08-a560-4cc5-a5d5-b27a232c3691"
+ ],
+ "x-ms-client-request-id": [
+ "7a7739bc-ee16-418a-b460-bc22e9eff0eb",
+ "7a7739bc-ee16-418a-b460-bc22e9eff0eb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11908"
+ ],
+ "x-ms-correlation-request-id": [
+ "e5dead08-a560-4cc5-a5d5-b27a232c3691"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095039Z:e5dead08-a560-4cc5-a5d5-b27a232c3691"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:39 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d0b9f32b-ae21-45f7-9b93-edaba6a949f5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "79c8208f-d738-42e8-a0a6-721fe643ac66"
+ ],
+ "x-ms-client-request-id": [
+ "d0b9f32b-ae21-45f7-9b93-edaba6a949f5",
+ "d0b9f32b-ae21-45f7-9b93-edaba6a949f5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11907"
+ ],
+ "x-ms-correlation-request-id": [
+ "79c8208f-d738-42e8-a0a6-721fe643ac66"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095039Z:79c8208f-d738-42e8-a0a6-721fe643ac66"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:39 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "56a1a806-242f-4db0-9fa0-e265e208b527"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "7e6a4c56-3489-44c0-ab48-d9ea9250a3bf"
+ ],
+ "x-ms-client-request-id": [
+ "56a1a806-242f-4db0-9fa0-e265e208b527",
+ "56a1a806-242f-4db0-9fa0-e265e208b527"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11906"
+ ],
+ "x-ms-correlation-request-id": [
+ "7e6a4c56-3489-44c0-ab48-d9ea9250a3bf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095039Z:7e6a4c56-3489-44c0-ab48-d9ea9250a3bf"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:39 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1fd880d9-92ab-4d25-beb6-c2b189cd87f0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "d597053b-fbe4-493f-84fa-ab5535af32da"
+ ],
+ "x-ms-client-request-id": [
+ "1fd880d9-92ab-4d25-beb6-c2b189cd87f0",
+ "1fd880d9-92ab-4d25-beb6-c2b189cd87f0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11905"
+ ],
+ "x-ms-correlation-request-id": [
+ "d597053b-fbe4-493f-84fa-ab5535af32da"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095040Z:d597053b-fbe4-493f-84fa-ab5535af32da"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:39 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0e3d1829-f3c8-436e-bac8-e306a17ca659"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "2185e853-cab8-4dae-9bf1-363ce8c6a353"
+ ],
+ "x-ms-client-request-id": [
+ "0e3d1829-f3c8-436e-bac8-e306a17ca659",
+ "0e3d1829-f3c8-436e-bac8-e306a17ca659"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11904"
+ ],
+ "x-ms-correlation-request-id": [
+ "2185e853-cab8-4dae-9bf1-363ce8c6a353"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095040Z:2185e853-cab8-4dae-9bf1-363ce8c6a353"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:40 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f4c80778-d7a3-4a16-8a52-7b3473e4a17c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "4fa61157-b608-4dd2-9e6d-7ffb0560b1f2"
+ ],
+ "x-ms-client-request-id": [
+ "f4c80778-d7a3-4a16-8a52-7b3473e4a17c",
+ "f4c80778-d7a3-4a16-8a52-7b3473e4a17c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11903"
+ ],
+ "x-ms-correlation-request-id": [
+ "4fa61157-b608-4dd2-9e6d-7ffb0560b1f2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095040Z:4fa61157-b608-4dd2-9e6d-7ffb0560b1f2"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:40 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "419da8bd-b9e2-4477-89e8-045c676939f1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f77a19e0-b1ee-4b44-a728-716661b778ef"
+ ],
+ "x-ms-client-request-id": [
+ "419da8bd-b9e2-4477-89e8-045c676939f1",
+ "419da8bd-b9e2-4477-89e8-045c676939f1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11902"
+ ],
+ "x-ms-correlation-request-id": [
+ "f77a19e0-b1ee-4b44-a728-716661b778ef"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095040Z:f77a19e0-b1ee-4b44-a728-716661b778ef"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:40 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f64627d0-9bdc-4290-b430-fc1403a74ecd"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "99170e7f-b001-47f5-9c3a-fd9f3aecb450"
+ ],
+ "x-ms-client-request-id": [
+ "f64627d0-9bdc-4290-b430-fc1403a74ecd",
+ "f64627d0-9bdc-4290-b430-fc1403a74ecd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11901"
+ ],
+ "x-ms-correlation-request-id": [
+ "99170e7f-b001-47f5-9c3a-fd9f3aecb450"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095041Z:99170e7f-b001-47f5-9c3a-fd9f3aecb450"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:40 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bcc75a7c-ea6a-4f31-a355-47b9035612a3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "bfa7766c-988f-41f8-a058-d9e937d4ddfc"
+ ],
+ "x-ms-client-request-id": [
+ "bcc75a7c-ea6a-4f31-a355-47b9035612a3",
+ "bcc75a7c-ea6a-4f31-a355-47b9035612a3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11900"
+ ],
+ "x-ms-correlation-request-id": [
+ "bfa7766c-988f-41f8-a058-d9e937d4ddfc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095041Z:bfa7766c-988f-41f8-a058-d9e937d4ddfc"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:40 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "eae28d37-c497-4da3-bb38-b051acfc2fc8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "85d2ec28-13f3-42d3-b76d-14efc5448d6e"
+ ],
+ "x-ms-client-request-id": [
+ "eae28d37-c497-4da3-bb38-b051acfc2fc8",
+ "eae28d37-c497-4da3-bb38-b051acfc2fc8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11899"
+ ],
+ "x-ms-correlation-request-id": [
+ "85d2ec28-13f3-42d3-b76d-14efc5448d6e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095041Z:85d2ec28-13f3-42d3-b76d-14efc5448d6e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:41 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ebcacdb9-3cc1-43a7-a14e-10b2e88fb6e5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "d68e8de9-879b-4546-ac90-eb5aa90884c7"
+ ],
+ "x-ms-client-request-id": [
+ "ebcacdb9-3cc1-43a7-a14e-10b2e88fb6e5",
+ "ebcacdb9-3cc1-43a7-a14e-10b2e88fb6e5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11898"
+ ],
+ "x-ms-correlation-request-id": [
+ "d68e8de9-879b-4546-ac90-eb5aa90884c7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095041Z:d68e8de9-879b-4546-ac90-eb5aa90884c7"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:41 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d899e58d-9f42-47f5-88ee-3202193ec2d0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "7feba45f-7f2f-471e-bd2d-ede34d28a0b3"
+ ],
+ "x-ms-client-request-id": [
+ "d899e58d-9f42-47f5-88ee-3202193ec2d0",
+ "d899e58d-9f42-47f5-88ee-3202193ec2d0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11897"
+ ],
+ "x-ms-correlation-request-id": [
+ "7feba45f-7f2f-471e-bd2d-ede34d28a0b3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095041Z:7feba45f-7f2f-471e-bd2d-ede34d28a0b3"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:41 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4de3ffb8-cc24-458d-8856-aaa819555600"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "aa80aa8b-34a8-45a6-ae95-11eb704c6120"
+ ],
+ "x-ms-client-request-id": [
+ "4de3ffb8-cc24-458d-8856-aaa819555600",
+ "4de3ffb8-cc24-458d-8856-aaa819555600"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11896"
+ ],
+ "x-ms-correlation-request-id": [
+ "aa80aa8b-34a8-45a6-ae95-11eb704c6120"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095042Z:aa80aa8b-34a8-45a6-ae95-11eb704c6120"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:41 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8349b9bd-2b2c-4606-b6c0-e4fcf520eec1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "0bc03da9-b690-4094-9463-6371c4dad744"
+ ],
+ "x-ms-client-request-id": [
+ "8349b9bd-2b2c-4606-b6c0-e4fcf520eec1",
+ "8349b9bd-2b2c-4606-b6c0-e4fcf520eec1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11895"
+ ],
+ "x-ms-correlation-request-id": [
+ "0bc03da9-b690-4094-9463-6371c4dad744"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095042Z:0bc03da9-b690-4094-9463-6371c4dad744"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:42 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6420e3a1-5b3d-4dcf-861f-6dadaff46a49"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "17a123b6-0d27-46ad-b470-a6f87b6a862e"
+ ],
+ "x-ms-client-request-id": [
+ "6420e3a1-5b3d-4dcf-861f-6dadaff46a49",
+ "6420e3a1-5b3d-4dcf-861f-6dadaff46a49"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11894"
+ ],
+ "x-ms-correlation-request-id": [
+ "17a123b6-0d27-46ad-b470-a6f87b6a862e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095042Z:17a123b6-0d27-46ad-b470-a6f87b6a862e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:42 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "17990dbb-95ee-4870-9a49-a920c449c10c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "46ef52ef-b379-42d3-b072-7613132351fb"
+ ],
+ "x-ms-client-request-id": [
+ "17990dbb-95ee-4870-9a49-a920c449c10c",
+ "17990dbb-95ee-4870-9a49-a920c449c10c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11893"
+ ],
+ "x-ms-correlation-request-id": [
+ "46ef52ef-b379-42d3-b072-7613132351fb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095042Z:46ef52ef-b379-42d3-b072-7613132351fb"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:42 GMT"
+ ],
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{}",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "47737200-5ef3-44fb-a9a0-4038c0ff154e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "5c6607ac-2ff2-491d-a0c8-b248ca5e7af3"
+ ],
+ "x-ms-client-request-id": [
+ "47737200-5ef3-44fb-a9a0-4038c0ff154e",
+ "47737200-5ef3-44fb-a9a0-4038c0ff154e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11892"
+ ],
+ "x-ms-correlation-request-id": [
+ "5c6607ac-2ff2-491d-a0c8-b248ca5e7af3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095043Z:5c6607ac-2ff2-491d-a0c8-b248ca5e7af3"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:42 GMT"
+ ],
+ "Content-Length": [
+ "699"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"properties\": {\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"protectedItemCount\": 0,\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"registrationStatus\": \"Registered\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerType\": \"StorageContainer\",\r\n \"protectableObjectType\": \"StorageContainer\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/operationResults/fafc8b09-ce26-4112-84ab-e01f9179e819?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9vcGVyYXRpb25SZXN1bHRzL2ZhZmM4YjA5LWNlMjYtNDExMi04NGFiLWUwMWY5MTc5ZTgxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4c1e75a1-c94e-4fab-9a55-ef0965903a3d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "925cff8b-6b4c-4170-bec2-9a4e996dc51b"
+ ],
+ "x-ms-client-request-id": [
+ "4c1e75a1-c94e-4fab-9a55-ef0965903a3d",
+ "4c1e75a1-c94e-4fab-9a55-ef0965903a3d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11891"
+ ],
+ "x-ms-correlation-request-id": [
+ "925cff8b-6b4c-4170-bec2-9a4e996dc51b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095043Z:925cff8b-6b4c-4170-bec2-9a4e996dc51b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:43 GMT"
+ ],
+ "Content-Length": [
+ "699"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"name\": \"StorageContainer;Storage;pstestrg8895;pstestsa8895\",\r\n \"properties\": {\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"protectedItemCount\": 0,\r\n \"friendlyName\": \"pstestsa8895\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"registrationStatus\": \"Registered\",\r\n \"healthStatus\": \"Healthy\",\r\n \"containerType\": \"StorageContainer\",\r\n \"protectableObjectType\": \"StorageContainer\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895/inquire?$filter=workloadType%20eq%20'AzureFileShare'&api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9pbnF1aXJlPyRmaWx0ZXI9d29ya2xvYWRUeXBlJTIwZXElMjAnQXp1cmVGaWxlU2hhcmUnJmFwaS12ZXJzaW9uPTIwMTYtMTItMDE=",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6fca7101-b651-421e-8cde-63a33982a759"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;pstestrg8895;pstestsa8895/operationsStatus/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "917443f2-e34e-4a61-bf24-6f53aa88a9a7"
+ ],
+ "x-ms-client-request-id": [
+ "6fca7101-b651-421e-8cde-63a33982a759",
+ "6fca7101-b651-421e-8cde-63a33982a759"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-correlation-request-id": [
+ "917443f2-e34e-4a61-bf24-6f53aa88a9a7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095043Z:917443f2-e34e-4a61-bf24-6f53aa88a9a7"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:43 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzIxMGM2NTZiLTg3Y2UtNGEzMy1hOWM2LTgzYWY5YWVlYjY1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "517e3ac6-6841-4e16-a912-8fa4a7b5b233"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "527522f7-1e0d-4219-a776-85d95c20eff0"
+ ],
+ "x-ms-client-request-id": [
+ "517e3ac6-6841-4e16-a912-8fa4a7b5b233",
+ "517e3ac6-6841-4e16-a912-8fa4a7b5b233"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11890"
+ ],
+ "x-ms-correlation-request-id": [
+ "527522f7-1e0d-4219-a776-85d95c20eff0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095044Z:527522f7-1e0d-4219-a776-85d95c20eff0"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:43 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzIxMGM2NTZiLTg3Y2UtNGEzMy1hOWM2LTgzYWY5YWVlYjY1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1c07d868-c156-4092-b50a-2ff407308226"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "0cb670e3-e4da-4b73-a3f1-532e81f3818c"
+ ],
+ "x-ms-client-request-id": [
+ "1c07d868-c156-4092-b50a-2ff407308226",
+ "1c07d868-c156-4092-b50a-2ff407308226"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11889"
+ ],
+ "x-ms-correlation-request-id": [
+ "0cb670e3-e4da-4b73-a3f1-532e81f3818c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095044Z:0cb670e3-e4da-4b73-a3f1-532e81f3818c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:43 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzIxMGM2NTZiLTg3Y2UtNGEzMy1hOWM2LTgzYWY5YWVlYjY1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a877308a-1220-4a1a-8816-dc9b6c431bd3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "a8f5e4ad-6e44-417b-8f36-a7137944442c"
+ ],
+ "x-ms-client-request-id": [
+ "a877308a-1220-4a1a-8816-dc9b6c431bd3",
+ "a877308a-1220-4a1a-8816-dc9b6c431bd3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11888"
+ ],
+ "x-ms-correlation-request-id": [
+ "a8f5e4ad-6e44-417b-8f36-a7137944442c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095044Z:a8f5e4ad-6e44-417b-8f36-a7137944442c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:44 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzIxMGM2NTZiLTg3Y2UtNGEzMy1hOWM2LTgzYWY5YWVlYjY1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "329f7d0d-7684-4389-9e4a-3aca73cc923d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "95262205-898b-40ff-8058-b7d6954872f6"
+ ],
+ "x-ms-client-request-id": [
+ "329f7d0d-7684-4389-9e4a-3aca73cc923d",
+ "329f7d0d-7684-4389-9e4a-3aca73cc923d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11887"
+ ],
+ "x-ms-correlation-request-id": [
+ "95262205-898b-40ff-8058-b7d6954872f6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095044Z:95262205-898b-40ff-8058-b7d6954872f6"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:44 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzIxMGM2NTZiLTg3Y2UtNGEzMy1hOWM2LTgzYWY5YWVlYjY1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b55ede9c-e4b4-4a1e-bdb4-57bdce52689d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "09fee121-8281-4374-bf19-947be397ab50"
+ ],
+ "x-ms-client-request-id": [
+ "b55ede9c-e4b4-4a1e-bdb4-57bdce52689d",
+ "b55ede9c-e4b4-4a1e-bdb4-57bdce52689d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11886"
+ ],
+ "x-ms-correlation-request-id": [
+ "09fee121-8281-4374-bf19-947be397ab50"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095044Z:09fee121-8281-4374-bf19-947be397ab50"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:44 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzIxMGM2NTZiLTg3Y2UtNGEzMy1hOWM2LTgzYWY5YWVlYjY1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "01b96795-0ab5-4a48-8f04-ea19b7e7345d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f2b53dba-d19d-434e-8d8d-56db74a96a6d"
+ ],
+ "x-ms-client-request-id": [
+ "01b96795-0ab5-4a48-8f04-ea19b7e7345d",
+ "01b96795-0ab5-4a48-8f04-ea19b7e7345d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11885"
+ ],
+ "x-ms-correlation-request-id": [
+ "f2b53dba-d19d-434e-8d8d-56db74a96a6d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095045Z:f2b53dba-d19d-434e-8d8d-56db74a96a6d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:45 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzIxMGM2NTZiLTg3Y2UtNGEzMy1hOWM2LTgzYWY5YWVlYjY1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a859bb63-33d1-4dfb-84c5-ed4d209a22ad"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "91fa5f7b-6a10-4bb5-a5cb-3ce8bda26d10"
+ ],
+ "x-ms-client-request-id": [
+ "a859bb63-33d1-4dfb-84c5-ed4d209a22ad",
+ "a859bb63-33d1-4dfb-84c5-ed4d209a22ad"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11884"
+ ],
+ "x-ms-correlation-request-id": [
+ "91fa5f7b-6a10-4bb5-a5cb-3ce8bda26d10"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095045Z:91fa5f7b-6a10-4bb5-a5cb-3ce8bda26d10"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:45 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzIxMGM2NTZiLTg3Y2UtNGEzMy1hOWM2LTgzYWY5YWVlYjY1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d7cdf5de-8e1d-4319-b765-27440806b8bc"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "d15b1c7a-357f-4088-a8c1-bfe24671aaf8"
+ ],
+ "x-ms-client-request-id": [
+ "d7cdf5de-8e1d-4319-b765-27440806b8bc",
+ "d7cdf5de-8e1d-4319-b765-27440806b8bc"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11883"
+ ],
+ "x-ms-correlation-request-id": [
+ "d15b1c7a-357f-4088-a8c1-bfe24671aaf8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095045Z:d15b1c7a-357f-4088-a8c1-bfe24671aaf8"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:45 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzIxMGM2NTZiLTg3Y2UtNGEzMy1hOWM2LTgzYWY5YWVlYjY1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "05e093ce-febd-4489-91fb-0c50d48ba48d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "8ecde760-de33-4b82-9789-ec6f9a449efe"
+ ],
+ "x-ms-client-request-id": [
+ "05e093ce-febd-4489-91fb-0c50d48ba48d",
+ "05e093ce-febd-4489-91fb-0c50d48ba48d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11882"
+ ],
+ "x-ms-correlation-request-id": [
+ "8ecde760-de33-4b82-9789-ec6f9a449efe"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095046Z:8ecde760-de33-4b82-9789-ec6f9a449efe"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:46 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzIxMGM2NTZiLTg3Y2UtNGEzMy1hOWM2LTgzYWY5YWVlYjY1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e42217a1-af96-4435-bd92-fc1b80e97e3b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "963a87ea-ec76-46d3-8962-3b660d4ebfd4"
+ ],
+ "x-ms-client-request-id": [
+ "e42217a1-af96-4435-bd92-fc1b80e97e3b",
+ "e42217a1-af96-4435-bd92-fc1b80e97e3b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11881"
+ ],
+ "x-ms-correlation-request-id": [
+ "963a87ea-ec76-46d3-8962-3b660d4ebfd4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095046Z:963a87ea-ec76-46d3-8962-3b660d4ebfd4"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:46 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzIxMGM2NTZiLTg3Y2UtNGEzMy1hOWM2LTgzYWY5YWVlYjY1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7628db93-6146-4f99-9663-0e3efa4c97a9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "14d5c423-a73d-45a0-853e-c00f2c08ac0f"
+ ],
+ "x-ms-client-request-id": [
+ "7628db93-6146-4f99-9663-0e3efa4c97a9",
+ "7628db93-6146-4f99-9663-0e3efa4c97a9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11880"
+ ],
+ "x-ms-correlation-request-id": [
+ "14d5c423-a73d-45a0-853e-c00f2c08ac0f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095047Z:14d5c423-a73d-45a0-853e-c00f2c08ac0f"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:46 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzIxMGM2NTZiLTg3Y2UtNGEzMy1hOWM2LTgzYWY5YWVlYjY1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "12102ad4-8cc1-4576-bd6b-5950a9426a48"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "d10a7f36-de1c-4cdc-8ce1-812031f8d90e"
+ ],
+ "x-ms-client-request-id": [
+ "12102ad4-8cc1-4576-bd6b-5950a9426a48",
+ "12102ad4-8cc1-4576-bd6b-5950a9426a48"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11879"
+ ],
+ "x-ms-correlation-request-id": [
+ "d10a7f36-de1c-4cdc-8ce1-812031f8d90e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095047Z:d10a7f36-de1c-4cdc-8ce1-812031f8d90e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:47 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzIxMGM2NTZiLTg3Y2UtNGEzMy1hOWM2LTgzYWY5YWVlYjY1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ceab411b-4a22-45df-90b6-fa3aeb47f708"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "ec8372f7-dc4b-49aa-a2d1-906bfae1343f"
+ ],
+ "x-ms-client-request-id": [
+ "ceab411b-4a22-45df-90b6-fa3aeb47f708",
+ "ceab411b-4a22-45df-90b6-fa3aeb47f708"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11878"
+ ],
+ "x-ms-correlation-request-id": [
+ "ec8372f7-dc4b-49aa-a2d1-906bfae1343f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095047Z:ec8372f7-dc4b-49aa-a2d1-906bfae1343f"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:47 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzIxMGM2NTZiLTg3Y2UtNGEzMy1hOWM2LTgzYWY5YWVlYjY1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "37419acb-289e-4b95-bbf8-7ec348a3ff1f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "bc2e6078-6f71-4743-8e0b-88cd4236fbaf"
+ ],
+ "x-ms-client-request-id": [
+ "37419acb-289e-4b95-bbf8-7ec348a3ff1f",
+ "37419acb-289e-4b95-bbf8-7ec348a3ff1f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11877"
+ ],
+ "x-ms-correlation-request-id": [
+ "bc2e6078-6f71-4743-8e0b-88cd4236fbaf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095047Z:bc2e6078-6f71-4743-8e0b-88cd4236fbaf"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:47 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzIxMGM2NTZiLTg3Y2UtNGEzMy1hOWM2LTgzYWY5YWVlYjY1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fbde784d-66a9-491e-aa53-7417a42a763c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "dac9e196-ed41-49ac-be46-fe31cc883040"
+ ],
+ "x-ms-client-request-id": [
+ "fbde784d-66a9-491e-aa53-7417a42a763c",
+ "fbde784d-66a9-491e-aa53-7417a42a763c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11876"
+ ],
+ "x-ms-correlation-request-id": [
+ "dac9e196-ed41-49ac-be46-fe31cc883040"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095048Z:dac9e196-ed41-49ac-be46-fe31cc883040"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:47 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzIxMGM2NTZiLTg3Y2UtNGEzMy1hOWM2LTgzYWY5YWVlYjY1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a4a7f23b-7ea5-4b74-8fa1-d1f98d42bcf7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "5f4bd487-274d-49bc-8e56-9ba6eb81461d"
+ ],
+ "x-ms-client-request-id": [
+ "a4a7f23b-7ea5-4b74-8fa1-d1f98d42bcf7",
+ "a4a7f23b-7ea5-4b74-8fa1-d1f98d42bcf7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11875"
+ ],
+ "x-ms-correlation-request-id": [
+ "5f4bd487-274d-49bc-8e56-9ba6eb81461d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095048Z:5f4bd487-274d-49bc-8e56-9ba6eb81461d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:47 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzIxMGM2NTZiLTg3Y2UtNGEzMy1hOWM2LTgzYWY5YWVlYjY1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4182ef9f-81cd-4f80-9562-bdcbe6f1cd4b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "1f11ba6c-1398-43eb-8416-23d726d988fa"
+ ],
+ "x-ms-client-request-id": [
+ "4182ef9f-81cd-4f80-9562-bdcbe6f1cd4b",
+ "4182ef9f-81cd-4f80-9562-bdcbe6f1cd4b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11874"
+ ],
+ "x-ms-correlation-request-id": [
+ "1f11ba6c-1398-43eb-8416-23d726d988fa"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095048Z:1f11ba6c-1398-43eb-8416-23d726d988fa"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:48 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzIxMGM2NTZiLTg3Y2UtNGEzMy1hOWM2LTgzYWY5YWVlYjY1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "994b2d1d-1e22-4968-9c34-4f388c74e231"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e174386c-7785-4863-8d84-a8660e39f7c0"
+ ],
+ "x-ms-client-request-id": [
+ "994b2d1d-1e22-4968-9c34-4f388c74e231",
+ "994b2d1d-1e22-4968-9c34-4f388c74e231"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11873"
+ ],
+ "x-ms-correlation-request-id": [
+ "e174386c-7785-4863-8d84-a8660e39f7c0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095048Z:e174386c-7785-4863-8d84-a8660e39f7c0"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:48 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzIxMGM2NTZiLTg3Y2UtNGEzMy1hOWM2LTgzYWY5YWVlYjY1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5bdea969-db70-441c-af96-8af7717bcbf4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "a36a352f-8960-49d7-bb88-23b014751dbc"
+ ],
+ "x-ms-client-request-id": [
+ "5bdea969-db70-441c-af96-8af7717bcbf4",
+ "5bdea969-db70-441c-af96-8af7717bcbf4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11872"
+ ],
+ "x-ms-correlation-request-id": [
+ "a36a352f-8960-49d7-bb88-23b014751dbc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095048Z:a36a352f-8960-49d7-bb88-23b014751dbc"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:48 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzIxMGM2NTZiLTg3Y2UtNGEzMy1hOWM2LTgzYWY5YWVlYjY1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "16220d2e-0c02-41c9-bd1f-275fba1fb609"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f5107569-d581-4553-bae6-5ea78e28a2c0"
+ ],
+ "x-ms-client-request-id": [
+ "16220d2e-0c02-41c9-bd1f-275fba1fb609",
+ "16220d2e-0c02-41c9-bd1f-275fba1fb609"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11871"
+ ],
+ "x-ms-correlation-request-id": [
+ "f5107569-d581-4553-bae6-5ea78e28a2c0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095049Z:f5107569-d581-4553-bae6-5ea78e28a2c0"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:48 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzIxMGM2NTZiLTg3Y2UtNGEzMy1hOWM2LTgzYWY5YWVlYjY1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "13952c54-67dc-4a21-8ee3-52bd48d30372"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "2093ae45-612a-4326-877f-8eee18ee81fd"
+ ],
+ "x-ms-client-request-id": [
+ "13952c54-67dc-4a21-8ee3-52bd48d30372",
+ "13952c54-67dc-4a21-8ee3-52bd48d30372"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11870"
+ ],
+ "x-ms-correlation-request-id": [
+ "2093ae45-612a-4326-877f-8eee18ee81fd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095049Z:2093ae45-612a-4326-877f-8eee18ee81fd"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:49 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzIxMGM2NTZiLTg3Y2UtNGEzMy1hOWM2LTgzYWY5YWVlYjY1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "14ebd248-f9d3-490a-8abb-681f286eab7f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "9a7b7a86-f0dd-482f-b0d7-399266a6cf91"
+ ],
+ "x-ms-client-request-id": [
+ "14ebd248-f9d3-490a-8abb-681f286eab7f",
+ "14ebd248-f9d3-490a-8abb-681f286eab7f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11869"
+ ],
+ "x-ms-correlation-request-id": [
+ "9a7b7a86-f0dd-482f-b0d7-399266a6cf91"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095049Z:9a7b7a86-f0dd-482f-b0d7-399266a6cf91"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:49 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzIxMGM2NTZiLTg3Y2UtNGEzMy1hOWM2LTgzYWY5YWVlYjY1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b5387047-8629-472d-9502-f46f9f3a1da1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "26b09ef3-9839-4e2f-b572-25f83896d978"
+ ],
+ "x-ms-client-request-id": [
+ "b5387047-8629-472d-9502-f46f9f3a1da1",
+ "b5387047-8629-472d-9502-f46f9f3a1da1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11868"
+ ],
+ "x-ms-correlation-request-id": [
+ "26b09ef3-9839-4e2f-b572-25f83896d978"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095049Z:26b09ef3-9839-4e2f-b572-25f83896d978"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:49 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzIxMGM2NTZiLTg3Y2UtNGEzMy1hOWM2LTgzYWY5YWVlYjY1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "27e9228c-e329-4c10-a05b-0271e226663b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "0f031652-e540-4a2a-b0f8-52f30baee69c"
+ ],
+ "x-ms-client-request-id": [
+ "27e9228c-e329-4c10-a05b-0271e226663b",
+ "27e9228c-e329-4c10-a05b-0271e226663b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11867"
+ ],
+ "x-ms-correlation-request-id": [
+ "0f031652-e540-4a2a-b0f8-52f30baee69c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095050Z:0f031652-e540-4a2a-b0f8-52f30baee69c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:49 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/210c656b-87ce-4a33-a9c6-83af9aeeb653?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzLzIxMGM2NTZiLTg3Y2UtNGEzMy1hOWM2LTgzYWY5YWVlYjY1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "611647b1-9c16-4860-b89d-59cd77f80912"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "79c0f8b4-ecc3-4304-b4ef-2494cb2298d2"
+ ],
+ "x-ms-client-request-id": [
+ "611647b1-9c16-4860-b89d-59cd77f80912",
+ "611647b1-9c16-4860-b89d-59cd77f80912"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11866"
+ ],
+ "x-ms-correlation-request-id": [
+ "79c0f8b4-ecc3-4304-b4ef-2494cb2298d2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095050Z:79c0f8b4-ecc3-4304-b4ef-2494cb2298d2"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:49 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectableItems?$filter=backupManagementType%20eq%20'AzureStorage'&api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGFibGVJdGVtcz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVTdG9yYWdlJyZhcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ed7b703e-0b70-4891-a5f7-c6370f4b9985"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c96e0b79-c390-4e06-a30c-4c8769a1932d"
+ ],
+ "x-ms-client-request-id": [
+ "ed7b703e-0b70-4891-a5f7-c6370f4b9985",
+ "ed7b703e-0b70-4891-a5f7-c6370f4b9985"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11865"
+ ],
+ "x-ms-correlation-request-id": [
+ "c96e0b79-c390-4e06-a30c-4c8769a1932d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095050Z:c96e0b79-c390-4e06-a30c-4c8769a1932d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:50 GMT"
+ ],
+ "Content-Length": [
+ "825"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectableItems/azurefileshare;fs1\",\r\n \"name\": \"azurefileshare;fs1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems\",\r\n \"properties\": {\r\n \"parentContainerFabricId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"parentContainerFriendlyName\": \"pstestsa8895\",\r\n \"azureFileShareType\": \"XSMB\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"protectableItemType\": \"AzureFileShare\",\r\n \"friendlyName\": \"fs1\",\r\n \"protectionState\": \"NotProtected\"\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/azurefileshare%3Bfs1?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9zdG9yYWdlY29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9henVyZWZpbGVzaGFyZSUzQmZzMT9hcGktdmVyc2lvbj0yMDE5LTA2LTE1",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\"\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ba5d9b22-3e31-4219-a24f-be8dae3e3e86"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "433"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectedItems/azurefileshare;fs1/operationResults/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2019-06-15"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/storagecontainer;storage;pstestrg8895;pstestsa8895/protectedItems/azurefileshare;fs1/operationsStatus/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2019-06-15"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f9bd5aff-7b34-4582-bd26-e4039d816182"
+ ],
+ "x-ms-client-request-id": [
+ "ba5d9b22-3e31-4219-a24f-be8dae3e3e86",
+ "ba5d9b22-3e31-4219-a24f-be8dae3e3e86"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-correlation-request-id": [
+ "f9bd5aff-7b34-4582-bd26-e4039d816182"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095051Z:f9bd5aff-7b34-4582-bd26-e4039d816182"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:51 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "aba077ef-7e2f-4554-a995-7d35d1da7251"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "b57f90b3-1edb-4208-bdbd-755e5047efb6"
+ ],
+ "x-ms-client-request-id": [
+ "aba077ef-7e2f-4554-a995-7d35d1da7251",
+ "aba077ef-7e2f-4554-a995-7d35d1da7251"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11864"
+ ],
+ "x-ms-correlation-request-id": [
+ "b57f90b3-1edb-4208-bdbd-755e5047efb6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095051Z:b57f90b3-1edb-4208-bdbd-755e5047efb6"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:51 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ee0de5f2-338e-4d55-a3b6-585a1a2dce20"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c4348c88-ca15-4583-8ac4-bda85f2b864c"
+ ],
+ "x-ms-client-request-id": [
+ "ee0de5f2-338e-4d55-a3b6-585a1a2dce20",
+ "ee0de5f2-338e-4d55-a3b6-585a1a2dce20"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11863"
+ ],
+ "x-ms-correlation-request-id": [
+ "c4348c88-ca15-4583-8ac4-bda85f2b864c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095051Z:c4348c88-ca15-4583-8ac4-bda85f2b864c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:51 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0fc71951-0fb7-456f-b24f-57bc9234da25"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "a31e33f6-5a9b-4f10-9563-ecd6e354fa68"
+ ],
+ "x-ms-client-request-id": [
+ "0fc71951-0fb7-456f-b24f-57bc9234da25",
+ "0fc71951-0fb7-456f-b24f-57bc9234da25"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11862"
+ ],
+ "x-ms-correlation-request-id": [
+ "a31e33f6-5a9b-4f10-9563-ecd6e354fa68"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095052Z:a31e33f6-5a9b-4f10-9563-ecd6e354fa68"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:51 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "40a3d6cd-0ed6-4d82-bd11-c514e129be1e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "6290387d-701a-4ee6-9b51-14df79f38983"
+ ],
+ "x-ms-client-request-id": [
+ "40a3d6cd-0ed6-4d82-bd11-c514e129be1e",
+ "40a3d6cd-0ed6-4d82-bd11-c514e129be1e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11861"
+ ],
+ "x-ms-correlation-request-id": [
+ "6290387d-701a-4ee6-9b51-14df79f38983"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095052Z:6290387d-701a-4ee6-9b51-14df79f38983"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:52 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5779687c-a198-40af-b5e0-0359744e0819"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f4ede253-2c60-483c-8a1b-ae1b6b965588"
+ ],
+ "x-ms-client-request-id": [
+ "5779687c-a198-40af-b5e0-0359744e0819",
+ "5779687c-a198-40af-b5e0-0359744e0819"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11860"
+ ],
+ "x-ms-correlation-request-id": [
+ "f4ede253-2c60-483c-8a1b-ae1b6b965588"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095052Z:f4ede253-2c60-483c-8a1b-ae1b6b965588"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:52 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e2f0b7d7-9398-4904-8349-df874a6f5b9e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "9925c725-9f8a-4bfd-af90-16eacae7de96"
+ ],
+ "x-ms-client-request-id": [
+ "e2f0b7d7-9398-4904-8349-df874a6f5b9e",
+ "e2f0b7d7-9398-4904-8349-df874a6f5b9e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11859"
+ ],
+ "x-ms-correlation-request-id": [
+ "9925c725-9f8a-4bfd-af90-16eacae7de96"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095053Z:9925c725-9f8a-4bfd-af90-16eacae7de96"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:52 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b73c4a47-6def-4ff6-977c-58f9f1577bc4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f2041a0b-97a8-4fca-808e-2e89f6ee8479"
+ ],
+ "x-ms-client-request-id": [
+ "b73c4a47-6def-4ff6-977c-58f9f1577bc4",
+ "b73c4a47-6def-4ff6-977c-58f9f1577bc4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11858"
+ ],
+ "x-ms-correlation-request-id": [
+ "f2041a0b-97a8-4fca-808e-2e89f6ee8479"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095053Z:f2041a0b-97a8-4fca-808e-2e89f6ee8479"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:53 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ad0a50d9-9063-4be5-aa0a-b9032d9d144a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f1852c2d-dcc6-404f-863a-953e72ed2582"
+ ],
+ "x-ms-client-request-id": [
+ "ad0a50d9-9063-4be5-aa0a-b9032d9d144a",
+ "ad0a50d9-9063-4be5-aa0a-b9032d9d144a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11857"
+ ],
+ "x-ms-correlation-request-id": [
+ "f1852c2d-dcc6-404f-863a-953e72ed2582"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095054Z:f1852c2d-dcc6-404f-863a-953e72ed2582"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:53 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "85ad5b89-2369-4f03-9c5d-19efc00cb085"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "bf9a50f2-5d3b-4c1d-bd0c-6c4c89e16d89"
+ ],
+ "x-ms-client-request-id": [
+ "85ad5b89-2369-4f03-9c5d-19efc00cb085",
+ "85ad5b89-2369-4f03-9c5d-19efc00cb085"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11856"
+ ],
+ "x-ms-correlation-request-id": [
+ "bf9a50f2-5d3b-4c1d-bd0c-6c4c89e16d89"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095054Z:bf9a50f2-5d3b-4c1d-bd0c-6c4c89e16d89"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:53 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "49f49b4a-4a74-46aa-943b-153e9d174e36"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "bcfdeee6-c59b-4f14-8bfe-59e3507a0f4a"
+ ],
+ "x-ms-client-request-id": [
+ "49f49b4a-4a74-46aa-943b-153e9d174e36",
+ "49f49b4a-4a74-46aa-943b-153e9d174e36"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11855"
+ ],
+ "x-ms-correlation-request-id": [
+ "bcfdeee6-c59b-4f14-8bfe-59e3507a0f4a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095054Z:bcfdeee6-c59b-4f14-8bfe-59e3507a0f4a"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:54 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "597463ef-5a6e-4d99-8add-34a3e8c26cc6"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "a98310d0-5a6a-490a-ac7e-5f96a3170edc"
+ ],
+ "x-ms-client-request-id": [
+ "597463ef-5a6e-4d99-8add-34a3e8c26cc6",
+ "597463ef-5a6e-4d99-8add-34a3e8c26cc6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11854"
+ ],
+ "x-ms-correlation-request-id": [
+ "a98310d0-5a6a-490a-ac7e-5f96a3170edc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095054Z:a98310d0-5a6a-490a-ac7e-5f96a3170edc"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:54 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "97f1d300-52a9-4bd2-8aee-89557afe5c8f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "862e0618-4329-48f2-ae3e-4db38cdc80bc"
+ ],
+ "x-ms-client-request-id": [
+ "97f1d300-52a9-4bd2-8aee-89557afe5c8f",
+ "97f1d300-52a9-4bd2-8aee-89557afe5c8f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11853"
+ ],
+ "x-ms-correlation-request-id": [
+ "862e0618-4329-48f2-ae3e-4db38cdc80bc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095054Z:862e0618-4329-48f2-ae3e-4db38cdc80bc"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:54 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d0fccc5e-e92a-477c-b3f9-9e03f22e0d4a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "699cb0b0-03c5-46c6-b422-f0fe65349af8"
+ ],
+ "x-ms-client-request-id": [
+ "d0fccc5e-e92a-477c-b3f9-9e03f22e0d4a",
+ "d0fccc5e-e92a-477c-b3f9-9e03f22e0d4a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11852"
+ ],
+ "x-ms-correlation-request-id": [
+ "699cb0b0-03c5-46c6-b422-f0fe65349af8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095055Z:699cb0b0-03c5-46c6-b422-f0fe65349af8"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:54 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "deac6022-fb3f-491d-a4c2-c2d95973e018"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "eff812a6-a4e1-458a-8ddf-d3f8a3116dc3"
+ ],
+ "x-ms-client-request-id": [
+ "deac6022-fb3f-491d-a4c2-c2d95973e018",
+ "deac6022-fb3f-491d-a4c2-c2d95973e018"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11851"
+ ],
+ "x-ms-correlation-request-id": [
+ "eff812a6-a4e1-458a-8ddf-d3f8a3116dc3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095055Z:eff812a6-a4e1-458a-8ddf-d3f8a3116dc3"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:55 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9236762a-554e-4501-ad89-5408a36214d3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "d4f4e8f5-7d69-4713-8f27-e48e57311e37"
+ ],
+ "x-ms-client-request-id": [
+ "9236762a-554e-4501-ad89-5408a36214d3",
+ "9236762a-554e-4501-ad89-5408a36214d3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11850"
+ ],
+ "x-ms-correlation-request-id": [
+ "d4f4e8f5-7d69-4713-8f27-e48e57311e37"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095055Z:d4f4e8f5-7d69-4713-8f27-e48e57311e37"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:55 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b6e764fc-e977-4fac-99f7-7045199417cd"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "af4e19d5-1737-4744-8b8e-be28531ca535"
+ ],
+ "x-ms-client-request-id": [
+ "b6e764fc-e977-4fac-99f7-7045199417cd",
+ "b6e764fc-e977-4fac-99f7-7045199417cd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11849"
+ ],
+ "x-ms-correlation-request-id": [
+ "af4e19d5-1737-4744-8b8e-be28531ca535"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095055Z:af4e19d5-1737-4744-8b8e-be28531ca535"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:55 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "aa38fc20-3903-4fc8-9ea5-7a6e7fc5a144"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f6656bcb-e49e-4374-9838-aaa16d73e10c"
+ ],
+ "x-ms-client-request-id": [
+ "aa38fc20-3903-4fc8-9ea5-7a6e7fc5a144",
+ "aa38fc20-3903-4fc8-9ea5-7a6e7fc5a144"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11848"
+ ],
+ "x-ms-correlation-request-id": [
+ "f6656bcb-e49e-4374-9838-aaa16d73e10c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095056Z:f6656bcb-e49e-4374-9838-aaa16d73e10c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:55 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7241bcfe-6aaa-4dc9-8039-cc08b6f3556f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "4ec3863f-35e1-42ae-bd4b-a99bc198692a"
+ ],
+ "x-ms-client-request-id": [
+ "7241bcfe-6aaa-4dc9-8039-cc08b6f3556f",
+ "7241bcfe-6aaa-4dc9-8039-cc08b6f3556f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11847"
+ ],
+ "x-ms-correlation-request-id": [
+ "4ec3863f-35e1-42ae-bd4b-a99bc198692a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095056Z:4ec3863f-35e1-42ae-bd4b-a99bc198692a"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:55 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1129b524-07c3-460f-8f8a-3ccbb8dd7387"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "b11526a6-052f-4638-bcdf-a237551f7761"
+ ],
+ "x-ms-client-request-id": [
+ "1129b524-07c3-460f-8f8a-3ccbb8dd7387",
+ "1129b524-07c3-460f-8f8a-3ccbb8dd7387"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11846"
+ ],
+ "x-ms-correlation-request-id": [
+ "b11526a6-052f-4638-bcdf-a237551f7761"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095056Z:b11526a6-052f-4638-bcdf-a237551f7761"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:56 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d51c1b05-be57-40ff-a0d2-8715f0f902d3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c59ee9ee-be49-4628-bc66-1fc4e933d996"
+ ],
+ "x-ms-client-request-id": [
+ "d51c1b05-be57-40ff-a0d2-8715f0f902d3",
+ "d51c1b05-be57-40ff-a0d2-8715f0f902d3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11845"
+ ],
+ "x-ms-correlation-request-id": [
+ "c59ee9ee-be49-4628-bc66-1fc4e933d996"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095056Z:c59ee9ee-be49-4628-bc66-1fc4e933d996"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:56 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "20e1e3c6-3d58-4307-961e-94eea3ff25bd"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "935587b3-70c7-48a0-8fc0-77c74bf43ccd"
+ ],
+ "x-ms-client-request-id": [
+ "20e1e3c6-3d58-4307-961e-94eea3ff25bd",
+ "20e1e3c6-3d58-4307-961e-94eea3ff25bd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11844"
+ ],
+ "x-ms-correlation-request-id": [
+ "935587b3-70c7-48a0-8fc0-77c74bf43ccd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095056Z:935587b3-70c7-48a0-8fc0-77c74bf43ccd"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:56 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bc0c74b5-c5e5-4cd3-8e5c-92424ce95ae1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "fe4ad0b6-af73-42df-a60f-4966aa0645d0"
+ ],
+ "x-ms-client-request-id": [
+ "bc0c74b5-c5e5-4cd3-8e5c-92424ce95ae1",
+ "bc0c74b5-c5e5-4cd3-8e5c-92424ce95ae1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11843"
+ ],
+ "x-ms-correlation-request-id": [
+ "fe4ad0b6-af73-42df-a60f-4966aa0645d0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095057Z:fe4ad0b6-af73-42df-a60f-4966aa0645d0"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:56 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "74e572cd-d592-4f8a-96ef-1a7d7784cafb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "2418489d-9d98-4c1d-9e52-30d8ff7411b5"
+ ],
+ "x-ms-client-request-id": [
+ "74e572cd-d592-4f8a-96ef-1a7d7784cafb",
+ "74e572cd-d592-4f8a-96ef-1a7d7784cafb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11842"
+ ],
+ "x-ms-correlation-request-id": [
+ "2418489d-9d98-4c1d-9e52-30d8ff7411b5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095057Z:2418489d-9d98-4c1d-9e52-30d8ff7411b5"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:56 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c14b9a8c-fb9b-49b1-87e4-2286664de5ab"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "1a6921e1-54f4-47fa-be48-0b355c90b252"
+ ],
+ "x-ms-client-request-id": [
+ "c14b9a8c-fb9b-49b1-87e4-2286664de5ab",
+ "c14b9a8c-fb9b-49b1-87e4-2286664de5ab"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11841"
+ ],
+ "x-ms-correlation-request-id": [
+ "1a6921e1-54f4-47fa-be48-0b355c90b252"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095057Z:1a6921e1-54f4-47fa-be48-0b355c90b252"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:57 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fd3763c5-42e9-4aed-ae14-2e8d1c359f58"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "6e729382-3b16-4ff1-90a0-2eccca4ce50a"
+ ],
+ "x-ms-client-request-id": [
+ "fd3763c5-42e9-4aed-ae14-2e8d1c359f58",
+ "fd3763c5-42e9-4aed-ae14-2e8d1c359f58"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11840"
+ ],
+ "x-ms-correlation-request-id": [
+ "6e729382-3b16-4ff1-90a0-2eccca4ce50a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095057Z:6e729382-3b16-4ff1-90a0-2eccca4ce50a"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:57 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f07b5a34-01ab-479e-ab1b-16efb02287ea"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "3d282021-991a-4539-b0ef-a3e0a1c6dd9f"
+ ],
+ "x-ms-client-request-id": [
+ "f07b5a34-01ab-479e-ab1b-16efb02287ea",
+ "f07b5a34-01ab-479e-ab1b-16efb02287ea"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11839"
+ ],
+ "x-ms-correlation-request-id": [
+ "3d282021-991a-4539-b0ef-a3e0a1c6dd9f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095057Z:3d282021-991a-4539-b0ef-a3e0a1c6dd9f"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:57 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2678b7ac-8cfe-4a97-a119-6e5908a9a1b8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "44e1663a-ab56-42b1-b273-7ba7ac296504"
+ ],
+ "x-ms-client-request-id": [
+ "2678b7ac-8cfe-4a97-a119-6e5908a9a1b8",
+ "2678b7ac-8cfe-4a97-a119-6e5908a9a1b8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11838"
+ ],
+ "x-ms-correlation-request-id": [
+ "44e1663a-ab56-42b1-b273-7ba7ac296504"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095058Z:44e1663a-ab56-42b1-b273-7ba7ac296504"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:58 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "786aa62d-1369-4c56-8a38-4d1cde3857b4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "0dfa5d14-acf8-42e3-bcad-d7f42691bb36"
+ ],
+ "x-ms-client-request-id": [
+ "786aa62d-1369-4c56-8a38-4d1cde3857b4",
+ "786aa62d-1369-4c56-8a38-4d1cde3857b4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11837"
+ ],
+ "x-ms-correlation-request-id": [
+ "0dfa5d14-acf8-42e3-bcad-d7f42691bb36"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095058Z:0dfa5d14-acf8-42e3-bcad-d7f42691bb36"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:58 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "24a5bee0-0b16-4165-b722-8cdae634295a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c3756600-5977-4765-8d3b-502f39e4ef07"
+ ],
+ "x-ms-client-request-id": [
+ "24a5bee0-0b16-4165-b722-8cdae634295a",
+ "24a5bee0-0b16-4165-b722-8cdae634295a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11836"
+ ],
+ "x-ms-correlation-request-id": [
+ "c3756600-5977-4765-8d3b-502f39e4ef07"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095058Z:c3756600-5977-4765-8d3b-502f39e4ef07"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:58 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "99c5f4c0-a578-4d25-a997-a0687bd38d11"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "0d17029d-eeac-4c83-8f57-f9f12194ef5d"
+ ],
+ "x-ms-client-request-id": [
+ "99c5f4c0-a578-4d25-a997-a0687bd38d11",
+ "99c5f4c0-a578-4d25-a997-a0687bd38d11"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11835"
+ ],
+ "x-ms-correlation-request-id": [
+ "0d17029d-eeac-4c83-8f57-f9f12194ef5d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095059Z:0d17029d-eeac-4c83-8f57-f9f12194ef5d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:58 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ab54d0d6-1bc3-41fb-b127-eb4c03b3defc"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "1308ceaf-b78c-4f89-a6fd-fb5dc6422420"
+ ],
+ "x-ms-client-request-id": [
+ "ab54d0d6-1bc3-41fb-b127-eb4c03b3defc",
+ "ab54d0d6-1bc3-41fb-b127-eb4c03b3defc"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11834"
+ ],
+ "x-ms-correlation-request-id": [
+ "1308ceaf-b78c-4f89-a6fd-fb5dc6422420"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095059Z:1308ceaf-b78c-4f89-a6fd-fb5dc6422420"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:58 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "43c0bff1-441b-46f7-8720-b3bdecb3bce2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "d5d5fcc2-b7f5-4a70-b246-43e8b3307d72"
+ ],
+ "x-ms-client-request-id": [
+ "43c0bff1-441b-46f7-8720-b3bdecb3bce2",
+ "43c0bff1-441b-46f7-8720-b3bdecb3bce2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11833"
+ ],
+ "x-ms-correlation-request-id": [
+ "d5d5fcc2-b7f5-4a70-b246-43e8b3307d72"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095059Z:d5d5fcc2-b7f5-4a70-b246-43e8b3307d72"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:59 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e1db99cf-9320-4f47-a509-5872cddeb0d8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c6faf106-2beb-4d67-888b-c67c42c77cc7"
+ ],
+ "x-ms-client-request-id": [
+ "e1db99cf-9320-4f47-a509-5872cddeb0d8",
+ "e1db99cf-9320-4f47-a509-5872cddeb0d8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11832"
+ ],
+ "x-ms-correlation-request-id": [
+ "c6faf106-2beb-4d67-888b-c67c42c77cc7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095100Z:c6faf106-2beb-4d67-888b-c67c42c77cc7"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:50:59 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c8d0c132-04ea-40da-b6a9-ddae5ffacb31"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "3b8527f7-17a7-4f63-aa0f-76c69260b3e3"
+ ],
+ "x-ms-client-request-id": [
+ "c8d0c132-04ea-40da-b6a9-ddae5ffacb31",
+ "c8d0c132-04ea-40da-b6a9-ddae5ffacb31"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11831"
+ ],
+ "x-ms-correlation-request-id": [
+ "3b8527f7-17a7-4f63-aa0f-76c69260b3e3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095100Z:3b8527f7-17a7-4f63-aa0f-76c69260b3e3"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:00 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f4f9b556-882f-4769-8622-5f61cff93157"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "5058655d-a07f-415f-b64d-f963525585ba"
+ ],
+ "x-ms-client-request-id": [
+ "f4f9b556-882f-4769-8622-5f61cff93157",
+ "f4f9b556-882f-4769-8622-5f61cff93157"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11830"
+ ],
+ "x-ms-correlation-request-id": [
+ "5058655d-a07f-415f-b64d-f963525585ba"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095100Z:5058655d-a07f-415f-b64d-f963525585ba"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:00 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b58231f5-bb81-4dca-9036-f4593aa47793"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "bba967e7-643a-4caf-a168-58bd1338877a"
+ ],
+ "x-ms-client-request-id": [
+ "b58231f5-bb81-4dca-9036-f4593aa47793",
+ "b58231f5-bb81-4dca-9036-f4593aa47793"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11829"
+ ],
+ "x-ms-correlation-request-id": [
+ "bba967e7-643a-4caf-a168-58bd1338877a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095100Z:bba967e7-643a-4caf-a168-58bd1338877a"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:00 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a57a78ae-0d93-4474-aec7-39fa0b6ae89c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "2ce29009-520f-4b49-940c-89bb540f6b12"
+ ],
+ "x-ms-client-request-id": [
+ "a57a78ae-0d93-4474-aec7-39fa0b6ae89c",
+ "a57a78ae-0d93-4474-aec7-39fa0b6ae89c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11828"
+ ],
+ "x-ms-correlation-request-id": [
+ "2ce29009-520f-4b49-940c-89bb540f6b12"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095101Z:2ce29009-520f-4b49-940c-89bb540f6b12"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:00 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6f8682aa-9586-44ed-b91b-7bc38487af0a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e268f3c6-44e3-46d7-8a83-49018fa9980e"
+ ],
+ "x-ms-client-request-id": [
+ "6f8682aa-9586-44ed-b91b-7bc38487af0a",
+ "6f8682aa-9586-44ed-b91b-7bc38487af0a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11827"
+ ],
+ "x-ms-correlation-request-id": [
+ "e268f3c6-44e3-46d7-8a83-49018fa9980e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095101Z:e268f3c6-44e3-46d7-8a83-49018fa9980e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:00 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3f417270-4d78-405f-b2ff-c4b6223a9b84"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "33952508-f057-43f8-b894-178c40ab6713"
+ ],
+ "x-ms-client-request-id": [
+ "3f417270-4d78-405f-b2ff-c4b6223a9b84",
+ "3f417270-4d78-405f-b2ff-c4b6223a9b84"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11826"
+ ],
+ "x-ms-correlation-request-id": [
+ "33952508-f057-43f8-b894-178c40ab6713"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095101Z:33952508-f057-43f8-b894-178c40ab6713"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:01 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a409e02d-de9e-4c2e-b1ac-3d35039f4238"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "b90c35f1-064a-4b98-84b8-942a3a2ce457"
+ ],
+ "x-ms-client-request-id": [
+ "a409e02d-de9e-4c2e-b1ac-3d35039f4238",
+ "a409e02d-de9e-4c2e-b1ac-3d35039f4238"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11825"
+ ],
+ "x-ms-correlation-request-id": [
+ "b90c35f1-064a-4b98-84b8-942a3a2ce457"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095101Z:b90c35f1-064a-4b98-84b8-942a3a2ce457"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:01 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5b40ccc0-a99d-47e2-a900-cbc1adb1b6c0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "256b9774-a780-4fa8-845e-dc34aaaca38d"
+ ],
+ "x-ms-client-request-id": [
+ "5b40ccc0-a99d-47e2-a900-cbc1adb1b6c0",
+ "5b40ccc0-a99d-47e2-a900-cbc1adb1b6c0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11824"
+ ],
+ "x-ms-correlation-request-id": [
+ "256b9774-a780-4fa8-845e-dc34aaaca38d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095102Z:256b9774-a780-4fa8-845e-dc34aaaca38d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:01 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "501c0e1c-3467-4c00-9dfb-2426cdb3aae6"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "53f142f9-0e8f-43ea-90ae-003e1fad2f82"
+ ],
+ "x-ms-client-request-id": [
+ "501c0e1c-3467-4c00-9dfb-2426cdb3aae6",
+ "501c0e1c-3467-4c00-9dfb-2426cdb3aae6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11823"
+ ],
+ "x-ms-correlation-request-id": [
+ "53f142f9-0e8f-43ea-90ae-003e1fad2f82"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095102Z:53f142f9-0e8f-43ea-90ae-003e1fad2f82"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:01 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cb7779bc-8795-4e6d-9814-bc103c5c6e4b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "9acdfbfd-0570-4fb4-ab97-93e62e85040d"
+ ],
+ "x-ms-client-request-id": [
+ "cb7779bc-8795-4e6d-9814-bc103c5c6e4b",
+ "cb7779bc-8795-4e6d-9814-bc103c5c6e4b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11822"
+ ],
+ "x-ms-correlation-request-id": [
+ "9acdfbfd-0570-4fb4-ab97-93e62e85040d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095102Z:9acdfbfd-0570-4fb4-ab97-93e62e85040d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:02 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fe22ab92-28ff-4f67-91ea-1749d2cf6e4c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "61958835-5b14-4ff6-bcc5-a8e486219ff8"
+ ],
+ "x-ms-client-request-id": [
+ "fe22ab92-28ff-4f67-91ea-1749d2cf6e4c",
+ "fe22ab92-28ff-4f67-91ea-1749d2cf6e4c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11821"
+ ],
+ "x-ms-correlation-request-id": [
+ "61958835-5b14-4ff6-bcc5-a8e486219ff8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095103Z:61958835-5b14-4ff6-bcc5-a8e486219ff8"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:02 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2e16a711-26c0-42d1-abba-f9b583ef23ea"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "5a5612cd-e412-46f5-a4a1-6cca3971701b"
+ ],
+ "x-ms-client-request-id": [
+ "2e16a711-26c0-42d1-abba-f9b583ef23ea",
+ "2e16a711-26c0-42d1-abba-f9b583ef23ea"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11820"
+ ],
+ "x-ms-correlation-request-id": [
+ "5a5612cd-e412-46f5-a4a1-6cca3971701b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095103Z:5a5612cd-e412-46f5-a4a1-6cca3971701b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:02 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "54744dc4-208e-4d10-b9d1-efe4b55da1bb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "86af6917-ff24-4018-8f37-985c8071722a"
+ ],
+ "x-ms-client-request-id": [
+ "54744dc4-208e-4d10-b9d1-efe4b55da1bb",
+ "54744dc4-208e-4d10-b9d1-efe4b55da1bb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11819"
+ ],
+ "x-ms-correlation-request-id": [
+ "86af6917-ff24-4018-8f37-985c8071722a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095103Z:86af6917-ff24-4018-8f37-985c8071722a"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:03 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "10fcb3f2-ee67-436f-b8e2-f2bf9364b73e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "8c3ae5e5-f279-465d-ade6-4a198b02bcbd"
+ ],
+ "x-ms-client-request-id": [
+ "10fcb3f2-ee67-436f-b8e2-f2bf9364b73e",
+ "10fcb3f2-ee67-436f-b8e2-f2bf9364b73e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11818"
+ ],
+ "x-ms-correlation-request-id": [
+ "8c3ae5e5-f279-465d-ade6-4a198b02bcbd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095103Z:8c3ae5e5-f279-465d-ade6-4a198b02bcbd"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:03 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d0fe6ace-a106-47b7-84c2-dcdeb07a9ae8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c8c1fb48-ed32-4a68-8067-2074cc00ea08"
+ ],
+ "x-ms-client-request-id": [
+ "d0fe6ace-a106-47b7-84c2-dcdeb07a9ae8",
+ "d0fe6ace-a106-47b7-84c2-dcdeb07a9ae8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11817"
+ ],
+ "x-ms-correlation-request-id": [
+ "c8c1fb48-ed32-4a68-8067-2074cc00ea08"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095104Z:c8c1fb48-ed32-4a68-8067-2074cc00ea08"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:03 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d8910066-2dc1-4647-99cd-911004fb813d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c6ba49f8-6dcf-4335-ad6f-58154ee90b25"
+ ],
+ "x-ms-client-request-id": [
+ "d8910066-2dc1-4647-99cd-911004fb813d",
+ "d8910066-2dc1-4647-99cd-911004fb813d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11816"
+ ],
+ "x-ms-correlation-request-id": [
+ "c6ba49f8-6dcf-4335-ad6f-58154ee90b25"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095104Z:c6ba49f8-6dcf-4335-ad6f-58154ee90b25"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:03 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "451d2032-4f6d-45f1-87a2-4302cdd26a8d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "34b28385-1756-4d65-a9c2-10c3fbbac1db"
+ ],
+ "x-ms-client-request-id": [
+ "451d2032-4f6d-45f1-87a2-4302cdd26a8d",
+ "451d2032-4f6d-45f1-87a2-4302cdd26a8d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11815"
+ ],
+ "x-ms-correlation-request-id": [
+ "34b28385-1756-4d65-a9c2-10c3fbbac1db"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095104Z:34b28385-1756-4d65-a9c2-10c3fbbac1db"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:03 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7ed8655d-a3af-4582-96a0-0cf3b76db6c4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "88784aec-7613-4b86-8f0e-f2effa073909"
+ ],
+ "x-ms-client-request-id": [
+ "7ed8655d-a3af-4582-96a0-0cf3b76db6c4",
+ "7ed8655d-a3af-4582-96a0-0cf3b76db6c4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11814"
+ ],
+ "x-ms-correlation-request-id": [
+ "88784aec-7613-4b86-8f0e-f2effa073909"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095104Z:88784aec-7613-4b86-8f0e-f2effa073909"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:04 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "28134ffa-af00-40cb-b6cc-9d3f0915c19c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "40fafc76-bca9-4546-b1f9-8f051cc46c42"
+ ],
+ "x-ms-client-request-id": [
+ "28134ffa-af00-40cb-b6cc-9d3f0915c19c",
+ "28134ffa-af00-40cb-b6cc-9d3f0915c19c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11813"
+ ],
+ "x-ms-correlation-request-id": [
+ "40fafc76-bca9-4546-b1f9-8f051cc46c42"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095104Z:40fafc76-bca9-4546-b1f9-8f051cc46c42"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:04 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a7fb0c79-6e7b-4d08-a507-4149deaf7b2c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "dcd00afa-63f8-43a9-bbb3-d23be233489a"
+ ],
+ "x-ms-client-request-id": [
+ "a7fb0c79-6e7b-4d08-a507-4149deaf7b2c",
+ "a7fb0c79-6e7b-4d08-a507-4149deaf7b2c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11812"
+ ],
+ "x-ms-correlation-request-id": [
+ "dcd00afa-63f8-43a9-bbb3-d23be233489a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095105Z:dcd00afa-63f8-43a9-bbb3-d23be233489a"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:04 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ccf8d00b-96e3-4de9-b9e6-434d882ee59a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "bc2d2a0d-c791-4955-8ab2-39bf5efa5267"
+ ],
+ "x-ms-client-request-id": [
+ "ccf8d00b-96e3-4de9-b9e6-434d882ee59a",
+ "ccf8d00b-96e3-4de9-b9e6-434d882ee59a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11811"
+ ],
+ "x-ms-correlation-request-id": [
+ "bc2d2a0d-c791-4955-8ab2-39bf5efa5267"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095105Z:bc2d2a0d-c791-4955-8ab2-39bf5efa5267"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:04 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "65fc87c2-295f-4b75-a8c7-3b073efd7539"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c1aa1a16-dc77-4afb-88dc-87cadefb4231"
+ ],
+ "x-ms-client-request-id": [
+ "65fc87c2-295f-4b75-a8c7-3b073efd7539",
+ "65fc87c2-295f-4b75-a8c7-3b073efd7539"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11810"
+ ],
+ "x-ms-correlation-request-id": [
+ "c1aa1a16-dc77-4afb-88dc-87cadefb4231"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095105Z:c1aa1a16-dc77-4afb-88dc-87cadefb4231"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:04 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7c6e2a82-4657-4dd3-a169-250a91553335"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "70bc722e-8009-40cd-8127-37f710736265"
+ ],
+ "x-ms-client-request-id": [
+ "7c6e2a82-4657-4dd3-a169-250a91553335",
+ "7c6e2a82-4657-4dd3-a169-250a91553335"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11809"
+ ],
+ "x-ms-correlation-request-id": [
+ "70bc722e-8009-40cd-8127-37f710736265"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095105Z:70bc722e-8009-40cd-8127-37f710736265"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:05 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "243fbedc-c696-47a7-a8c5-db172cf3fa8d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "3a46b913-7079-4b9c-b506-8af4571170b0"
+ ],
+ "x-ms-client-request-id": [
+ "243fbedc-c696-47a7-a8c5-db172cf3fa8d",
+ "243fbedc-c696-47a7-a8c5-db172cf3fa8d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11808"
+ ],
+ "x-ms-correlation-request-id": [
+ "3a46b913-7079-4b9c-b506-8af4571170b0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095105Z:3a46b913-7079-4b9c-b506-8af4571170b0"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:05 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7ebdc023-9701-44d5-867d-2da6158254bb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "38a3a519-fecb-44c6-af77-1cdad5ed2c60"
+ ],
+ "x-ms-client-request-id": [
+ "7ebdc023-9701-44d5-867d-2da6158254bb",
+ "7ebdc023-9701-44d5-867d-2da6158254bb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11807"
+ ],
+ "x-ms-correlation-request-id": [
+ "38a3a519-fecb-44c6-af77-1cdad5ed2c60"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095106Z:38a3a519-fecb-44c6-af77-1cdad5ed2c60"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:05 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "33a84b2c-a066-40e1-b327-51a576fcbdf0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "4c760df6-bd3d-4965-997a-86148a59313e"
+ ],
+ "x-ms-client-request-id": [
+ "33a84b2c-a066-40e1-b327-51a576fcbdf0",
+ "33a84b2c-a066-40e1-b327-51a576fcbdf0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11806"
+ ],
+ "x-ms-correlation-request-id": [
+ "4c760df6-bd3d-4965-997a-86148a59313e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095106Z:4c760df6-bd3d-4965-997a-86148a59313e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:05 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "130437fa-86b6-4c56-a726-9698cbf2573d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "8ec2bba6-5224-4038-be03-259baa25d0ab"
+ ],
+ "x-ms-client-request-id": [
+ "130437fa-86b6-4c56-a726-9698cbf2573d",
+ "130437fa-86b6-4c56-a726-9698cbf2573d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11805"
+ ],
+ "x-ms-correlation-request-id": [
+ "8ec2bba6-5224-4038-be03-259baa25d0ab"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095106Z:8ec2bba6-5224-4038-be03-259baa25d0ab"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:06 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "18663f12-81fb-4fb9-845d-ea58a568ffa1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "cfcf347e-02c6-409e-a809-178498aab8b5"
+ ],
+ "x-ms-client-request-id": [
+ "18663f12-81fb-4fb9-845d-ea58a568ffa1",
+ "18663f12-81fb-4fb9-845d-ea58a568ffa1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11804"
+ ],
+ "x-ms-correlation-request-id": [
+ "cfcf347e-02c6-409e-a809-178498aab8b5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095106Z:cfcf347e-02c6-409e-a809-178498aab8b5"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:06 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "06ee83a7-2ce2-4152-bd29-9a33e2b732d9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "7301679b-e5dc-4268-a69e-e1f76ffc5ffb"
+ ],
+ "x-ms-client-request-id": [
+ "06ee83a7-2ce2-4152-bd29-9a33e2b732d9",
+ "06ee83a7-2ce2-4152-bd29-9a33e2b732d9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11803"
+ ],
+ "x-ms-correlation-request-id": [
+ "7301679b-e5dc-4268-a69e-e1f76ffc5ffb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095107Z:7301679b-e5dc-4268-a69e-e1f76ffc5ffb"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:06 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "71015954-f106-4ce4-9517-ab5352223c5c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "534a4621-08a8-49ae-b9d4-a25aa6491753"
+ ],
+ "x-ms-client-request-id": [
+ "71015954-f106-4ce4-9517-ab5352223c5c",
+ "71015954-f106-4ce4-9517-ab5352223c5c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11802"
+ ],
+ "x-ms-correlation-request-id": [
+ "534a4621-08a8-49ae-b9d4-a25aa6491753"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095107Z:534a4621-08a8-49ae-b9d4-a25aa6491753"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:06 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cc26a548-7ac6-4d97-85ba-a38467090788"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "922903b7-4623-44bb-a2f8-76d95952bb06"
+ ],
+ "x-ms-client-request-id": [
+ "cc26a548-7ac6-4d97-85ba-a38467090788",
+ "cc26a548-7ac6-4d97-85ba-a38467090788"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11801"
+ ],
+ "x-ms-correlation-request-id": [
+ "922903b7-4623-44bb-a2f8-76d95952bb06"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095107Z:922903b7-4623-44bb-a2f8-76d95952bb06"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:07 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7bcbe632-4787-4d64-acc8-626748fe6820"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "7b44cceb-acbc-43e9-bb6e-f71342329087"
+ ],
+ "x-ms-client-request-id": [
+ "7bcbe632-4787-4d64-acc8-626748fe6820",
+ "7bcbe632-4787-4d64-acc8-626748fe6820"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11800"
+ ],
+ "x-ms-correlation-request-id": [
+ "7b44cceb-acbc-43e9-bb6e-f71342329087"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095107Z:7b44cceb-acbc-43e9-bb6e-f71342329087"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:07 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "aa398bc0-e0f7-4de5-bffd-53863443aea0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c657fb9f-d934-4cbd-9796-e185541d5d4f"
+ ],
+ "x-ms-client-request-id": [
+ "aa398bc0-e0f7-4de5-bffd-53863443aea0",
+ "aa398bc0-e0f7-4de5-bffd-53863443aea0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11799"
+ ],
+ "x-ms-correlation-request-id": [
+ "c657fb9f-d934-4cbd-9796-e185541d5d4f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095108Z:c657fb9f-d934-4cbd-9796-e185541d5d4f"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:07 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a9e3e8c7-e450-4bb3-89e2-d13c9c6e92be"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "495d172c-dd17-46e9-8643-0104d8972e1c"
+ ],
+ "x-ms-client-request-id": [
+ "a9e3e8c7-e450-4bb3-89e2-d13c9c6e92be",
+ "a9e3e8c7-e450-4bb3-89e2-d13c9c6e92be"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11798"
+ ],
+ "x-ms-correlation-request-id": [
+ "495d172c-dd17-46e9-8643-0104d8972e1c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095108Z:495d172c-dd17-46e9-8643-0104d8972e1c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:07 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4f5a3ba4-803c-443a-8470-828137a7e3d1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f20c6ed2-5b1f-4988-9266-3e597ba55aef"
+ ],
+ "x-ms-client-request-id": [
+ "4f5a3ba4-803c-443a-8470-828137a7e3d1",
+ "4f5a3ba4-803c-443a-8470-828137a7e3d1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11797"
+ ],
+ "x-ms-correlation-request-id": [
+ "f20c6ed2-5b1f-4988-9266-3e597ba55aef"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095108Z:f20c6ed2-5b1f-4988-9266-3e597ba55aef"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:07 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4b17ddc0-c6c0-4ea8-bef7-b3ca6dadba5d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "188db7b8-ab3b-4fe5-8b3c-a1be940addb4"
+ ],
+ "x-ms-client-request-id": [
+ "4b17ddc0-c6c0-4ea8-bef7-b3ca6dadba5d",
+ "4b17ddc0-c6c0-4ea8-bef7-b3ca6dadba5d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11796"
+ ],
+ "x-ms-correlation-request-id": [
+ "188db7b8-ab3b-4fe5-8b3c-a1be940addb4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095108Z:188db7b8-ab3b-4fe5-8b3c-a1be940addb4"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:08 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fdfd649b-b66e-4057-9e5e-1f83d55b5bea"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "122df055-3c17-4977-98d7-35163429d4cd"
+ ],
+ "x-ms-client-request-id": [
+ "fdfd649b-b66e-4057-9e5e-1f83d55b5bea",
+ "fdfd649b-b66e-4057-9e5e-1f83d55b5bea"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11795"
+ ],
+ "x-ms-correlation-request-id": [
+ "122df055-3c17-4977-98d7-35163429d4cd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095108Z:122df055-3c17-4977-98d7-35163429d4cd"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:08 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9d6eeb36-138a-4440-8598-ee1ff655f1ed"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "db4082bb-c7f2-4ead-b800-6d0ff38f31b0"
+ ],
+ "x-ms-client-request-id": [
+ "9d6eeb36-138a-4440-8598-ee1ff655f1ed",
+ "9d6eeb36-138a-4440-8598-ee1ff655f1ed"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11794"
+ ],
+ "x-ms-correlation-request-id": [
+ "db4082bb-c7f2-4ead-b800-6d0ff38f31b0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095109Z:db4082bb-c7f2-4ead-b800-6d0ff38f31b0"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:08 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7da4203c-0a5d-40ae-ad05-e2910b7deffd"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "3c483ac8-b8c4-4827-8d21-0b6dc015c3cd"
+ ],
+ "x-ms-client-request-id": [
+ "7da4203c-0a5d-40ae-ad05-e2910b7deffd",
+ "7da4203c-0a5d-40ae-ad05-e2910b7deffd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11793"
+ ],
+ "x-ms-correlation-request-id": [
+ "3c483ac8-b8c4-4827-8d21-0b6dc015c3cd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095109Z:3c483ac8-b8c4-4827-8d21-0b6dc015c3cd"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:08 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fe679fb8-48df-4352-8638-150a31fcea68"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "25456a8d-21a4-41e0-9a50-5ed07096b93b"
+ ],
+ "x-ms-client-request-id": [
+ "fe679fb8-48df-4352-8638-150a31fcea68",
+ "fe679fb8-48df-4352-8638-150a31fcea68"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11792"
+ ],
+ "x-ms-correlation-request-id": [
+ "25456a8d-21a4-41e0-9a50-5ed07096b93b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095109Z:25456a8d-21a4-41e0-9a50-5ed07096b93b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:09 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5e3847f1-f01c-415e-a90d-63c5c70e565f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "5e013d0b-287f-4e29-bada-80321cc1d092"
+ ],
+ "x-ms-client-request-id": [
+ "5e3847f1-f01c-415e-a90d-63c5c70e565f",
+ "5e3847f1-f01c-415e-a90d-63c5c70e565f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11791"
+ ],
+ "x-ms-correlation-request-id": [
+ "5e013d0b-287f-4e29-bada-80321cc1d092"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095109Z:5e013d0b-287f-4e29-bada-80321cc1d092"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:09 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "35ec0b73-7279-41b2-94d8-00f37dfa210c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "a8fc3b52-31d2-4c5f-8c0d-44c95b951f29"
+ ],
+ "x-ms-client-request-id": [
+ "35ec0b73-7279-41b2-94d8-00f37dfa210c",
+ "35ec0b73-7279-41b2-94d8-00f37dfa210c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11790"
+ ],
+ "x-ms-correlation-request-id": [
+ "a8fc3b52-31d2-4c5f-8c0d-44c95b951f29"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095110Z:a8fc3b52-31d2-4c5f-8c0d-44c95b951f29"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:09 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "673768f6-600c-4f51-946b-8f56e2bf8c45"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "cea62bb6-4702-46b8-8d1e-9b2f89ed24a5"
+ ],
+ "x-ms-client-request-id": [
+ "673768f6-600c-4f51-946b-8f56e2bf8c45",
+ "673768f6-600c-4f51-946b-8f56e2bf8c45"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11789"
+ ],
+ "x-ms-correlation-request-id": [
+ "cea62bb6-4702-46b8-8d1e-9b2f89ed24a5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095110Z:cea62bb6-4702-46b8-8d1e-9b2f89ed24a5"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:09 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2c1443f3-ca43-493f-bac5-1350e7d03fa3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "55e4cf18-5f8f-4c8b-83cd-333cb2021496"
+ ],
+ "x-ms-client-request-id": [
+ "2c1443f3-ca43-493f-bac5-1350e7d03fa3",
+ "2c1443f3-ca43-493f-bac5-1350e7d03fa3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11788"
+ ],
+ "x-ms-correlation-request-id": [
+ "55e4cf18-5f8f-4c8b-83cd-333cb2021496"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095110Z:55e4cf18-5f8f-4c8b-83cd-333cb2021496"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:09 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d7395dc1-58bf-44cb-93fb-630abc33b4de"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "55eecf65-b1fe-4c67-be38-58c53e93240b"
+ ],
+ "x-ms-client-request-id": [
+ "d7395dc1-58bf-44cb-93fb-630abc33b4de",
+ "d7395dc1-58bf-44cb-93fb-630abc33b4de"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11787"
+ ],
+ "x-ms-correlation-request-id": [
+ "55eecf65-b1fe-4c67-be38-58c53e93240b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095110Z:55eecf65-b1fe-4c67-be38-58c53e93240b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:10 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1486de25-fcfc-4c76-9fe3-de1fb3bba05f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "44e2596e-b26b-437f-81ae-d7ae3d2dded8"
+ ],
+ "x-ms-client-request-id": [
+ "1486de25-fcfc-4c76-9fe3-de1fb3bba05f",
+ "1486de25-fcfc-4c76-9fe3-de1fb3bba05f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11786"
+ ],
+ "x-ms-correlation-request-id": [
+ "44e2596e-b26b-437f-81ae-d7ae3d2dded8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095111Z:44e2596e-b26b-437f-81ae-d7ae3d2dded8"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:10 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "03ade2f1-43a2-42cf-ad1b-451a033760cb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "75f5343d-e840-429d-a77d-e4259e310110"
+ ],
+ "x-ms-client-request-id": [
+ "03ade2f1-43a2-42cf-ad1b-451a033760cb",
+ "03ade2f1-43a2-42cf-ad1b-451a033760cb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11785"
+ ],
+ "x-ms-correlation-request-id": [
+ "75f5343d-e840-429d-a77d-e4259e310110"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095111Z:75f5343d-e840-429d-a77d-e4259e310110"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:10 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "86766f1c-460e-4d81-b1cd-a71e0cbfdcfb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "866fd63b-b075-4ac6-9ec8-8991acbce556"
+ ],
+ "x-ms-client-request-id": [
+ "86766f1c-460e-4d81-b1cd-a71e0cbfdcfb",
+ "86766f1c-460e-4d81-b1cd-a71e0cbfdcfb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11784"
+ ],
+ "x-ms-correlation-request-id": [
+ "866fd63b-b075-4ac6-9ec8-8991acbce556"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095111Z:866fd63b-b075-4ac6-9ec8-8991acbce556"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:11 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8b38f304-c4fd-45ad-a112-219dbda43b06"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "800780bd-7665-48f9-b9c2-ab56a74e2fe4"
+ ],
+ "x-ms-client-request-id": [
+ "8b38f304-c4fd-45ad-a112-219dbda43b06",
+ "8b38f304-c4fd-45ad-a112-219dbda43b06"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11783"
+ ],
+ "x-ms-correlation-request-id": [
+ "800780bd-7665-48f9-b9c2-ab56a74e2fe4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095112Z:800780bd-7665-48f9-b9c2-ab56a74e2fe4"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:11 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "34ff9ed3-c86d-456f-af84-eadaf2a8ced4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "57296189-7a83-45b0-86d7-4bda2f10ce49"
+ ],
+ "x-ms-client-request-id": [
+ "34ff9ed3-c86d-456f-af84-eadaf2a8ced4",
+ "34ff9ed3-c86d-456f-af84-eadaf2a8ced4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11782"
+ ],
+ "x-ms-correlation-request-id": [
+ "57296189-7a83-45b0-86d7-4bda2f10ce49"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095112Z:57296189-7a83-45b0-86d7-4bda2f10ce49"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:11 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8b6d8a8d-adb3-41e2-a964-f785effcd279"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "1f1aa425-f222-4097-b3fa-f6e4597ba04c"
+ ],
+ "x-ms-client-request-id": [
+ "8b6d8a8d-adb3-41e2-a964-f785effcd279",
+ "8b6d8a8d-adb3-41e2-a964-f785effcd279"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11781"
+ ],
+ "x-ms-correlation-request-id": [
+ "1f1aa425-f222-4097-b3fa-f6e4597ba04c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095112Z:1f1aa425-f222-4097-b3fa-f6e4597ba04c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:12 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9389f925-e5b7-45ff-ac19-d0c520f21862"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "0cff5434-5fb3-4979-8b82-3c1ea796de87"
+ ],
+ "x-ms-client-request-id": [
+ "9389f925-e5b7-45ff-ac19-d0c520f21862",
+ "9389f925-e5b7-45ff-ac19-d0c520f21862"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11780"
+ ],
+ "x-ms-correlation-request-id": [
+ "0cff5434-5fb3-4979-8b82-3c1ea796de87"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095113Z:0cff5434-5fb3-4979-8b82-3c1ea796de87"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:12 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "592996ff-2e86-47a1-ab43-d18f2fa35d17"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "397c30ec-a4fc-497b-9a96-8874bbe54f8b"
+ ],
+ "x-ms-client-request-id": [
+ "592996ff-2e86-47a1-ab43-d18f2fa35d17",
+ "592996ff-2e86-47a1-ab43-d18f2fa35d17"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11779"
+ ],
+ "x-ms-correlation-request-id": [
+ "397c30ec-a4fc-497b-9a96-8874bbe54f8b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095113Z:397c30ec-a4fc-497b-9a96-8874bbe54f8b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:12 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d309e3bd-b1cd-4131-8b58-407ce8413f7e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "93d13fd9-d6a2-409e-be51-94abcdad36c2"
+ ],
+ "x-ms-client-request-id": [
+ "d309e3bd-b1cd-4131-8b58-407ce8413f7e",
+ "d309e3bd-b1cd-4131-8b58-407ce8413f7e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11778"
+ ],
+ "x-ms-correlation-request-id": [
+ "93d13fd9-d6a2-409e-be51-94abcdad36c2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095113Z:93d13fd9-d6a2-409e-be51-94abcdad36c2"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:12 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "beb5c63c-2fca-44b1-a0cc-2cc766021b69"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "010b36f4-9823-4408-b606-364765ac1ab5"
+ ],
+ "x-ms-client-request-id": [
+ "beb5c63c-2fca-44b1-a0cc-2cc766021b69",
+ "beb5c63c-2fca-44b1-a0cc-2cc766021b69"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11777"
+ ],
+ "x-ms-correlation-request-id": [
+ "010b36f4-9823-4408-b606-364765ac1ab5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095113Z:010b36f4-9823-4408-b606-364765ac1ab5"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:13 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "12725d0b-b09b-47d6-af54-7ce3b83b5f95"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "b26bc749-442c-47b9-92ff-e505301a36b0"
+ ],
+ "x-ms-client-request-id": [
+ "12725d0b-b09b-47d6-af54-7ce3b83b5f95",
+ "12725d0b-b09b-47d6-af54-7ce3b83b5f95"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11776"
+ ],
+ "x-ms-correlation-request-id": [
+ "b26bc749-442c-47b9-92ff-e505301a36b0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095113Z:b26bc749-442c-47b9-92ff-e505301a36b0"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:13 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "df60dd2e-56b9-4afa-b980-55c5a4739a15"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "8c58e792-369f-431b-a1c4-0811065e6eda"
+ ],
+ "x-ms-client-request-id": [
+ "df60dd2e-56b9-4afa-b980-55c5a4739a15",
+ "df60dd2e-56b9-4afa-b980-55c5a4739a15"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11775"
+ ],
+ "x-ms-correlation-request-id": [
+ "8c58e792-369f-431b-a1c4-0811065e6eda"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095114Z:8c58e792-369f-431b-a1c4-0811065e6eda"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:13 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "88855f96-2495-4e1d-8398-c9ee9c2ad730"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "efc8113b-7d46-49ff-8194-7bcd2d9d5c77"
+ ],
+ "x-ms-client-request-id": [
+ "88855f96-2495-4e1d-8398-c9ee9c2ad730",
+ "88855f96-2495-4e1d-8398-c9ee9c2ad730"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11774"
+ ],
+ "x-ms-correlation-request-id": [
+ "efc8113b-7d46-49ff-8194-7bcd2d9d5c77"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095114Z:efc8113b-7d46-49ff-8194-7bcd2d9d5c77"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:13 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "71561927-b8b6-47da-a72b-796b5be6eb00"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "d661a0b9-335d-4b91-8b55-037aa2e74d20"
+ ],
+ "x-ms-client-request-id": [
+ "71561927-b8b6-47da-a72b-796b5be6eb00",
+ "71561927-b8b6-47da-a72b-796b5be6eb00"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11773"
+ ],
+ "x-ms-correlation-request-id": [
+ "d661a0b9-335d-4b91-8b55-037aa2e74d20"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095114Z:d661a0b9-335d-4b91-8b55-037aa2e74d20"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:14 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cb71e392-129a-480b-862d-1a3c416d7c02"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e96ddb1e-8f18-4530-8c66-afd079a47a44"
+ ],
+ "x-ms-client-request-id": [
+ "cb71e392-129a-480b-862d-1a3c416d7c02",
+ "cb71e392-129a-480b-862d-1a3c416d7c02"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11772"
+ ],
+ "x-ms-correlation-request-id": [
+ "e96ddb1e-8f18-4530-8c66-afd079a47a44"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095114Z:e96ddb1e-8f18-4530-8c66-afd079a47a44"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:14 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5ec0e24e-d880-4f15-aba7-151e4407df65"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "875d105d-0b6f-48db-ac81-4b08160061dc"
+ ],
+ "x-ms-client-request-id": [
+ "5ec0e24e-d880-4f15-aba7-151e4407df65",
+ "5ec0e24e-d880-4f15-aba7-151e4407df65"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11771"
+ ],
+ "x-ms-correlation-request-id": [
+ "875d105d-0b6f-48db-ac81-4b08160061dc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095115Z:875d105d-0b6f-48db-ac81-4b08160061dc"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:14 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f47038ea-90b2-47e8-9581-1e8e03e9014c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "49f6751d-b2b0-423d-8469-7d9f52ec00f0"
+ ],
+ "x-ms-client-request-id": [
+ "f47038ea-90b2-47e8-9581-1e8e03e9014c",
+ "f47038ea-90b2-47e8-9581-1e8e03e9014c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11770"
+ ],
+ "x-ms-correlation-request-id": [
+ "49f6751d-b2b0-423d-8469-7d9f52ec00f0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095115Z:49f6751d-b2b0-423d-8469-7d9f52ec00f0"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:14 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f66a856a-4662-4454-b0e1-c69fa24a1f8e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "38e0dbb9-7e06-4515-8a4a-800d0d59fb6a"
+ ],
+ "x-ms-client-request-id": [
+ "f66a856a-4662-4454-b0e1-c69fa24a1f8e",
+ "f66a856a-4662-4454-b0e1-c69fa24a1f8e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11769"
+ ],
+ "x-ms-correlation-request-id": [
+ "38e0dbb9-7e06-4515-8a4a-800d0d59fb6a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095115Z:38e0dbb9-7e06-4515-8a4a-800d0d59fb6a"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:15 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bcea4263-d501-4ad1-a8fa-d5019d65ea7d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "caf48c66-4c73-493a-99fc-e4c3c817b21e"
+ ],
+ "x-ms-client-request-id": [
+ "bcea4263-d501-4ad1-a8fa-d5019d65ea7d",
+ "bcea4263-d501-4ad1-a8fa-d5019d65ea7d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11768"
+ ],
+ "x-ms-correlation-request-id": [
+ "caf48c66-4c73-493a-99fc-e4c3c817b21e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095116Z:caf48c66-4c73-493a-99fc-e4c3c817b21e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:15 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7bdbbac3-ce57-4e76-9a7b-208fe68f8496"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "5a7faba5-1fe4-43dc-936c-11d9d5167559"
+ ],
+ "x-ms-client-request-id": [
+ "7bdbbac3-ce57-4e76-9a7b-208fe68f8496",
+ "7bdbbac3-ce57-4e76-9a7b-208fe68f8496"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11767"
+ ],
+ "x-ms-correlation-request-id": [
+ "5a7faba5-1fe4-43dc-936c-11d9d5167559"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095116Z:5a7faba5-1fe4-43dc-936c-11d9d5167559"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:15 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "64d11e3a-8f32-49ff-9fbf-799b32f571a2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e3a33f0b-2779-4a19-94dd-51b376c13ef7"
+ ],
+ "x-ms-client-request-id": [
+ "64d11e3a-8f32-49ff-9fbf-799b32f571a2",
+ "64d11e3a-8f32-49ff-9fbf-799b32f571a2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11766"
+ ],
+ "x-ms-correlation-request-id": [
+ "e3a33f0b-2779-4a19-94dd-51b376c13ef7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095116Z:e3a33f0b-2779-4a19-94dd-51b376c13ef7"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:15 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0eee564d-7b5f-48f3-b42e-46885ceb17d9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "4eee96f7-6d6d-4cfa-9250-c358bbcac92d"
+ ],
+ "x-ms-client-request-id": [
+ "0eee564d-7b5f-48f3-b42e-46885ceb17d9",
+ "0eee564d-7b5f-48f3-b42e-46885ceb17d9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11765"
+ ],
+ "x-ms-correlation-request-id": [
+ "4eee96f7-6d6d-4cfa-9250-c358bbcac92d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095116Z:4eee96f7-6d6d-4cfa-9250-c358bbcac92d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:16 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "aa595af1-d3d0-4cbb-9e16-7f9e523cc6fd"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "b7a20ff1-d844-4a95-a9ba-f8f5622c8a59"
+ ],
+ "x-ms-client-request-id": [
+ "aa595af1-d3d0-4cbb-9e16-7f9e523cc6fd",
+ "aa595af1-d3d0-4cbb-9e16-7f9e523cc6fd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11764"
+ ],
+ "x-ms-correlation-request-id": [
+ "b7a20ff1-d844-4a95-a9ba-f8f5622c8a59"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095117Z:b7a20ff1-d844-4a95-a9ba-f8f5622c8a59"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:16 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "63bd542a-a0bc-4b18-bc1f-2394392855bc"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "d7007509-b745-45ac-baaa-924e65c8610b"
+ ],
+ "x-ms-client-request-id": [
+ "63bd542a-a0bc-4b18-bc1f-2394392855bc",
+ "63bd542a-a0bc-4b18-bc1f-2394392855bc"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11763"
+ ],
+ "x-ms-correlation-request-id": [
+ "d7007509-b745-45ac-baaa-924e65c8610b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095117Z:d7007509-b745-45ac-baaa-924e65c8610b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:16 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "96ec3e6d-f4f1-4d06-a983-a3476736c5b7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "9bdbfb55-f275-4840-b46b-adab12660744"
+ ],
+ "x-ms-client-request-id": [
+ "96ec3e6d-f4f1-4d06-a983-a3476736c5b7",
+ "96ec3e6d-f4f1-4d06-a983-a3476736c5b7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11762"
+ ],
+ "x-ms-correlation-request-id": [
+ "9bdbfb55-f275-4840-b46b-adab12660744"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095117Z:9bdbfb55-f275-4840-b46b-adab12660744"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:17 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "51e8a159-575d-4ee5-b459-4fa194d43d1f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "066aa1e4-ed85-444c-adf4-6d7ab0af99f2"
+ ],
+ "x-ms-client-request-id": [
+ "51e8a159-575d-4ee5-b459-4fa194d43d1f",
+ "51e8a159-575d-4ee5-b459-4fa194d43d1f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11761"
+ ],
+ "x-ms-correlation-request-id": [
+ "066aa1e4-ed85-444c-adf4-6d7ab0af99f2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095117Z:066aa1e4-ed85-444c-adf4-6d7ab0af99f2"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:17 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8b49fb3b-65ff-44f0-80bb-282660c632da"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "b6990724-2fd0-4d3d-9337-5a208c4104b5"
+ ],
+ "x-ms-client-request-id": [
+ "8b49fb3b-65ff-44f0-80bb-282660c632da",
+ "8b49fb3b-65ff-44f0-80bb-282660c632da"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11760"
+ ],
+ "x-ms-correlation-request-id": [
+ "b6990724-2fd0-4d3d-9337-5a208c4104b5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095118Z:b6990724-2fd0-4d3d-9337-5a208c4104b5"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:17 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "441308c8-19c4-43d8-826e-3934ef3184af"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f60181c1-0b4c-4b82-8b5a-889fde399904"
+ ],
+ "x-ms-client-request-id": [
+ "441308c8-19c4-43d8-826e-3934ef3184af",
+ "441308c8-19c4-43d8-826e-3934ef3184af"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11759"
+ ],
+ "x-ms-correlation-request-id": [
+ "f60181c1-0b4c-4b82-8b5a-889fde399904"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095118Z:f60181c1-0b4c-4b82-8b5a-889fde399904"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:17 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "84a1846d-6db7-4ec9-a4a7-9642356299ec"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "b3ccd205-278d-4c7f-9d4f-3659b3cafcbf"
+ ],
+ "x-ms-client-request-id": [
+ "84a1846d-6db7-4ec9-a4a7-9642356299ec",
+ "84a1846d-6db7-4ec9-a4a7-9642356299ec"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11758"
+ ],
+ "x-ms-correlation-request-id": [
+ "b3ccd205-278d-4c7f-9d4f-3659b3cafcbf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095118Z:b3ccd205-278d-4c7f-9d4f-3659b3cafcbf"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:17 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0a121f76-55d2-4a55-b6c6-f0d2366acf30"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "bf695531-8454-4939-b081-6996f23e2e36"
+ ],
+ "x-ms-client-request-id": [
+ "0a121f76-55d2-4a55-b6c6-f0d2366acf30",
+ "0a121f76-55d2-4a55-b6c6-f0d2366acf30"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11757"
+ ],
+ "x-ms-correlation-request-id": [
+ "bf695531-8454-4939-b081-6996f23e2e36"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095118Z:bf695531-8454-4939-b081-6996f23e2e36"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:18 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3fd6c599-5639-4d11-bfc0-448d7ab39e26"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "4cc52c6f-8d86-48d1-8495-67c6b210064a"
+ ],
+ "x-ms-client-request-id": [
+ "3fd6c599-5639-4d11-bfc0-448d7ab39e26",
+ "3fd6c599-5639-4d11-bfc0-448d7ab39e26"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11756"
+ ],
+ "x-ms-correlation-request-id": [
+ "4cc52c6f-8d86-48d1-8495-67c6b210064a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095119Z:4cc52c6f-8d86-48d1-8495-67c6b210064a"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:18 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "36cc5bc0-e948-4d55-aefb-2e9456e39181"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "8873bad9-53f3-43f2-a4c3-0da508d63980"
+ ],
+ "x-ms-client-request-id": [
+ "36cc5bc0-e948-4d55-aefb-2e9456e39181",
+ "36cc5bc0-e948-4d55-aefb-2e9456e39181"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11755"
+ ],
+ "x-ms-correlation-request-id": [
+ "8873bad9-53f3-43f2-a4c3-0da508d63980"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095119Z:8873bad9-53f3-43f2-a4c3-0da508d63980"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:18 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e12b4b9e-47fd-484e-adda-470a422e3236"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e7c65cae-2d10-47c9-ba6f-aa04827504af"
+ ],
+ "x-ms-client-request-id": [
+ "e12b4b9e-47fd-484e-adda-470a422e3236",
+ "e12b4b9e-47fd-484e-adda-470a422e3236"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11754"
+ ],
+ "x-ms-correlation-request-id": [
+ "e7c65cae-2d10-47c9-ba6f-aa04827504af"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095119Z:e7c65cae-2d10-47c9-ba6f-aa04827504af"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:18 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2a37c687-f39b-409f-b5fc-993ddf48b569"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "024f3346-29f6-41dc-bbb1-e2fcd641da4b"
+ ],
+ "x-ms-client-request-id": [
+ "2a37c687-f39b-409f-b5fc-993ddf48b569",
+ "2a37c687-f39b-409f-b5fc-993ddf48b569"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11753"
+ ],
+ "x-ms-correlation-request-id": [
+ "024f3346-29f6-41dc-bbb1-e2fcd641da4b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095119Z:024f3346-29f6-41dc-bbb1-e2fcd641da4b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:18 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9225aa47-4668-45c3-8c69-0114b4151aa3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "900b2cc7-2a55-4c1e-b331-f073480c6ad6"
+ ],
+ "x-ms-client-request-id": [
+ "9225aa47-4668-45c3-8c69-0114b4151aa3",
+ "9225aa47-4668-45c3-8c69-0114b4151aa3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11752"
+ ],
+ "x-ms-correlation-request-id": [
+ "900b2cc7-2a55-4c1e-b331-f073480c6ad6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095119Z:900b2cc7-2a55-4c1e-b331-f073480c6ad6"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:19 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "873eb697-ddd6-4d0c-8308-441a2dd08cb9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "b256240c-f6a5-4446-9313-7f69d22a3522"
+ ],
+ "x-ms-client-request-id": [
+ "873eb697-ddd6-4d0c-8308-441a2dd08cb9",
+ "873eb697-ddd6-4d0c-8308-441a2dd08cb9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11751"
+ ],
+ "x-ms-correlation-request-id": [
+ "b256240c-f6a5-4446-9313-7f69d22a3522"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095120Z:b256240c-f6a5-4446-9313-7f69d22a3522"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:19 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "249481dc-214a-4111-b9e0-856e4b09fbec"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "7099b1ad-55d4-4c58-a721-9cb886ff068b"
+ ],
+ "x-ms-client-request-id": [
+ "249481dc-214a-4111-b9e0-856e4b09fbec",
+ "249481dc-214a-4111-b9e0-856e4b09fbec"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11750"
+ ],
+ "x-ms-correlation-request-id": [
+ "7099b1ad-55d4-4c58-a721-9cb886ff068b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095120Z:7099b1ad-55d4-4c58-a721-9cb886ff068b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:19 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "953b1404-ff49-4e3d-a775-1439a6aab79a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "dceac452-8bca-493c-9f28-3d8423966f3f"
+ ],
+ "x-ms-client-request-id": [
+ "953b1404-ff49-4e3d-a775-1439a6aab79a",
+ "953b1404-ff49-4e3d-a775-1439a6aab79a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11749"
+ ],
+ "x-ms-correlation-request-id": [
+ "dceac452-8bca-493c-9f28-3d8423966f3f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095120Z:dceac452-8bca-493c-9f28-3d8423966f3f"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:19 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "52833e9b-08c5-412c-ac1d-d6b472e1d767"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "01a9b79a-8905-449b-8550-839484afe431"
+ ],
+ "x-ms-client-request-id": [
+ "52833e9b-08c5-412c-ac1d-d6b472e1d767",
+ "52833e9b-08c5-412c-ac1d-d6b472e1d767"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11748"
+ ],
+ "x-ms-correlation-request-id": [
+ "01a9b79a-8905-449b-8550-839484afe431"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095120Z:01a9b79a-8905-449b-8550-839484afe431"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:20 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4e824b4d-41ef-4417-92a2-700aab845c2e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "5ceff5ed-e7a7-437b-a1ab-7a0a350b3393"
+ ],
+ "x-ms-client-request-id": [
+ "4e824b4d-41ef-4417-92a2-700aab845c2e",
+ "4e824b4d-41ef-4417-92a2-700aab845c2e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11747"
+ ],
+ "x-ms-correlation-request-id": [
+ "5ceff5ed-e7a7-437b-a1ab-7a0a350b3393"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095121Z:5ceff5ed-e7a7-437b-a1ab-7a0a350b3393"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:20 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "81d912f9-8bbc-4e5b-a9a9-34eb2b9cbf11"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "629f010d-6f9b-42b7-8f33-9f500f511df9"
+ ],
+ "x-ms-client-request-id": [
+ "81d912f9-8bbc-4e5b-a9a9-34eb2b9cbf11",
+ "81d912f9-8bbc-4e5b-a9a9-34eb2b9cbf11"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11746"
+ ],
+ "x-ms-correlation-request-id": [
+ "629f010d-6f9b-42b7-8f33-9f500f511df9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095121Z:629f010d-6f9b-42b7-8f33-9f500f511df9"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:20 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ed7ce5ca-2308-4eef-ad78-4237f9b109e5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "9aff690e-0168-4235-b35c-613d95780716"
+ ],
+ "x-ms-client-request-id": [
+ "ed7ce5ca-2308-4eef-ad78-4237f9b109e5",
+ "ed7ce5ca-2308-4eef-ad78-4237f9b109e5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11745"
+ ],
+ "x-ms-correlation-request-id": [
+ "9aff690e-0168-4235-b35c-613d95780716"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095121Z:9aff690e-0168-4235-b35c-613d95780716"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:20 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f6b250c3-d7f7-46ee-bfdc-a368ae12427a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c561ae7e-5bd6-46f2-8485-d547676684be"
+ ],
+ "x-ms-client-request-id": [
+ "f6b250c3-d7f7-46ee-bfdc-a368ae12427a",
+ "f6b250c3-d7f7-46ee-bfdc-a368ae12427a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11744"
+ ],
+ "x-ms-correlation-request-id": [
+ "c561ae7e-5bd6-46f2-8485-d547676684be"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095121Z:c561ae7e-5bd6-46f2-8485-d547676684be"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:21 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f7297dd9-9726-40d2-9eb0-2f6798ee4b3a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e04526a3-d4db-4197-90e5-fa5d9e6225df"
+ ],
+ "x-ms-client-request-id": [
+ "f7297dd9-9726-40d2-9eb0-2f6798ee4b3a",
+ "f7297dd9-9726-40d2-9eb0-2f6798ee4b3a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11743"
+ ],
+ "x-ms-correlation-request-id": [
+ "e04526a3-d4db-4197-90e5-fa5d9e6225df"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095122Z:e04526a3-d4db-4197-90e5-fa5d9e6225df"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:21 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8cc87bfa-e177-4320-9bef-2a97e6ac17f2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "99302eaf-8339-4762-b536-db25e92d5573"
+ ],
+ "x-ms-client-request-id": [
+ "8cc87bfa-e177-4320-9bef-2a97e6ac17f2",
+ "8cc87bfa-e177-4320-9bef-2a97e6ac17f2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11742"
+ ],
+ "x-ms-correlation-request-id": [
+ "99302eaf-8339-4762-b536-db25e92d5573"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095122Z:99302eaf-8339-4762-b536-db25e92d5573"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:21 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a5795cb9-080a-4637-a183-29d0ef8d0637"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "149e672f-6d62-4d47-b8c1-358aab9c4f2b"
+ ],
+ "x-ms-client-request-id": [
+ "a5795cb9-080a-4637-a183-29d0ef8d0637",
+ "a5795cb9-080a-4637-a183-29d0ef8d0637"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11741"
+ ],
+ "x-ms-correlation-request-id": [
+ "149e672f-6d62-4d47-b8c1-358aab9c4f2b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095122Z:149e672f-6d62-4d47-b8c1-358aab9c4f2b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:21 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cf808bf3-1ca3-4426-8dfd-6c5916d0a1f8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "eaa41022-11fd-4ee8-bfe8-5eed90a1c46c"
+ ],
+ "x-ms-client-request-id": [
+ "cf808bf3-1ca3-4426-8dfd-6c5916d0a1f8",
+ "cf808bf3-1ca3-4426-8dfd-6c5916d0a1f8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11740"
+ ],
+ "x-ms-correlation-request-id": [
+ "eaa41022-11fd-4ee8-bfe8-5eed90a1c46c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095122Z:eaa41022-11fd-4ee8-bfe8-5eed90a1c46c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:21 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "97e2850b-73c0-4fc7-b4e5-c01555ccc97f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e7961dcf-4171-4f0f-a08a-e88af951a76e"
+ ],
+ "x-ms-client-request-id": [
+ "97e2850b-73c0-4fc7-b4e5-c01555ccc97f",
+ "97e2850b-73c0-4fc7-b4e5-c01555ccc97f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11739"
+ ],
+ "x-ms-correlation-request-id": [
+ "e7961dcf-4171-4f0f-a08a-e88af951a76e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095122Z:e7961dcf-4171-4f0f-a08a-e88af951a76e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:22 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6c830e86-e12c-49ce-a3b6-4c1351f7611d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "8cc0e872-a09a-45be-9306-3988281dac55"
+ ],
+ "x-ms-client-request-id": [
+ "6c830e86-e12c-49ce-a3b6-4c1351f7611d",
+ "6c830e86-e12c-49ce-a3b6-4c1351f7611d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11738"
+ ],
+ "x-ms-correlation-request-id": [
+ "8cc0e872-a09a-45be-9306-3988281dac55"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095123Z:8cc0e872-a09a-45be-9306-3988281dac55"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:22 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "90a184ca-2bfa-46d2-83a4-d40cd0c616ff"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "80108b20-5947-4bb4-8cc2-25dbca2d5ae4"
+ ],
+ "x-ms-client-request-id": [
+ "90a184ca-2bfa-46d2-83a4-d40cd0c616ff",
+ "90a184ca-2bfa-46d2-83a4-d40cd0c616ff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11737"
+ ],
+ "x-ms-correlation-request-id": [
+ "80108b20-5947-4bb4-8cc2-25dbca2d5ae4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095123Z:80108b20-5947-4bb4-8cc2-25dbca2d5ae4"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:22 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "827a7caf-df49-452b-96b3-5f5a39d44f67"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "dec1550e-1269-4a88-9d4b-ae7d59eea04b"
+ ],
+ "x-ms-client-request-id": [
+ "827a7caf-df49-452b-96b3-5f5a39d44f67",
+ "827a7caf-df49-452b-96b3-5f5a39d44f67"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11736"
+ ],
+ "x-ms-correlation-request-id": [
+ "dec1550e-1269-4a88-9d4b-ae7d59eea04b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095123Z:dec1550e-1269-4a88-9d4b-ae7d59eea04b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:23 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "078d980a-9ca4-40b6-841d-192261a4aedc"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "94820f47-6181-483b-b6d6-b5b8bdbadc4c"
+ ],
+ "x-ms-client-request-id": [
+ "078d980a-9ca4-40b6-841d-192261a4aedc",
+ "078d980a-9ca4-40b6-841d-192261a4aedc"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11735"
+ ],
+ "x-ms-correlation-request-id": [
+ "94820f47-6181-483b-b6d6-b5b8bdbadc4c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095124Z:94820f47-6181-483b-b6d6-b5b8bdbadc4c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:23 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "255e4ec6-13b8-41d3-8e39-46523b6e4434"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "fa1bd66c-6011-4f36-a67a-0a20c9173ac0"
+ ],
+ "x-ms-client-request-id": [
+ "255e4ec6-13b8-41d3-8e39-46523b6e4434",
+ "255e4ec6-13b8-41d3-8e39-46523b6e4434"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11734"
+ ],
+ "x-ms-correlation-request-id": [
+ "fa1bd66c-6011-4f36-a67a-0a20c9173ac0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095124Z:fa1bd66c-6011-4f36-a67a-0a20c9173ac0"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:23 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "571c13e2-55db-4cbb-9b5f-e8b4c0441fc8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "63e21f95-f127-4d4e-8bcc-717df1d9f065"
+ ],
+ "x-ms-client-request-id": [
+ "571c13e2-55db-4cbb-9b5f-e8b4c0441fc8",
+ "571c13e2-55db-4cbb-9b5f-e8b4c0441fc8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11733"
+ ],
+ "x-ms-correlation-request-id": [
+ "63e21f95-f127-4d4e-8bcc-717df1d9f065"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095124Z:63e21f95-f127-4d4e-8bcc-717df1d9f065"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:23 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "29c64af8-1436-4564-b6f7-0dfe24916653"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "0c7a5274-9bb9-491b-8bac-67080d5195bd"
+ ],
+ "x-ms-client-request-id": [
+ "29c64af8-1436-4564-b6f7-0dfe24916653",
+ "29c64af8-1436-4564-b6f7-0dfe24916653"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11732"
+ ],
+ "x-ms-correlation-request-id": [
+ "0c7a5274-9bb9-491b-8bac-67080d5195bd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095124Z:0c7a5274-9bb9-491b-8bac-67080d5195bd"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:23 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "944de81f-0d5f-44e5-a5b1-649f9d12608d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "71f22fa2-efbd-4ffb-a904-95e129fc0ad6"
+ ],
+ "x-ms-client-request-id": [
+ "944de81f-0d5f-44e5-a5b1-649f9d12608d",
+ "944de81f-0d5f-44e5-a5b1-649f9d12608d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11731"
+ ],
+ "x-ms-correlation-request-id": [
+ "71f22fa2-efbd-4ffb-a904-95e129fc0ad6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095124Z:71f22fa2-efbd-4ffb-a904-95e129fc0ad6"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:24 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ed0339fd-88d8-4ee1-b674-4eedb8c15bb2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "a456ed7a-0ebb-46fa-b864-de39d24cfbfb"
+ ],
+ "x-ms-client-request-id": [
+ "ed0339fd-88d8-4ee1-b674-4eedb8c15bb2",
+ "ed0339fd-88d8-4ee1-b674-4eedb8c15bb2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11730"
+ ],
+ "x-ms-correlation-request-id": [
+ "a456ed7a-0ebb-46fa-b864-de39d24cfbfb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095125Z:a456ed7a-0ebb-46fa-b864-de39d24cfbfb"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:24 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "85fc87c8-3acd-4f46-9135-95dd923fbae8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "3109ae04-4984-43cd-8995-c4e406076b52"
+ ],
+ "x-ms-client-request-id": [
+ "85fc87c8-3acd-4f46-9135-95dd923fbae8",
+ "85fc87c8-3acd-4f46-9135-95dd923fbae8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11729"
+ ],
+ "x-ms-correlation-request-id": [
+ "3109ae04-4984-43cd-8995-c4e406076b52"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095125Z:3109ae04-4984-43cd-8995-c4e406076b52"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:24 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3d6d33cf-5548-4288-8f64-a35c7d7de555"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e65a75be-51b6-4267-ac18-1bda4199eead"
+ ],
+ "x-ms-client-request-id": [
+ "3d6d33cf-5548-4288-8f64-a35c7d7de555",
+ "3d6d33cf-5548-4288-8f64-a35c7d7de555"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11728"
+ ],
+ "x-ms-correlation-request-id": [
+ "e65a75be-51b6-4267-ac18-1bda4199eead"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095125Z:e65a75be-51b6-4267-ac18-1bda4199eead"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:24 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "06f0e07e-9a78-481a-8e0a-a399a67ad23e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "4dc9dc9c-15dd-4ca8-a4ec-2cd392d8434d"
+ ],
+ "x-ms-client-request-id": [
+ "06f0e07e-9a78-481a-8e0a-a399a67ad23e",
+ "06f0e07e-9a78-481a-8e0a-a399a67ad23e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11727"
+ ],
+ "x-ms-correlation-request-id": [
+ "4dc9dc9c-15dd-4ca8-a4ec-2cd392d8434d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095125Z:4dc9dc9c-15dd-4ca8-a4ec-2cd392d8434d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:25 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "18c08f2b-e4bc-4a4d-94b6-a911e5427305"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "7fef8437-dc9d-4f3f-989c-c83ec2ea29ff"
+ ],
+ "x-ms-client-request-id": [
+ "18c08f2b-e4bc-4a4d-94b6-a911e5427305",
+ "18c08f2b-e4bc-4a4d-94b6-a911e5427305"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11726"
+ ],
+ "x-ms-correlation-request-id": [
+ "7fef8437-dc9d-4f3f-989c-c83ec2ea29ff"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095125Z:7fef8437-dc9d-4f3f-989c-c83ec2ea29ff"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:25 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c2da4a5e-9075-4b07-8810-63cff33d2088"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "bd7e9ad9-2347-455a-967e-b3fd633d4ac8"
+ ],
+ "x-ms-client-request-id": [
+ "c2da4a5e-9075-4b07-8810-63cff33d2088",
+ "c2da4a5e-9075-4b07-8810-63cff33d2088"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11725"
+ ],
+ "x-ms-correlation-request-id": [
+ "bd7e9ad9-2347-455a-967e-b3fd633d4ac8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095126Z:bd7e9ad9-2347-455a-967e-b3fd633d4ac8"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:25 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a7785521-f847-406e-86e4-1a4a6c659bc3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "3502e4df-3e72-4ae5-9ce1-4e517994fd68"
+ ],
+ "x-ms-client-request-id": [
+ "a7785521-f847-406e-86e4-1a4a6c659bc3",
+ "a7785521-f847-406e-86e4-1a4a6c659bc3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11724"
+ ],
+ "x-ms-correlation-request-id": [
+ "3502e4df-3e72-4ae5-9ce1-4e517994fd68"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095126Z:3502e4df-3e72-4ae5-9ce1-4e517994fd68"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:25 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5678d7df-b0d9-4f33-8e88-8d8fa07b4c0c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "7c224406-972f-4c93-bc71-39173b07d226"
+ ],
+ "x-ms-client-request-id": [
+ "5678d7df-b0d9-4f33-8e88-8d8fa07b4c0c",
+ "5678d7df-b0d9-4f33-8e88-8d8fa07b4c0c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11723"
+ ],
+ "x-ms-correlation-request-id": [
+ "7c224406-972f-4c93-bc71-39173b07d226"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095126Z:7c224406-972f-4c93-bc71-39173b07d226"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:25 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "52f0b62e-8345-4951-b380-7299a571a391"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "fbc52a8e-5df5-408f-873f-db0ac30f0dc2"
+ ],
+ "x-ms-client-request-id": [
+ "52f0b62e-8345-4951-b380-7299a571a391",
+ "52f0b62e-8345-4951-b380-7299a571a391"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11722"
+ ],
+ "x-ms-correlation-request-id": [
+ "fbc52a8e-5df5-408f-873f-db0ac30f0dc2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095126Z:fbc52a8e-5df5-408f-873f-db0ac30f0dc2"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:26 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "546aa935-bd3d-4af1-85db-2dc083ff1625"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "7928b7e3-94fd-4ab9-934d-659bdf971423"
+ ],
+ "x-ms-client-request-id": [
+ "546aa935-bd3d-4af1-85db-2dc083ff1625",
+ "546aa935-bd3d-4af1-85db-2dc083ff1625"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11721"
+ ],
+ "x-ms-correlation-request-id": [
+ "7928b7e3-94fd-4ab9-934d-659bdf971423"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095127Z:7928b7e3-94fd-4ab9-934d-659bdf971423"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:26 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2f190a95-2e39-4c7a-bc0f-aaa6bfc06878"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "cee142b6-7ec5-4280-b978-08c8fc30c962"
+ ],
+ "x-ms-client-request-id": [
+ "2f190a95-2e39-4c7a-bc0f-aaa6bfc06878",
+ "2f190a95-2e39-4c7a-bc0f-aaa6bfc06878"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11720"
+ ],
+ "x-ms-correlation-request-id": [
+ "cee142b6-7ec5-4280-b978-08c8fc30c962"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095127Z:cee142b6-7ec5-4280-b978-08c8fc30c962"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:26 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cfdb0741-1627-4371-b172-509d06dae1c2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "3c761a5c-6950-4177-af9b-fa88a3f6d532"
+ ],
+ "x-ms-client-request-id": [
+ "cfdb0741-1627-4371-b172-509d06dae1c2",
+ "cfdb0741-1627-4371-b172-509d06dae1c2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11719"
+ ],
+ "x-ms-correlation-request-id": [
+ "3c761a5c-6950-4177-af9b-fa88a3f6d532"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095127Z:3c761a5c-6950-4177-af9b-fa88a3f6d532"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:26 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "37b5fb1b-3da3-4768-9f1c-e25430b9b442"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "3f72bd98-6dcf-443f-ae14-71f6f883782b"
+ ],
+ "x-ms-client-request-id": [
+ "37b5fb1b-3da3-4768-9f1c-e25430b9b442",
+ "37b5fb1b-3da3-4768-9f1c-e25430b9b442"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11718"
+ ],
+ "x-ms-correlation-request-id": [
+ "3f72bd98-6dcf-443f-ae14-71f6f883782b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095127Z:3f72bd98-6dcf-443f-ae14-71f6f883782b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:26 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "686a56ea-98f7-4b27-9a28-86b7c4406d3f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "666a0346-7584-4834-8bc5-e8f4ed73aad1"
+ ],
+ "x-ms-client-request-id": [
+ "686a56ea-98f7-4b27-9a28-86b7c4406d3f",
+ "686a56ea-98f7-4b27-9a28-86b7c4406d3f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11717"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "666a0346-7584-4834-8bc5-e8f4ed73aad1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095127Z:666a0346-7584-4834-8bc5-e8f4ed73aad1"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:27 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4c8fc8a6-00a8-46ad-904b-15cbfa77d0bf"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "efabea80-0078-4761-b962-44b5de816cf2"
+ ],
+ "x-ms-client-request-id": [
+ "4c8fc8a6-00a8-46ad-904b-15cbfa77d0bf",
+ "4c8fc8a6-00a8-46ad-904b-15cbfa77d0bf"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11716"
+ ],
+ "x-ms-correlation-request-id": [
+ "efabea80-0078-4761-b962-44b5de816cf2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095128Z:efabea80-0078-4761-b962-44b5de816cf2"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:27 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c9f4d0c9-76ae-4c96-9bff-7fdaa66a826c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "a0a0ab30-e6b1-4767-8722-c7e99c2a3c3c"
+ ],
+ "x-ms-client-request-id": [
+ "c9f4d0c9-76ae-4c96-9bff-7fdaa66a826c",
+ "c9f4d0c9-76ae-4c96-9bff-7fdaa66a826c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11715"
+ ],
+ "x-ms-correlation-request-id": [
+ "a0a0ab30-e6b1-4767-8722-c7e99c2a3c3c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095128Z:a0a0ab30-e6b1-4767-8722-c7e99c2a3c3c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:27 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d9089b8f-5aef-4a9c-81b0-5d3a0ae96bf1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c29dce5f-4f93-481d-a8ed-cfb7a5f08324"
+ ],
+ "x-ms-client-request-id": [
+ "d9089b8f-5aef-4a9c-81b0-5d3a0ae96bf1",
+ "d9089b8f-5aef-4a9c-81b0-5d3a0ae96bf1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11714"
+ ],
+ "x-ms-correlation-request-id": [
+ "c29dce5f-4f93-481d-a8ed-cfb7a5f08324"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095129Z:c29dce5f-4f93-481d-a8ed-cfb7a5f08324"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:28 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "60f823ad-3c24-466f-b0b0-920c8be4c244"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c036bfbf-3c31-4206-9c7b-e327cc9087c5"
+ ],
+ "x-ms-client-request-id": [
+ "60f823ad-3c24-466f-b0b0-920c8be4c244",
+ "60f823ad-3c24-466f-b0b0-920c8be4c244"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11713"
+ ],
+ "x-ms-correlation-request-id": [
+ "c036bfbf-3c31-4206-9c7b-e327cc9087c5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095129Z:c036bfbf-3c31-4206-9c7b-e327cc9087c5"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:28 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c6d5f1a5-926b-47c1-b17b-80e8d7d430d4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "3f0ef9de-26c9-47ee-9411-ec5e3596a2ef"
+ ],
+ "x-ms-client-request-id": [
+ "c6d5f1a5-926b-47c1-b17b-80e8d7d430d4",
+ "c6d5f1a5-926b-47c1-b17b-80e8d7d430d4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11712"
+ ],
+ "x-ms-correlation-request-id": [
+ "3f0ef9de-26c9-47ee-9411-ec5e3596a2ef"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095129Z:3f0ef9de-26c9-47ee-9411-ec5e3596a2ef"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:28 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cd50b8af-5b43-4ea7-a998-c0c8d2c7f5ae"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "ca3af8dc-f59d-4cf2-834b-a1b767d8094c"
+ ],
+ "x-ms-client-request-id": [
+ "cd50b8af-5b43-4ea7-a998-c0c8d2c7f5ae",
+ "cd50b8af-5b43-4ea7-a998-c0c8d2c7f5ae"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11711"
+ ],
+ "x-ms-correlation-request-id": [
+ "ca3af8dc-f59d-4cf2-834b-a1b767d8094c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095129Z:ca3af8dc-f59d-4cf2-834b-a1b767d8094c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:28 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bb979865-cfe8-44e2-a9dd-912b69dd5b73"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "8aaa1bbc-e6cc-4371-a68b-ba69ce1ce4fd"
+ ],
+ "x-ms-client-request-id": [
+ "bb979865-cfe8-44e2-a9dd-912b69dd5b73",
+ "bb979865-cfe8-44e2-a9dd-912b69dd5b73"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11710"
+ ],
+ "x-ms-correlation-request-id": [
+ "8aaa1bbc-e6cc-4371-a68b-ba69ce1ce4fd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095129Z:8aaa1bbc-e6cc-4371-a68b-ba69ce1ce4fd"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:29 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "eed5c398-284f-4181-9fb9-5e3d8573a343"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "3b4ca55a-c9c0-43ea-84db-f7fe71bcc4f9"
+ ],
+ "x-ms-client-request-id": [
+ "eed5c398-284f-4181-9fb9-5e3d8573a343",
+ "eed5c398-284f-4181-9fb9-5e3d8573a343"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11709"
+ ],
+ "x-ms-correlation-request-id": [
+ "3b4ca55a-c9c0-43ea-84db-f7fe71bcc4f9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095130Z:3b4ca55a-c9c0-43ea-84db-f7fe71bcc4f9"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:29 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "84e042c6-2fbf-4311-8fb0-859e66bc9fe3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "06608794-dd2c-4c47-bfee-cf1c9632f41d"
+ ],
+ "x-ms-client-request-id": [
+ "84e042c6-2fbf-4311-8fb0-859e66bc9fe3",
+ "84e042c6-2fbf-4311-8fb0-859e66bc9fe3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11708"
+ ],
+ "x-ms-correlation-request-id": [
+ "06608794-dd2c-4c47-bfee-cf1c9632f41d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095130Z:06608794-dd2c-4c47-bfee-cf1c9632f41d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:29 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7bee8f52-ef9c-47cd-b144-2939c8df6140"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e607c047-15d2-4a0f-9116-f3eabe1e57df"
+ ],
+ "x-ms-client-request-id": [
+ "7bee8f52-ef9c-47cd-b144-2939c8df6140",
+ "7bee8f52-ef9c-47cd-b144-2939c8df6140"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11707"
+ ],
+ "x-ms-correlation-request-id": [
+ "e607c047-15d2-4a0f-9116-f3eabe1e57df"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095130Z:e607c047-15d2-4a0f-9116-f3eabe1e57df"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:29 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a2816918-87d2-4573-b8be-4ff1e2222c7f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "385b81b6-78b8-4a2e-9c18-f63cc349d388"
+ ],
+ "x-ms-client-request-id": [
+ "a2816918-87d2-4573-b8be-4ff1e2222c7f",
+ "a2816918-87d2-4573-b8be-4ff1e2222c7f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11706"
+ ],
+ "x-ms-correlation-request-id": [
+ "385b81b6-78b8-4a2e-9c18-f63cc349d388"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095130Z:385b81b6-78b8-4a2e-9c18-f63cc349d388"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:30 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e47f7ffe-bcc9-4977-ad88-16d3856a3cb5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "d03f0c55-6ab9-4314-ad6a-d771252b6dfa"
+ ],
+ "x-ms-client-request-id": [
+ "e47f7ffe-bcc9-4977-ad88-16d3856a3cb5",
+ "e47f7ffe-bcc9-4977-ad88-16d3856a3cb5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11705"
+ ],
+ "x-ms-correlation-request-id": [
+ "d03f0c55-6ab9-4314-ad6a-d771252b6dfa"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095131Z:d03f0c55-6ab9-4314-ad6a-d771252b6dfa"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:30 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9b55ccd8-dd87-4ea5-be8b-7ae1c92519ec"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "5ec6d844-0a41-4dd7-8dd7-1dbbbd0ae834"
+ ],
+ "x-ms-client-request-id": [
+ "9b55ccd8-dd87-4ea5-be8b-7ae1c92519ec",
+ "9b55ccd8-dd87-4ea5-be8b-7ae1c92519ec"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11704"
+ ],
+ "x-ms-correlation-request-id": [
+ "5ec6d844-0a41-4dd7-8dd7-1dbbbd0ae834"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095131Z:5ec6d844-0a41-4dd7-8dd7-1dbbbd0ae834"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:30 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9c1fa597-5b08-4909-b91e-69bc0e5a4578"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f2c05693-d8bc-48bf-a03b-66c92bdb89d5"
+ ],
+ "x-ms-client-request-id": [
+ "9c1fa597-5b08-4909-b91e-69bc0e5a4578",
+ "9c1fa597-5b08-4909-b91e-69bc0e5a4578"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11703"
+ ],
+ "x-ms-correlation-request-id": [
+ "f2c05693-d8bc-48bf-a03b-66c92bdb89d5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095131Z:f2c05693-d8bc-48bf-a03b-66c92bdb89d5"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:30 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "64445e71-ce1d-49ec-a2e8-d4e64b3a9cfb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "2357ca73-0e37-4658-80eb-398b0f0389e3"
+ ],
+ "x-ms-client-request-id": [
+ "64445e71-ce1d-49ec-a2e8-d4e64b3a9cfb",
+ "64445e71-ce1d-49ec-a2e8-d4e64b3a9cfb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11702"
+ ],
+ "x-ms-correlation-request-id": [
+ "2357ca73-0e37-4658-80eb-398b0f0389e3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095132Z:2357ca73-0e37-4658-80eb-398b0f0389e3"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:31 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "35a05d00-140c-458f-9050-99bddcb936cd"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e8c11815-9e66-4dcd-ae5a-3aebba334013"
+ ],
+ "x-ms-client-request-id": [
+ "35a05d00-140c-458f-9050-99bddcb936cd",
+ "35a05d00-140c-458f-9050-99bddcb936cd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11701"
+ ],
+ "x-ms-correlation-request-id": [
+ "e8c11815-9e66-4dcd-ae5a-3aebba334013"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095132Z:e8c11815-9e66-4dcd-ae5a-3aebba334013"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:31 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d4348b51-98cc-4815-8483-2c216c2b8e8d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "2fc15ee7-1c82-4c5a-b1c4-dab022220279"
+ ],
+ "x-ms-client-request-id": [
+ "d4348b51-98cc-4815-8483-2c216c2b8e8d",
+ "d4348b51-98cc-4815-8483-2c216c2b8e8d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11700"
+ ],
+ "x-ms-correlation-request-id": [
+ "2fc15ee7-1c82-4c5a-b1c4-dab022220279"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095132Z:2fc15ee7-1c82-4c5a-b1c4-dab022220279"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:31 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "89b70f51-10b7-43c6-a195-4d877a960f5b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c5b1f93f-2498-466f-be50-a901ef9de0f6"
+ ],
+ "x-ms-client-request-id": [
+ "89b70f51-10b7-43c6-a195-4d877a960f5b",
+ "89b70f51-10b7-43c6-a195-4d877a960f5b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11699"
+ ],
+ "x-ms-correlation-request-id": [
+ "c5b1f93f-2498-466f-be50-a901ef9de0f6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095133Z:c5b1f93f-2498-466f-be50-a901ef9de0f6"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:32 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a48f885f-ea42-4b31-88fd-203801ffb655"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c6e83c2c-3863-4204-8e66-1608903cc0a7"
+ ],
+ "x-ms-client-request-id": [
+ "a48f885f-ea42-4b31-88fd-203801ffb655",
+ "a48f885f-ea42-4b31-88fd-203801ffb655"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11698"
+ ],
+ "x-ms-correlation-request-id": [
+ "c6e83c2c-3863-4204-8e66-1608903cc0a7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095133Z:c6e83c2c-3863-4204-8e66-1608903cc0a7"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:32 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "de2c71ac-6dd6-4847-9422-761769cf1aa7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "4e98f6ae-7a76-4cbf-a6cf-ac53078ffcdd"
+ ],
+ "x-ms-client-request-id": [
+ "de2c71ac-6dd6-4847-9422-761769cf1aa7",
+ "de2c71ac-6dd6-4847-9422-761769cf1aa7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11697"
+ ],
+ "x-ms-correlation-request-id": [
+ "4e98f6ae-7a76-4cbf-a6cf-ac53078ffcdd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095133Z:4e98f6ae-7a76-4cbf-a6cf-ac53078ffcdd"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:32 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4a2a9e7d-9b1e-479d-90b3-156e66aca049"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "5fde5e6c-61b7-4a9a-81d2-822f8cddb6d4"
+ ],
+ "x-ms-client-request-id": [
+ "4a2a9e7d-9b1e-479d-90b3-156e66aca049",
+ "4a2a9e7d-9b1e-479d-90b3-156e66aca049"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11696"
+ ],
+ "x-ms-correlation-request-id": [
+ "5fde5e6c-61b7-4a9a-81d2-822f8cddb6d4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095134Z:5fde5e6c-61b7-4a9a-81d2-822f8cddb6d4"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:33 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e4bb5669-c473-4240-bf14-3c3ff5622eb2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "af29802d-9ae0-4eb9-a59d-a1720b404bd2"
+ ],
+ "x-ms-client-request-id": [
+ "e4bb5669-c473-4240-bf14-3c3ff5622eb2",
+ "e4bb5669-c473-4240-bf14-3c3ff5622eb2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11695"
+ ],
+ "x-ms-correlation-request-id": [
+ "af29802d-9ae0-4eb9-a59d-a1720b404bd2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095135Z:af29802d-9ae0-4eb9-a59d-a1720b404bd2"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:34 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ed2b2e24-7379-4a95-b8f8-621ecc0fe33b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "51f41141-a3bb-4b96-a50d-a594ac602ca8"
+ ],
+ "x-ms-client-request-id": [
+ "ed2b2e24-7379-4a95-b8f8-621ecc0fe33b",
+ "ed2b2e24-7379-4a95-b8f8-621ecc0fe33b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11694"
+ ],
+ "x-ms-correlation-request-id": [
+ "51f41141-a3bb-4b96-a50d-a594ac602ca8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095135Z:51f41141-a3bb-4b96-a50d-a594ac602ca8"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:35 GMT"
+ ],
+ "Content-Length": [
+ "304"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"3df4e7d9-7ba3-48a3-9734-5e6868e1ede6\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/c6022840-4f84-4afe-988e-f7ea6000d4f7?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9jNjAyMjg0MC00Zjg0LTRhZmUtOTg4ZS1mN2VhNjAwMGQ0Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "719ec18e-255d-4478-81cb-6dc956f72e4f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "db204082-4137-4817-8ef9-1798be5a9dc8"
+ ],
+ "x-ms-client-request-id": [
+ "719ec18e-255d-4478-81cb-6dc956f72e4f",
+ "719ec18e-255d-4478-81cb-6dc956f72e4f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11693"
+ ],
+ "x-ms-correlation-request-id": [
+ "db204082-4137-4817-8ef9-1798be5a9dc8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095136Z:db204082-4137-4817-8ef9-1798be5a9dc8"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:35 GMT"
+ ],
+ "Content-Length": [
+ "304"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"name\": \"c6022840-4f84-4afe-988e-f7ea6000d4f7\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"3df4e7d9-7ba3-48a3-9734-5e6868e1ede6\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3df4e7d9-7ba3-48a3-9734-5e6868e1ede6?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8zZGY0ZTdkOS03YmEzLTQ4YTMtOTczNC01ZTY4NjhlMWVkZTY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4ffad315-0c3d-4a47-8ebe-2c5584060943"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "0edb9b73-18bd-4077-a92e-7db0103af3b0"
+ ],
+ "x-ms-client-request-id": [
+ "4ffad315-0c3d-4a47-8ebe-2c5584060943",
+ "4ffad315-0c3d-4a47-8ebe-2c5584060943"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11692"
+ ],
+ "x-ms-correlation-request-id": [
+ "0edb9b73-18bd-4077-a92e-7db0103af3b0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095136Z:0edb9b73-18bd-4077-a92e-7db0103af3b0"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:35 GMT"
+ ],
+ "Content-Length": [
+ "823"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3df4e7d9-7ba3-48a3-9734-5e6868e1ede6\",\r\n \"name\": \"3df4e7d9-7ba3-48a3-9734-5e6868e1ede6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT43.8865786S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\",\r\n \"Policy Name\": \"afspolicy1\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"ConfigureBackup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2020-03-19T09:50:51.1459111Z\",\r\n \"endTime\": \"2020-03-19T09:51:35.0324897Z\",\r\n \"activityId\": \"ba5d9b22-3e31-4219-a24f-be8dae3e3e86\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupProtectedItems?$filter=backupManagementType%20eq%20'AzureStorage'%20and%20itemType%20eq%20'AzureFileShare'&api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwUHJvdGVjdGVkSXRlbXM/JGZpbHRlcj1iYWNrdXBNYW5hZ2VtZW50VHlwZSUyMGVxJTIwJ0F6dXJlU3RvcmFnZSclMjBhbmQlMjBpdGVtVHlwZSUyMGVxJTIwJ0F6dXJlRmlsZVNoYXJlJyZhcGktdmVyc2lvbj0yMDE5LTA2LTE1",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0365933a-6a0f-46cf-b19e-775cb6350edf"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "3f1281fe-be70-4211-bf87-90c2fc36ca9d"
+ ],
+ "x-ms-client-request-id": [
+ "0365933a-6a0f-46cf-b19e-775cb6350edf",
+ "0365933a-6a0f-46cf-b19e-775cb6350edf"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11690"
+ ],
+ "x-ms-correlation-request-id": [
+ "3f1281fe-be70-4211-bf87-90c2fc36ca9d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095137Z:3f1281fe-be70-4211-bf87-90c2fc36ca9d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:36 GMT"
+ ],
+ "Content-Length": [
+ "1055"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;fs1\",\r\n \"name\": \"AzureFileShare;fs1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\"\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3Bfs1?$filter=expand%20eq%20'extendedinfo'&api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQmZzMT8kZmlsdGVyPWV4cGFuZCUyMGVxJTIwJ2V4dGVuZGVkaW5mbycmYXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1f3f3d92-51d4-485b-a5aa-9a661dab9268"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "8c4b03d3-7791-4414-bab7-144a3fd8e87e"
+ ],
+ "x-ms-client-request-id": [
+ "1f3f3d92-51d4-485b-a5aa-9a661dab9268",
+ "1f3f3d92-51d4-485b-a5aa-9a661dab9268"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11689"
+ ],
+ "x-ms-correlation-request-id": [
+ "8c4b03d3-7791-4414-bab7-144a3fd8e87e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095137Z:8c4b03d3-7791-4414-bab7-144a3fd8e87e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:37 GMT"
+ ],
+ "Content-Length": [
+ "1190"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;fs1\",\r\n \"name\": \"AzureFileShare;fs1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"fs1\",\r\n \"protectionStatus\": \"Healthy\",\r\n \"protectionState\": \"IRPending\",\r\n \"lastBackupStatus\": \"IRPending\",\r\n \"extendedInfo\": {\r\n \"recoveryPointCount\": 0,\r\n \"policyState\": \"Consistent\",\r\n \"resourceState\": \"Active\",\r\n \"resourceStateSyncTime\": \"2020-03-19T09:51:34.7522885Z\"\r\n },\r\n \"protectedItemType\": \"AzureFileShareProtectedItem\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"workloadType\": \"AzureFileShare\",\r\n \"containerName\": \"StorageContainer;storage;pstestrg8895;pstestsa8895\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.storage/storageAccounts/pstestsa8895\",\r\n \"policyId\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupPolicies/afspolicy1\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3Bfs1/backup?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQmZzMS9iYWNrdXA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"AzureFileShareBackupRequest\"\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "360e82d3-e0fb-4982-b2f2-e3a28d9da227"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "77"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;fs1/operationResults/b519a70b-5155-46a5-898c-0c9248ab275d?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;fs1/operationsStatus/b519a70b-5155-46a5-898c-0c9248ab275d?api-version=2016-12-01"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "39f99716-c106-4911-9951-8da83e7818c7"
+ ],
+ "x-ms-client-request-id": [
+ "360e82d3-e0fb-4982-b2f2-e3a28d9da227",
+ "360e82d3-e0fb-4982-b2f2-e3a28d9da227"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1197"
+ ],
+ "x-ms-correlation-request-id": [
+ "39f99716-c106-4911-9951-8da83e7818c7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095138Z:39f99716-c106-4911-9951-8da83e7818c7"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:38 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/b519a70b-5155-46a5-898c-0c9248ab275d?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9iNTE5YTcwYi01MTU1LTQ2YTUtODk4Yy0wYzkyNDhhYjI3NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6194463e-2ba8-4b65-a9ee-b7a32608a6da"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "af92d6f0-a4de-413f-b231-b95bdc1ca3ba"
+ ],
+ "x-ms-client-request-id": [
+ "6194463e-2ba8-4b65-a9ee-b7a32608a6da",
+ "6194463e-2ba8-4b65-a9ee-b7a32608a6da"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11687"
+ ],
+ "x-ms-correlation-request-id": [
+ "af92d6f0-a4de-413f-b231-b95bdc1ca3ba"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095139Z:af92d6f0-a4de-413f-b231-b95bdc1ca3ba"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:38 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"b519a70b-5155-46a5-898c-0c9248ab275d\",\r\n \"name\": \"b519a70b-5155-46a5-898c-0c9248ab275d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:51:38.8705066Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/b519a70b-5155-46a5-898c-0c9248ab275d?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9iNTE5YTcwYi01MTU1LTQ2YTUtODk4Yy0wYzkyNDhhYjI3NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9ed64868-5dbc-4f98-9056-79083e5e1b36"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "38f9b41a-192f-4c0c-ae66-243d5eb75084"
+ ],
+ "x-ms-client-request-id": [
+ "9ed64868-5dbc-4f98-9056-79083e5e1b36",
+ "9ed64868-5dbc-4f98-9056-79083e5e1b36"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11686"
+ ],
+ "x-ms-correlation-request-id": [
+ "38f9b41a-192f-4c0c-ae66-243d5eb75084"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095139Z:38f9b41a-192f-4c0c-ae66-243d5eb75084"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:38 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"b519a70b-5155-46a5-898c-0c9248ab275d\",\r\n \"name\": \"b519a70b-5155-46a5-898c-0c9248ab275d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:51:38.8705066Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/b519a70b-5155-46a5-898c-0c9248ab275d?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9iNTE5YTcwYi01MTU1LTQ2YTUtODk4Yy0wYzkyNDhhYjI3NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "251bab67-bc69-4f13-b80a-0fc82694bdae"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c17c4054-ab60-411d-8486-cd260393ea96"
+ ],
+ "x-ms-client-request-id": [
+ "251bab67-bc69-4f13-b80a-0fc82694bdae",
+ "251bab67-bc69-4f13-b80a-0fc82694bdae"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11685"
+ ],
+ "x-ms-correlation-request-id": [
+ "c17c4054-ab60-411d-8486-cd260393ea96"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095139Z:c17c4054-ab60-411d-8486-cd260393ea96"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:38 GMT"
+ ],
+ "Content-Length": [
+ "304"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"b519a70b-5155-46a5-898c-0c9248ab275d\",\r\n \"name\": \"b519a70b-5155-46a5-898c-0c9248ab275d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-19T09:51:38.8705066Z\",\r\n \"endTime\": \"2020-03-19T09:51:38.8705066Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"3d829f73-a757-4289-814f-178945ceb7f7\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/b519a70b-5155-46a5-898c-0c9248ab275d?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9iNTE5YTcwYi01MTU1LTQ2YTUtODk4Yy0wYzkyNDhhYjI3NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "521fd67e-b38d-43ca-9f66-05336529a4a9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "a3eb3c42-d906-4baf-970a-d3c544f411b5"
+ ],
+ "x-ms-client-request-id": [
+ "521fd67e-b38d-43ca-9f66-05336529a4a9",
+ "521fd67e-b38d-43ca-9f66-05336529a4a9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11684"
+ ],
+ "x-ms-correlation-request-id": [
+ "a3eb3c42-d906-4baf-970a-d3c544f411b5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095139Z:a3eb3c42-d906-4baf-970a-d3c544f411b5"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:39 GMT"
+ ],
+ "Content-Length": [
+ "304"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"b519a70b-5155-46a5-898c-0c9248ab275d\",\r\n \"name\": \"b519a70b-5155-46a5-898c-0c9248ab275d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-19T09:51:38.8705066Z\",\r\n \"endTime\": \"2020-03-19T09:51:38.8705066Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"3d829f73-a757-4289-814f-178945ceb7f7\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3d829f73-a757-4289-814f-178945ceb7f7?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8zZDgyOWY3My1hNzU3LTQyODktODE0Zi0xNzg5NDVjZWI3Zjc/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9a3a3196-e429-4427-a6e1-aa741e53fca6"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "95665c42-9d28-45ad-99c6-48783d1c3ece"
+ ],
+ "x-ms-client-request-id": [
+ "9a3a3196-e429-4427-a6e1-aa741e53fca6",
+ "9a3a3196-e429-4427-a6e1-aa741e53fca6"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11683"
+ ],
+ "x-ms-correlation-request-id": [
+ "95665c42-9d28-45ad-99c6-48783d1c3ece"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095140Z:95665c42-9d28-45ad-99c6-48783d1c3ece"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:39 GMT"
+ ],
+ "Content-Length": [
+ "726"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3d829f73-a757-4289-814f-178945ceb7f7\",\r\n \"name\": \"3d829f73-a757-4289-814f-178945ceb7f7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT1.2500372S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:51:38.8705066Z\",\r\n \"activityId\": \"360e82d3-e0fb-4982-b2f2-e3a28d9da227\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3d829f73-a757-4289-814f-178945ceb7f7?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8zZDgyOWY3My1hNzU3LTQyODktODE0Zi0xNzg5NDVjZWI3Zjc/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c3354077-d968-48a6-b347-76412d47a50e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "3d2290ac-bf4c-4b6f-a4b4-18245451fcbc"
+ ],
+ "x-ms-client-request-id": [
+ "c3354077-d968-48a6-b347-76412d47a50e",
+ "c3354077-d968-48a6-b347-76412d47a50e"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11682"
+ ],
+ "x-ms-correlation-request-id": [
+ "3d2290ac-bf4c-4b6f-a4b4-18245451fcbc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095140Z:3d2290ac-bf4c-4b6f-a4b4-18245451fcbc"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:39 GMT"
+ ],
+ "Content-Length": [
+ "840"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3d829f73-a757-4289-814f-178945ceb7f7\",\r\n \"name\": \"3d829f73-a757-4289-814f-178945ceb7f7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT1.6094253S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"MicrosoftStorage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"File Share Name\": \"fs1\",\r\n \"Whether job is adhoc or scheduled.\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:51:38.8705066Z\",\r\n \"activityId\": \"360e82d3-e0fb-4982-b2f2-e3a28d9da227\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3d829f73-a757-4289-814f-178945ceb7f7?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8zZDgyOWY3My1hNzU3LTQyODktODE0Zi0xNzg5NDVjZWI3Zjc/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ea3c84af-8a34-4ec5-a52d-97426c92d1ff"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "2edc448f-20dc-4307-92f0-f91d210fec4e"
+ ],
+ "x-ms-client-request-id": [
+ "ea3c84af-8a34-4ec5-a52d-97426c92d1ff",
+ "ea3c84af-8a34-4ec5-a52d-97426c92d1ff"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11681"
+ ],
+ "x-ms-correlation-request-id": [
+ "2edc448f-20dc-4307-92f0-f91d210fec4e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095140Z:2edc448f-20dc-4307-92f0-f91d210fec4e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:39 GMT"
+ ],
+ "Content-Length": [
+ "840"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3d829f73-a757-4289-814f-178945ceb7f7\",\r\n \"name\": \"3d829f73-a757-4289-814f-178945ceb7f7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT1.8281833S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"MicrosoftStorage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"File Share Name\": \"fs1\",\r\n \"Whether job is adhoc or scheduled.\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:51:38.8705066Z\",\r\n \"activityId\": \"360e82d3-e0fb-4982-b2f2-e3a28d9da227\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3d829f73-a757-4289-814f-178945ceb7f7?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8zZDgyOWY3My1hNzU3LTQyODktODE0Zi0xNzg5NDVjZWI3Zjc/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ac60d3ac-41a7-4eb9-ad27-a9bda3b258af"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "fd3b2dc2-5685-479b-8ee7-17af078011e3"
+ ],
+ "x-ms-client-request-id": [
+ "ac60d3ac-41a7-4eb9-ad27-a9bda3b258af",
+ "ac60d3ac-41a7-4eb9-ad27-a9bda3b258af"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11680"
+ ],
+ "x-ms-correlation-request-id": [
+ "fd3b2dc2-5685-479b-8ee7-17af078011e3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095141Z:fd3b2dc2-5685-479b-8ee7-17af078011e3"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:40 GMT"
+ ],
+ "Content-Length": [
+ "840"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3d829f73-a757-4289-814f-178945ceb7f7\",\r\n \"name\": \"3d829f73-a757-4289-814f-178945ceb7f7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT2.0738241S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"MicrosoftStorage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"File Share Name\": \"fs1\",\r\n \"Whether job is adhoc or scheduled.\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:51:38.8705066Z\",\r\n \"activityId\": \"360e82d3-e0fb-4982-b2f2-e3a28d9da227\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3d829f73-a757-4289-814f-178945ceb7f7?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8zZDgyOWY3My1hNzU3LTQyODktODE0Zi0xNzg5NDVjZWI3Zjc/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2e81eb4d-22f7-414d-94a1-5a43e31d2194"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "d7a2eac3-8587-43b6-814d-6c702f79331d"
+ ],
+ "x-ms-client-request-id": [
+ "2e81eb4d-22f7-414d-94a1-5a43e31d2194",
+ "2e81eb4d-22f7-414d-94a1-5a43e31d2194"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11679"
+ ],
+ "x-ms-correlation-request-id": [
+ "d7a2eac3-8587-43b6-814d-6c702f79331d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095141Z:d7a2eac3-8587-43b6-814d-6c702f79331d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:40 GMT"
+ ],
+ "Content-Length": [
+ "839"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3d829f73-a757-4289-814f-178945ceb7f7\",\r\n \"name\": \"3d829f73-a757-4289-814f-178945ceb7f7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT2.339446S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"MicrosoftStorage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"File Share Name\": \"fs1\",\r\n \"Whether job is adhoc or scheduled.\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:51:38.8705066Z\",\r\n \"activityId\": \"360e82d3-e0fb-4982-b2f2-e3a28d9da227\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3d829f73-a757-4289-814f-178945ceb7f7?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8zZDgyOWY3My1hNzU3LTQyODktODE0Zi0xNzg5NDVjZWI3Zjc/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3a336a0a-1072-4a7b-8ceb-b6406897a751"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "2e75c38a-2740-4a1c-b139-21f15b1aaa46"
+ ],
+ "x-ms-client-request-id": [
+ "3a336a0a-1072-4a7b-8ceb-b6406897a751",
+ "3a336a0a-1072-4a7b-8ceb-b6406897a751"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11678"
+ ],
+ "x-ms-correlation-request-id": [
+ "2e75c38a-2740-4a1c-b139-21f15b1aaa46"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095141Z:2e75c38a-2740-4a1c-b139-21f15b1aaa46"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:40 GMT"
+ ],
+ "Content-Length": [
+ "840"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3d829f73-a757-4289-814f-178945ceb7f7\",\r\n \"name\": \"3d829f73-a757-4289-814f-178945ceb7f7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT2.5587144S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"MicrosoftStorage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"File Share Name\": \"fs1\",\r\n \"Whether job is adhoc or scheduled.\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:51:38.8705066Z\",\r\n \"activityId\": \"360e82d3-e0fb-4982-b2f2-e3a28d9da227\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3d829f73-a757-4289-814f-178945ceb7f7?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8zZDgyOWY3My1hNzU3LTQyODktODE0Zi0xNzg5NDVjZWI3Zjc/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bd45bcc8-734f-4d66-afe1-59ce59ff4593"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c96e0560-7061-41cf-8903-6c758ca58c68"
+ ],
+ "x-ms-client-request-id": [
+ "bd45bcc8-734f-4d66-afe1-59ce59ff4593",
+ "bd45bcc8-734f-4d66-afe1-59ce59ff4593"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11677"
+ ],
+ "x-ms-correlation-request-id": [
+ "c96e0560-7061-41cf-8903-6c758ca58c68"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095141Z:c96e0560-7061-41cf-8903-6c758ca58c68"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:40 GMT"
+ ],
+ "Content-Length": [
+ "840"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3d829f73-a757-4289-814f-178945ceb7f7\",\r\n \"name\": \"3d829f73-a757-4289-814f-178945ceb7f7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT2.8438483S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"MicrosoftStorage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"File Share Name\": \"fs1\",\r\n \"Whether job is adhoc or scheduled.\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:51:38.8705066Z\",\r\n \"activityId\": \"360e82d3-e0fb-4982-b2f2-e3a28d9da227\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3d829f73-a757-4289-814f-178945ceb7f7?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8zZDgyOWY3My1hNzU3LTQyODktODE0Zi0xNzg5NDVjZWI3Zjc/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "05d554ab-817f-41fc-b0f0-fa024d0c8a5a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "ebd868db-8fdf-4187-b72b-535bbca7ad4f"
+ ],
+ "x-ms-client-request-id": [
+ "05d554ab-817f-41fc-b0f0-fa024d0c8a5a",
+ "05d554ab-817f-41fc-b0f0-fa024d0c8a5a"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11676"
+ ],
+ "x-ms-correlation-request-id": [
+ "ebd868db-8fdf-4187-b72b-535bbca7ad4f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095142Z:ebd868db-8fdf-4187-b72b-535bbca7ad4f"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:41 GMT"
+ ],
+ "Content-Length": [
+ "840"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3d829f73-a757-4289-814f-178945ceb7f7\",\r\n \"name\": \"3d829f73-a757-4289-814f-178945ceb7f7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT3.1381874S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"MicrosoftStorage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"File Share Name\": \"fs1\",\r\n \"Whether job is adhoc or scheduled.\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:51:38.8705066Z\",\r\n \"activityId\": \"360e82d3-e0fb-4982-b2f2-e3a28d9da227\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3d829f73-a757-4289-814f-178945ceb7f7?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8zZDgyOWY3My1hNzU3LTQyODktODE0Zi0xNzg5NDVjZWI3Zjc/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "38d66d85-a3b9-4661-a926-29096b558f44"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "6e77406a-89aa-44da-aabd-c2eda01638fb"
+ ],
+ "x-ms-client-request-id": [
+ "38d66d85-a3b9-4661-a926-29096b558f44",
+ "38d66d85-a3b9-4661-a926-29096b558f44"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11675"
+ ],
+ "x-ms-correlation-request-id": [
+ "6e77406a-89aa-44da-aabd-c2eda01638fb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095142Z:6e77406a-89aa-44da-aabd-c2eda01638fb"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:41 GMT"
+ ],
+ "Content-Length": [
+ "840"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3d829f73-a757-4289-814f-178945ceb7f7\",\r\n \"name\": \"3d829f73-a757-4289-814f-178945ceb7f7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT3.3751378S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"MicrosoftStorage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"File Share Name\": \"fs1\",\r\n \"Whether job is adhoc or scheduled.\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:51:38.8705066Z\",\r\n \"activityId\": \"360e82d3-e0fb-4982-b2f2-e3a28d9da227\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3d829f73-a757-4289-814f-178945ceb7f7?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8zZDgyOWY3My1hNzU3LTQyODktODE0Zi0xNzg5NDVjZWI3Zjc/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d1ed1e92-4edc-4fa8-ba0e-96b6309211e6"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "05bec697-e384-4948-aaa4-dfc43057ce7c"
+ ],
+ "x-ms-client-request-id": [
+ "d1ed1e92-4edc-4fa8-ba0e-96b6309211e6",
+ "d1ed1e92-4edc-4fa8-ba0e-96b6309211e6"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11674"
+ ],
+ "x-ms-correlation-request-id": [
+ "05bec697-e384-4948-aaa4-dfc43057ce7c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095142Z:05bec697-e384-4948-aaa4-dfc43057ce7c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:41 GMT"
+ ],
+ "Content-Length": [
+ "840"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3d829f73-a757-4289-814f-178945ceb7f7\",\r\n \"name\": \"3d829f73-a757-4289-814f-178945ceb7f7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT3.6382079S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"MicrosoftStorage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"status\": \"InProgress\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"File Share Name\": \"fs1\",\r\n \"Whether job is adhoc or scheduled.\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:51:38.8705066Z\",\r\n \"activityId\": \"360e82d3-e0fb-4982-b2f2-e3a28d9da227\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3d829f73-a757-4289-814f-178945ceb7f7?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8zZDgyOWY3My1hNzU3LTQyODktODE0Zi0xNzg5NDVjZWI3Zjc/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "55e724a9-dc16-4aca-999c-0b1658340617"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "50fa73a6-2718-469e-a97b-66d4da78fea4"
+ ],
+ "x-ms-client-request-id": [
+ "55e724a9-dc16-4aca-999c-0b1658340617",
+ "55e724a9-dc16-4aca-999c-0b1658340617"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11673"
+ ],
+ "x-ms-correlation-request-id": [
+ "50fa73a6-2718-469e-a97b-66d4da78fea4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095142Z:50fa73a6-2718-469e-a97b-66d4da78fea4"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:41 GMT"
+ ],
+ "Content-Length": [
+ "878"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/3d829f73-a757-4289-814f-178945ceb7f7\",\r\n \"name\": \"3d829f73-a757-4289-814f-178945ceb7f7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT2.755418S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"MicrosoftStorage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [\r\n {\r\n \"taskId\": \"Take Snapshot\",\r\n \"status\": \"Completed\"\r\n }\r\n ],\r\n \"propertyBag\": {\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"File Share Name\": \"fs1\",\r\n \"Whether job is adhoc or scheduled.\": \"True\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Backup\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2020-03-19T09:51:38.8705066Z\",\r\n \"endTime\": \"2020-03-19T09:51:41.6259246Z\",\r\n \"activityId\": \"360e82d3-e0fb-4982-b2f2-e3a28d9da227\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3Bfs1/recoveryPoints?$filter=startDate%20eq%20'2020-03-19%2009:50:38%20AM'%20and%20endDate%20eq%20'2020-03-19%2009:52:41%20AM'&api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQmZzMS9yZWNvdmVyeVBvaW50cz8kZmlsdGVyPXN0YXJ0RGF0ZSUyMGVxJTIwJzIwMjAtMDMtMTklMjAwOTo1MDozOCUyMEFNJyUyMGFuZCUyMGVuZERhdGUlMjBlcSUyMCcyMDIwLTAzLTE5JTIwMDk6NTI6NDElMjBBTScmYXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fbddff64-6d52-479e-b863-84cef4fcca54"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "8d82a1ec-a77a-4bb9-bfff-5297e636cc9c"
+ ],
+ "x-ms-client-request-id": [
+ "fbddff64-6d52-479e-b863-84cef4fcca54",
+ "fbddff64-6d52-479e-b863-84cef4fcca54"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11672"
+ ],
+ "x-ms-correlation-request-id": [
+ "8d82a1ec-a77a-4bb9-bfff-5297e636cc9c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095143Z:8d82a1ec-a77a-4bb9-bfff-5297e636cc9c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:42 GMT"
+ ],
+ "Content-Length": [
+ "731"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;fs1/recoveryPoints/24754933924566\",\r\n \"name\": \"24754933924566\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints\",\r\n \"properties\": {\r\n \"objectType\": \"AzureFileShareRecoveryPoint\",\r\n \"recoveryPointType\": \"FileSystemConsistent\",\r\n \"recoveryPointTime\": \"2020-03-19T09:51:40Z\",\r\n \"fileShareSnapshotUri\": \"https://pstestsa8895.file.core.windows.net/fs1?sharesnapshot=2020-03-19T09:51:40.0000000Z\",\r\n \"recoveryPointSizeInGB\": 1\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5968d380-d724-43d1-9a5e-97b3ef1f256f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-request-id": [
+ "fd5a4b57-6d07-4107-a648-27fac573abeb"
+ ],
+ "x-ms-correlation-request-id": [
+ "fd5a4b57-6d07-4107-a648-27fac573abeb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095157Z:fd5a4b57-6d07-4107-a648-27fac573abeb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:57 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "519"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.ClassicStorage/storageAccounts/iaasextstore2\",\r\n \"name\": \"iaasextstore2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/riteshcRG/providers/Microsoft.ClassicStorage/storageAccounts/riteshcrg7070\",\r\n \"name\": \"riteshcrg7070\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9b49e405-8b37-4c3d-9a06-3fc65b056d0d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-request-id": [
+ "9ae48a42-801e-4e1f-8711-fe0c4fcfa830"
+ ],
+ "x-ms-correlation-request-id": [
+ "9ae48a42-801e-4e1f-8711-fe0c4fcfa830"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095255Z:9ae48a42-801e-4e1f-8711-fe0c4fcfa830"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:54 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "519"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.ClassicStorage/storageAccounts/iaasextstore2\",\r\n \"name\": \"iaasextstore2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/riteshcRG/providers/Microsoft.ClassicStorage/storageAccounts/riteshcrg7070\",\r\n \"name\": \"riteshcrg7070\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "17c27c0b-adae-4aee-a8ce-42154058828b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-request-id": [
+ "7907ba4f-ce78-461f-96dd-36975856c0e4"
+ ],
+ "x-ms-correlation-request-id": [
+ "7907ba4f-ce78-461f-96dd-36975856c0e4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095255Z:7907ba4f-ce78-461f-96dd-36975856c0e4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:54 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "519"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.ClassicStorage/storageAccounts/iaasextstore2\",\r\n \"name\": \"iaasextstore2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/riteshcRG/providers/Microsoft.ClassicStorage/storageAccounts/riteshcrg7070\",\r\n \"name\": \"riteshcrg7070\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1736662b-0aa6-48e0-8033-432e82ccbd48"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-request-id": [
+ "5b7e24f1-2611-4ac9-b001-d1b533786558"
+ ],
+ "x-ms-correlation-request-id": [
+ "5b7e24f1-2611-4ac9-b001-d1b533786558"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095331Z:5b7e24f1-2611-4ac9-b001-d1b533786558"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:31 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "519"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.ClassicStorage/storageAccounts/iaasextstore2\",\r\n \"name\": \"iaasextstore2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/riteshcRG/providers/Microsoft.ClassicStorage/storageAccounts/riteshcrg7070\",\r\n \"name\": \"riteshcrg7070\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7d9aaecb-bfcd-4744-9671-1af6a5826d49"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-request-id": [
+ "04f01af2-81b5-4a61-88bf-347db184f2a9"
+ ],
+ "x-ms-correlation-request-id": [
+ "04f01af2-81b5-4a61-88bf-347db184f2a9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095332Z:04f01af2-81b5-4a61-88bf-347db184f2a9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:31 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "519"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.ClassicStorage/storageAccounts/iaasextstore2\",\r\n \"name\": \"iaasextstore2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/riteshcRG/providers/Microsoft.ClassicStorage/storageAccounts/riteshcrg7070\",\r\n \"name\": \"riteshcrg7070\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "31b1a8e8-61d7-45d4-9eb0-e7cd547c09e9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-request-id": [
+ "c85883c7-c407-4caa-8b0c-c82f4734cb6d"
+ ],
+ "x-ms-correlation-request-id": [
+ "c85883c7-c407-4caa-8b0c-c82f4734cb6d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095537Z:c85883c7-c407-4caa-8b0c-c82f4734cb6d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:37 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "519"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.ClassicStorage/storageAccounts/iaasextstore2\",\r\n \"name\": \"iaasextstore2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/riteshcRG/providers/Microsoft.ClassicStorage/storageAccounts/riteshcrg7070\",\r\n \"name\": \"riteshcrg7070\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c8852d91-5af8-4f13-8f6e-606fbb42925e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-request-id": [
+ "b1dc23ed-b20c-4d52-806a-dd6e3965e9f2"
+ ],
+ "x-ms-correlation-request-id": [
+ "b1dc23ed-b20c-4d52-806a-dd6e3965e9f2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095612Z:b1dc23ed-b20c-4d52-806a-dd6e3965e9f2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:12 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "519"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.ClassicStorage/storageAccounts/iaasextstore2\",\r\n \"name\": \"iaasextstore2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/riteshcRG/providers/Microsoft.ClassicStorage/storageAccounts/riteshcrg7070\",\r\n \"name\": \"riteshcrg7070\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a87843a8-1dcd-4d07-a9a3-5307b9300bff"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-request-id": [
+ "9e7116ed-db28-4238-aaf9-7e9425e17ebe"
+ ],
+ "x-ms-correlation-request-id": [
+ "9e7116ed-db28-4238-aaf9-7e9425e17ebe"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095157Z:9e7116ed-db28-4238-aaf9-7e9425e17ebe"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:51:57 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "6317"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsnavigationtest\",\r\n \"name\": \"afsnavigationtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afstbackuptestsa\",\r\n \"name\": \"afstbackuptestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\",\r\n \"name\": \"iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\",\r\n \"name\": \"iaasextstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasvmexistingdiag1\",\r\n \"name\": \"iaasvmexistingdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrr\",\r\n \"name\": \"iaasvmexistingcrr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag\",\r\n \"name\": \"iaasvmexistingcrrdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Delete By\": \"01-2030\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"AutoShutdown\": \"false\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag112\",\r\n \"name\": \"iaasvmexistingcrrdiag112\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasnewstore1\",\r\n \"name\": \"iaasnewstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\",\r\n \"name\": \"iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/aasavigationestdiag\",\r\n \"name\": \"aasavigationestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/iaasvmnavigationstore\",\r\n \"name\": \"iaasvmnavigationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/psbvtsa2\",\r\n \"name\": \"psbvtsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\",\r\n \"name\": \"pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \"MABUsed\": \" Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Purpose\": \"PS bvt\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"name\": \"pstestsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\",\r\n \"name\": \"pstesttargetsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\",\r\n \"name\": \"pstesttargetsa8896\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\",\r\n \"name\": \"sarathsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3263fd20-ad5f-4c10-b8bd-392eb8368cc0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-request-id": [
+ "fffc21f2-f6ff-499a-8585-bb32bda588fd"
+ ],
+ "x-ms-correlation-request-id": [
+ "fffc21f2-f6ff-499a-8585-bb32bda588fd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095255Z:fffc21f2-f6ff-499a-8585-bb32bda588fd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:54 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "6317"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsnavigationtest\",\r\n \"name\": \"afsnavigationtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afstbackuptestsa\",\r\n \"name\": \"afstbackuptestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\",\r\n \"name\": \"iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\",\r\n \"name\": \"iaasextstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasvmexistingdiag1\",\r\n \"name\": \"iaasvmexistingdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrr\",\r\n \"name\": \"iaasvmexistingcrr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag\",\r\n \"name\": \"iaasvmexistingcrrdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Delete By\": \"01-2030\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"AutoShutdown\": \"false\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag112\",\r\n \"name\": \"iaasvmexistingcrrdiag112\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasnewstore1\",\r\n \"name\": \"iaasnewstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\",\r\n \"name\": \"iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/aasavigationestdiag\",\r\n \"name\": \"aasavigationestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/iaasvmnavigationstore\",\r\n \"name\": \"iaasvmnavigationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/psbvtsa2\",\r\n \"name\": \"psbvtsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\",\r\n \"name\": \"pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \"MABUsed\": \" Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Purpose\": \"PS bvt\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"name\": \"pstestsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\",\r\n \"name\": \"pstesttargetsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\",\r\n \"name\": \"pstesttargetsa8896\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\",\r\n \"name\": \"sarathsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bcb45f2c-cd94-4cb7-9392-82b374ce4bd3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-request-id": [
+ "f0fdb256-4e6d-44e5-b87d-48e7d1f65a8c"
+ ],
+ "x-ms-correlation-request-id": [
+ "f0fdb256-4e6d-44e5-b87d-48e7d1f65a8c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095255Z:f0fdb256-4e6d-44e5-b87d-48e7d1f65a8c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:54 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "6317"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsnavigationtest\",\r\n \"name\": \"afsnavigationtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afstbackuptestsa\",\r\n \"name\": \"afstbackuptestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\",\r\n \"name\": \"iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\",\r\n \"name\": \"iaasextstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasvmexistingdiag1\",\r\n \"name\": \"iaasvmexistingdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrr\",\r\n \"name\": \"iaasvmexistingcrr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag\",\r\n \"name\": \"iaasvmexistingcrrdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Delete By\": \"01-2030\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"AutoShutdown\": \"false\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag112\",\r\n \"name\": \"iaasvmexistingcrrdiag112\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasnewstore1\",\r\n \"name\": \"iaasnewstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\",\r\n \"name\": \"iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/aasavigationestdiag\",\r\n \"name\": \"aasavigationestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/iaasvmnavigationstore\",\r\n \"name\": \"iaasvmnavigationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/psbvtsa2\",\r\n \"name\": \"psbvtsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\",\r\n \"name\": \"pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \"MABUsed\": \" Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Purpose\": \"PS bvt\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"name\": \"pstestsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\",\r\n \"name\": \"pstesttargetsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\",\r\n \"name\": \"pstesttargetsa8896\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\",\r\n \"name\": \"sarathsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "38e89ff0-a56d-47e5-bbf3-c8c6acdba6ed"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-request-id": [
+ "d244effe-8a99-47f2-8c00-444c7c7fc70b"
+ ],
+ "x-ms-correlation-request-id": [
+ "d244effe-8a99-47f2-8c00-444c7c7fc70b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095331Z:d244effe-8a99-47f2-8c00-444c7c7fc70b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:31 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "6317"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsnavigationtest\",\r\n \"name\": \"afsnavigationtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afstbackuptestsa\",\r\n \"name\": \"afstbackuptestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\",\r\n \"name\": \"iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\",\r\n \"name\": \"iaasextstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasvmexistingdiag1\",\r\n \"name\": \"iaasvmexistingdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrr\",\r\n \"name\": \"iaasvmexistingcrr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag\",\r\n \"name\": \"iaasvmexistingcrrdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Delete By\": \"01-2030\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"AutoShutdown\": \"false\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag112\",\r\n \"name\": \"iaasvmexistingcrrdiag112\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasnewstore1\",\r\n \"name\": \"iaasnewstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\",\r\n \"name\": \"iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/aasavigationestdiag\",\r\n \"name\": \"aasavigationestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/iaasvmnavigationstore\",\r\n \"name\": \"iaasvmnavigationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/psbvtsa2\",\r\n \"name\": \"psbvtsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\",\r\n \"name\": \"pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \"MABUsed\": \" Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Purpose\": \"PS bvt\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"name\": \"pstestsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\",\r\n \"name\": \"pstesttargetsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\",\r\n \"name\": \"pstesttargetsa8896\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\",\r\n \"name\": \"sarathsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "95f17a9f-e723-4647-b27d-5708eb5ef7c0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-request-id": [
+ "505d35fd-f843-4b88-bf0d-7500aa292a3c"
+ ],
+ "x-ms-correlation-request-id": [
+ "505d35fd-f843-4b88-bf0d-7500aa292a3c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095332Z:505d35fd-f843-4b88-bf0d-7500aa292a3c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:31 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "6317"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsnavigationtest\",\r\n \"name\": \"afsnavigationtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afstbackuptestsa\",\r\n \"name\": \"afstbackuptestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\",\r\n \"name\": \"iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\",\r\n \"name\": \"iaasextstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasvmexistingdiag1\",\r\n \"name\": \"iaasvmexistingdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrr\",\r\n \"name\": \"iaasvmexistingcrr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag\",\r\n \"name\": \"iaasvmexistingcrrdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Delete By\": \"01-2030\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"AutoShutdown\": \"false\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag112\",\r\n \"name\": \"iaasvmexistingcrrdiag112\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasnewstore1\",\r\n \"name\": \"iaasnewstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\",\r\n \"name\": \"iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/aasavigationestdiag\",\r\n \"name\": \"aasavigationestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/iaasvmnavigationstore\",\r\n \"name\": \"iaasvmnavigationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/psbvtsa2\",\r\n \"name\": \"psbvtsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\",\r\n \"name\": \"pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \"MABUsed\": \" Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Purpose\": \"PS bvt\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"name\": \"pstestsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\",\r\n \"name\": \"pstesttargetsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\",\r\n \"name\": \"pstesttargetsa8896\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\",\r\n \"name\": \"sarathsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d227dc65-db77-4e8f-8f84-0e631f01266b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-request-id": [
+ "6553d0ef-1165-4503-be59-dfc74ea5a3e4"
+ ],
+ "x-ms-correlation-request-id": [
+ "6553d0ef-1165-4503-be59-dfc74ea5a3e4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095537Z:6553d0ef-1165-4503-be59-dfc74ea5a3e4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:37 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "6317"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsnavigationtest\",\r\n \"name\": \"afsnavigationtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afstbackuptestsa\",\r\n \"name\": \"afstbackuptestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\",\r\n \"name\": \"iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\",\r\n \"name\": \"iaasextstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasvmexistingdiag1\",\r\n \"name\": \"iaasvmexistingdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrr\",\r\n \"name\": \"iaasvmexistingcrr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag\",\r\n \"name\": \"iaasvmexistingcrrdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Delete By\": \"01-2030\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"AutoShutdown\": \"false\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag112\",\r\n \"name\": \"iaasvmexistingcrrdiag112\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasnewstore1\",\r\n \"name\": \"iaasnewstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\",\r\n \"name\": \"iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/aasavigationestdiag\",\r\n \"name\": \"aasavigationestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/iaasvmnavigationstore\",\r\n \"name\": \"iaasvmnavigationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/psbvtsa2\",\r\n \"name\": \"psbvtsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\",\r\n \"name\": \"pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \"MABUsed\": \" Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Purpose\": \"PS bvt\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"name\": \"pstestsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\",\r\n \"name\": \"pstesttargetsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\",\r\n \"name\": \"pstesttargetsa8896\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\",\r\n \"name\": \"sarathsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8b1498f4-8c88-4e5c-a207-84af23b16310"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-request-id": [
+ "ac1c0fe9-40d1-4019-b7de-7c8aade99dca"
+ ],
+ "x-ms-correlation-request-id": [
+ "ac1c0fe9-40d1-4019-b7de-7c8aade99dca"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095613Z:ac1c0fe9-40d1-4019-b7de-7c8aade99dca"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:12 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "6317"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsnavigationtest\",\r\n \"name\": \"afsnavigationtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afstbackuptestsa\",\r\n \"name\": \"afstbackuptestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\",\r\n \"name\": \"iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\",\r\n \"name\": \"iaasextstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasvmexistingdiag1\",\r\n \"name\": \"iaasvmexistingdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrr\",\r\n \"name\": \"iaasvmexistingcrr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag\",\r\n \"name\": \"iaasvmexistingcrrdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Delete By\": \"01-2030\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"AutoShutdown\": \"false\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag112\",\r\n \"name\": \"iaasvmexistingcrrdiag112\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasnewstore1\",\r\n \"name\": \"iaasnewstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\",\r\n \"name\": \"iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/aasavigationestdiag\",\r\n \"name\": \"aasavigationestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/iaasvmnavigationstore\",\r\n \"name\": \"iaasvmnavigationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/psbvtsa2\",\r\n \"name\": \"psbvtsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\",\r\n \"name\": \"pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \"MABUsed\": \" Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Purpose\": \"PS bvt\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"name\": \"pstestsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\",\r\n \"name\": \"pstesttargetsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\",\r\n \"name\": \"pstesttargetsa8896\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.Storage/storageAccounts/sarathsa3\",\r\n \"name\": \"sarathsa3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3Bfs1/recoveryPoints/24754933924566/restore?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQmZzMS9yZWNvdmVyeVBvaW50cy8yNDc1NDkzMzkyNDU2Ni9yZXN0b3JlP2FwaS12ZXJzaW9uPTIwMTktMDYtMTU=",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"AzureFileShareRestoreRequest\",\r\n \"recoveryType\": \"OriginalLocation\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"copyOptions\": \"Overwrite\",\r\n \"restoreRequestType\": \"ItemLevelRestore\",\r\n \"restoreFileSpecs\": [\r\n {\r\n \"path\": \"file1.txt\",\r\n \"fileSpecType\": \"File\"\r\n },\r\n {\r\n \"path\": \"file2.txt\",\r\n \"fileSpecType\": \"File\"\r\n }\r\n ]\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c7b09583-7d97-4721-9ab6-d3c86c7f0953"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "560"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;fs1/operationResults/8db3e70c-e1c2-4c80-aacc-a85f6dc362be?api-version=2019-06-15"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;fs1/operationsStatus/8db3e70c-e1c2-4c80-aacc-a85f6dc362be?api-version=2019-06-15"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "6aa4b6b8-cf38-416f-a55f-2a6229162ba4"
+ ],
+ "x-ms-client-request-id": [
+ "c7b09583-7d97-4721-9ab6-d3c86c7f0953",
+ "c7b09583-7d97-4721-9ab6-d3c86c7f0953"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1196"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "6aa4b6b8-cf38-416f-a55f-2a6229162ba4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095218Z:6aa4b6b8-cf38-416f-a55f-2a6229162ba4"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:17 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3Bfs1/recoveryPoints/24754933924566/restore?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQmZzMS9yZWNvdmVyeVBvaW50cy8yNDc1NDkzMzkyNDU2Ni9yZXN0b3JlP2FwaS12ZXJzaW9uPTIwMTktMDYtMTU=",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"AzureFileShareRestoreRequest\",\r\n \"recoveryType\": \"AlternateLocation\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"copyOptions\": \"Overwrite\",\r\n \"restoreRequestType\": \"ItemLevelRestore\",\r\n \"restoreFileSpecs\": [\r\n {\r\n \"path\": \"pstestfolder1bca8f8e\",\r\n \"fileSpecType\": \"Directory\",\r\n \"targetFolderPath\": \"pstestfolder3rty7d7s\"\r\n }\r\n ],\r\n \"targetDetails\": {\r\n \"name\": \"fs1\",\r\n \"targetResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\"\r\n }\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "82fe925e-03dc-4b9e-8142-4fadbf254364"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "775"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;fs1/operationResults/5d81455d-de0e-459a-92df-7d6045fc3b28?api-version=2019-06-15"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;fs1/operationsStatus/5d81455d-de0e-459a-92df-7d6045fc3b28?api-version=2019-06-15"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "bb85265a-1507-4d87-8ab5-75bb01cd679f"
+ ],
+ "x-ms-client-request-id": [
+ "82fe925e-03dc-4b9e-8142-4fadbf254364",
+ "82fe925e-03dc-4b9e-8142-4fadbf254364"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1195"
+ ],
+ "x-ms-correlation-request-id": [
+ "bb85265a-1507-4d87-8ab5-75bb01cd679f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095256Z:bb85265a-1507-4d87-8ab5-75bb01cd679f"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:55 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3Bfs1/recoveryPoints/24754933924566/restore?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQmZzMS9yZWNvdmVyeVBvaW50cy8yNDc1NDkzMzkyNDU2Ni9yZXN0b3JlP2FwaS12ZXJzaW9uPTIwMTktMDYtMTU=",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"AzureFileShareRestoreRequest\",\r\n \"recoveryType\": \"AlternateLocation\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"copyOptions\": \"Overwrite\",\r\n \"restoreRequestType\": \"FullShareRestore\",\r\n \"restoreFileSpecs\": [\r\n {\r\n \"targetFolderPath\": \"pstestfolder3rty7d7s\"\r\n }\r\n ],\r\n \"targetDetails\": {\r\n \"name\": \"fs1\",\r\n \"targetResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\"\r\n }\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1d575486-c433-4be2-a12e-3fe976f14e7d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "696"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;fs1/operationResults/2bf71811-8f80-47f6-b55e-0afaa251473c?api-version=2019-06-15"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;fs1/operationsStatus/2bf71811-8f80-47f6-b55e-0afaa251473c?api-version=2019-06-15"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "2280fc2d-50e4-4d2e-a1b0-b894be8fc1fc"
+ ],
+ "x-ms-client-request-id": [
+ "1d575486-c433-4be2-a12e-3fe976f14e7d",
+ "1d575486-c433-4be2-a12e-3fe976f14e7d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1194"
+ ],
+ "x-ms-correlation-request-id": [
+ "2280fc2d-50e4-4d2e-a1b0-b894be8fc1fc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095501Z:2280fc2d-50e4-4d2e-a1b0-b894be8fc1fc"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:01 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3Bfs1/recoveryPoints/24754933924566/restore?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQmZzMS9yZWNvdmVyeVBvaW50cy8yNDc1NDkzMzkyNDU2Ni9yZXN0b3JlP2FwaS12ZXJzaW9uPTIwMTktMDYtMTU=",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"AzureFileShareRestoreRequest\",\r\n \"recoveryType\": \"OriginalLocation\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"copyOptions\": \"Overwrite\",\r\n \"restoreRequestType\": \"ItemLevelRestore\",\r\n \"restoreFileSpecs\": [\r\n {\r\n \"path\": \"pstestfolder1bca8f8e/pstestfile1bca8f8e.txt\",\r\n \"fileSpecType\": \"File\"\r\n }\r\n ]\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "48b9d5aa-bae2-4ce8-b467-34e9d5307f0e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "513"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;fs1/operationResults/9ff5aa2b-4d4e-4795-9e3b-accb4ac07f9c?api-version=2019-06-15"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;fs1/operationsStatus/9ff5aa2b-4d4e-4795-9e3b-accb4ac07f9c?api-version=2019-06-15"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "0a85fcab-daa0-4c4e-94f5-1f7da04878cd"
+ ],
+ "x-ms-client-request-id": [
+ "48b9d5aa-bae2-4ce8-b467-34e9d5307f0e",
+ "48b9d5aa-bae2-4ce8-b467-34e9d5307f0e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1193"
+ ],
+ "x-ms-correlation-request-id": [
+ "0a85fcab-daa0-4c4e-94f5-1f7da04878cd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095538Z:0a85fcab-daa0-4c4e-94f5-1f7da04878cd"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:38 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3Bfs1/recoveryPoints/24754933924566/restore?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQmZzMS9yZWNvdmVyeVBvaW50cy8yNDc1NDkzMzkyNDU2Ni9yZXN0b3JlP2FwaS12ZXJzaW9uPTIwMTktMDYtMTU=",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"AzureFileShareRestoreRequest\",\r\n \"recoveryType\": \"OriginalLocation\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"copyOptions\": \"Overwrite\",\r\n \"restoreRequestType\": \"FullShareRestore\"\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "364"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;fs1/operationResults/2583e5d8-fbf0-42c1-a5a7-9b1fd75eaa81?api-version=2019-06-15"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;fs1/operationsStatus/2583e5d8-fbf0-42c1-a5a7-9b1fd75eaa81?api-version=2019-06-15"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "8223c1cf-f4bc-43b5-8304-00282b7bd224"
+ ],
+ "x-ms-client-request-id": [
+ "aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b",
+ "aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1192"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "8223c1cf-f4bc-43b5-8304-00282b7bd224"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095633Z:8223c1cf-f4bc-43b5-8304-00282b7bd224"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:33 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/8db3e70c-e1c2-4c80-aacc-a85f6dc362be?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy84ZGIzZTcwYy1lMWMyLTRjODAtYWFjYy1hODVmNmRjMzYyYmU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5dc89eab-1bc2-44a2-ada1-0b0b884d0600"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "d0b9924a-3a4e-4c38-8965-c8c611af9637"
+ ],
+ "x-ms-client-request-id": [
+ "5dc89eab-1bc2-44a2-ada1-0b0b884d0600",
+ "5dc89eab-1bc2-44a2-ada1-0b0b884d0600"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11671"
+ ],
+ "x-ms-correlation-request-id": [
+ "d0b9924a-3a4e-4c38-8965-c8c611af9637"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095219Z:d0b9924a-3a4e-4c38-8965-c8c611af9637"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:18 GMT"
+ ],
+ "Content-Length": [
+ "304"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"8db3e70c-e1c2-4c80-aacc-a85f6dc362be\",\r\n \"name\": \"8db3e70c-e1c2-4c80-aacc-a85f6dc362be\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"endTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/8db3e70c-e1c2-4c80-aacc-a85f6dc362be?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy84ZGIzZTcwYy1lMWMyLTRjODAtYWFjYy1hODVmNmRjMzYyYmU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "df5af9fb-7f07-43b0-9fd8-76d662dae7f5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "045f7551-e4f7-42b3-8af3-785dfbab391d"
+ ],
+ "x-ms-client-request-id": [
+ "df5af9fb-7f07-43b0-9fd8-76d662dae7f5",
+ "df5af9fb-7f07-43b0-9fd8-76d662dae7f5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11670"
+ ],
+ "x-ms-correlation-request-id": [
+ "045f7551-e4f7-42b3-8af3-785dfbab391d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095220Z:045f7551-e4f7-42b3-8af3-785dfbab391d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:20 GMT"
+ ],
+ "Content-Length": [
+ "304"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"8db3e70c-e1c2-4c80-aacc-a85f6dc362be\",\r\n \"name\": \"8db3e70c-e1c2-4c80-aacc-a85f6dc362be\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"endTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a0d2a455-bc88-420c-86fb-d3b96127380a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "47d856e1-7f59-4722-af36-4e7495f09ed3"
+ ],
+ "x-ms-client-request-id": [
+ "a0d2a455-bc88-420c-86fb-d3b96127380a",
+ "a0d2a455-bc88-420c-86fb-d3b96127380a"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11669"
+ ],
+ "x-ms-correlation-request-id": [
+ "47d856e1-7f59-4722-af36-4e7495f09ed3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095220Z:47d856e1-7f59-4722-af36-4e7495f09ed3"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:20 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT2.5974143S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b14edd77-cf82-4c02-b2e6-cc8034075a23"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "4d7137ff-a454-4a13-a26f-665ea75414ea"
+ ],
+ "x-ms-client-request-id": [
+ "b14edd77-cf82-4c02-b2e6-cc8034075a23",
+ "b14edd77-cf82-4c02-b2e6-cc8034075a23"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11668"
+ ],
+ "x-ms-correlation-request-id": [
+ "4d7137ff-a454-4a13-a26f-665ea75414ea"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095220Z:4d7137ff-a454-4a13-a26f-665ea75414ea"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:20 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT2.8514302S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fe6196ef-53a1-4242-8207-e1e6155bbc0e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "9a323c2d-8ca8-4fd4-8385-74359e1bfdf5"
+ ],
+ "x-ms-client-request-id": [
+ "fe6196ef-53a1-4242-8207-e1e6155bbc0e",
+ "fe6196ef-53a1-4242-8207-e1e6155bbc0e"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11667"
+ ],
+ "x-ms-correlation-request-id": [
+ "9a323c2d-8ca8-4fd4-8385-74359e1bfdf5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095221Z:9a323c2d-8ca8-4fd4-8385-74359e1bfdf5"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:20 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT3.1360593S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "09883f0e-45d0-4d9e-8478-406a728e8fbc"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "9630d98e-28a6-4742-86d7-b536e6b05988"
+ ],
+ "x-ms-client-request-id": [
+ "09883f0e-45d0-4d9e-8478-406a728e8fbc",
+ "09883f0e-45d0-4d9e-8478-406a728e8fbc"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11666"
+ ],
+ "x-ms-correlation-request-id": [
+ "9630d98e-28a6-4742-86d7-b536e6b05988"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095221Z:9630d98e-28a6-4742-86d7-b536e6b05988"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:21 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT3.3983296S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1b111d08-3b4a-459d-9508-861e203798c1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "348f3e44-ca18-4e27-a115-5824f74cdfca"
+ ],
+ "x-ms-client-request-id": [
+ "1b111d08-3b4a-459d-9508-861e203798c1",
+ "1b111d08-3b4a-459d-9508-861e203798c1"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11665"
+ ],
+ "x-ms-correlation-request-id": [
+ "348f3e44-ca18-4e27-a115-5824f74cdfca"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095221Z:348f3e44-ca18-4e27-a115-5824f74cdfca"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:21 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT3.6484864S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7f2370da-fdcb-4335-84e7-33f5ae99e7da"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "061b6799-0f05-41ee-8778-5951c3922059"
+ ],
+ "x-ms-client-request-id": [
+ "7f2370da-fdcb-4335-84e7-33f5ae99e7da",
+ "7f2370da-fdcb-4335-84e7-33f5ae99e7da"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11664"
+ ],
+ "x-ms-correlation-request-id": [
+ "061b6799-0f05-41ee-8778-5951c3922059"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095222Z:061b6799-0f05-41ee-8778-5951c3922059"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:21 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT3.9026564S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f1d1e9a5-b5e1-4f77-b578-b0e6b27e51ec"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "3e09194a-3a53-406d-bdf5-42434b01e33e"
+ ],
+ "x-ms-client-request-id": [
+ "f1d1e9a5-b5e1-4f77-b578-b0e6b27e51ec",
+ "f1d1e9a5-b5e1-4f77-b578-b0e6b27e51ec"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11663"
+ ],
+ "x-ms-correlation-request-id": [
+ "3e09194a-3a53-406d-bdf5-42434b01e33e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095222Z:3e09194a-3a53-406d-bdf5-42434b01e33e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:21 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT4.1241717S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5af2d935-f94c-4250-a008-d5dade63133f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "fee7ff05-e228-4a36-8a70-6c322ce34ca9"
+ ],
+ "x-ms-client-request-id": [
+ "5af2d935-f94c-4250-a008-d5dade63133f",
+ "5af2d935-f94c-4250-a008-d5dade63133f"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11662"
+ ],
+ "x-ms-correlation-request-id": [
+ "fee7ff05-e228-4a36-8a70-6c322ce34ca9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095222Z:fee7ff05-e228-4a36-8a70-6c322ce34ca9"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:22 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT4.433027S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6dafcb0a-d481-44fc-886d-684083f02d48"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "859bf1dd-0d9b-4916-8da7-da42527ae2fe"
+ ],
+ "x-ms-client-request-id": [
+ "6dafcb0a-d481-44fc-886d-684083f02d48",
+ "6dafcb0a-d481-44fc-886d-684083f02d48"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11661"
+ ],
+ "x-ms-correlation-request-id": [
+ "859bf1dd-0d9b-4916-8da7-da42527ae2fe"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095222Z:859bf1dd-0d9b-4916-8da7-da42527ae2fe"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:22 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT4.6788355S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cc619f7c-8af0-42de-bed9-118e74f9aa56"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "7d763229-c824-43b9-bcc2-3bb192fc2774"
+ ],
+ "x-ms-client-request-id": [
+ "cc619f7c-8af0-42de-bed9-118e74f9aa56",
+ "cc619f7c-8af0-42de-bed9-118e74f9aa56"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11660"
+ ],
+ "x-ms-correlation-request-id": [
+ "7d763229-c824-43b9-bcc2-3bb192fc2774"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095223Z:7d763229-c824-43b9-bcc2-3bb192fc2774"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:22 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT4.9482597S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a20d3fcd-4984-43c0-a385-c2826eb29d29"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "5e045f9e-cc58-436b-add4-8b3d1f569cb6"
+ ],
+ "x-ms-client-request-id": [
+ "a20d3fcd-4984-43c0-a385-c2826eb29d29",
+ "a20d3fcd-4984-43c0-a385-c2826eb29d29"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11659"
+ ],
+ "x-ms-correlation-request-id": [
+ "5e045f9e-cc58-436b-add4-8b3d1f569cb6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095223Z:5e045f9e-cc58-436b-add4-8b3d1f569cb6"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:22 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT5.2234219S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f643eefb-704c-4acc-b0bd-bdc4ef8079bb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f5376bb9-ac3a-4379-b79b-b7f36543ec29"
+ ],
+ "x-ms-client-request-id": [
+ "f643eefb-704c-4acc-b0bd-bdc4ef8079bb",
+ "f643eefb-704c-4acc-b0bd-bdc4ef8079bb"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11658"
+ ],
+ "x-ms-correlation-request-id": [
+ "f5376bb9-ac3a-4379-b79b-b7f36543ec29"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095223Z:f5376bb9-ac3a-4379-b79b-b7f36543ec29"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:23 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT5.4734288S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4c8b78d8-20b1-4e28-90ee-2476a5cc0333"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "7d1af2fa-3e07-455d-9a6f-950b27ff8144"
+ ],
+ "x-ms-client-request-id": [
+ "4c8b78d8-20b1-4e28-90ee-2476a5cc0333",
+ "4c8b78d8-20b1-4e28-90ee-2476a5cc0333"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11657"
+ ],
+ "x-ms-correlation-request-id": [
+ "7d1af2fa-3e07-455d-9a6f-950b27ff8144"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095223Z:7d1af2fa-3e07-455d-9a6f-950b27ff8144"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:23 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT5.723416S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "834c47d4-52e6-4117-a04c-b6993ad07577"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "1ce77ccb-2a77-46ad-898f-c152629f70ad"
+ ],
+ "x-ms-client-request-id": [
+ "834c47d4-52e6-4117-a04c-b6993ad07577",
+ "834c47d4-52e6-4117-a04c-b6993ad07577"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11656"
+ ],
+ "x-ms-correlation-request-id": [
+ "1ce77ccb-2a77-46ad-898f-c152629f70ad"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095224Z:1ce77ccb-2a77-46ad-898f-c152629f70ad"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:23 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT5.9743684S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4b885a51-6a36-4110-9199-9c84ecba4c6a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "861d75a7-86fa-4df6-9bce-123befe2e738"
+ ],
+ "x-ms-client-request-id": [
+ "4b885a51-6a36-4110-9199-9c84ecba4c6a",
+ "4b885a51-6a36-4110-9199-9c84ecba4c6a"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11655"
+ ],
+ "x-ms-correlation-request-id": [
+ "861d75a7-86fa-4df6-9bce-123befe2e738"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095224Z:861d75a7-86fa-4df6-9bce-123befe2e738"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:24 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT6.7012059S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7ae7eaef-08d2-452f-a545-a4ef832fed29"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c16a2275-f715-46ed-8a5f-37eb13ed197e"
+ ],
+ "x-ms-client-request-id": [
+ "7ae7eaef-08d2-452f-a545-a4ef832fed29",
+ "7ae7eaef-08d2-452f-a545-a4ef832fed29"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11654"
+ ],
+ "x-ms-correlation-request-id": [
+ "c16a2275-f715-46ed-8a5f-37eb13ed197e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095225Z:c16a2275-f715-46ed-8a5f-37eb13ed197e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:24 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT6.9355767S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "39f573b6-c8d2-4a13-a38a-c8d616f5d001"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "fe60cff4-4e29-408d-9579-499cd0a996f8"
+ ],
+ "x-ms-client-request-id": [
+ "39f573b6-c8d2-4a13-a38a-c8d616f5d001",
+ "39f573b6-c8d2-4a13-a38a-c8d616f5d001"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11653"
+ ],
+ "x-ms-correlation-request-id": [
+ "fe60cff4-4e29-408d-9579-499cd0a996f8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095225Z:fe60cff4-4e29-408d-9579-499cd0a996f8"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:24 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT7.201226S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "36f15ce9-9d78-4d58-945e-e12b185fbbd7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "3257b665-4eff-49af-b228-8f450580ec03"
+ ],
+ "x-ms-client-request-id": [
+ "36f15ce9-9d78-4d58-945e-e12b185fbbd7",
+ "36f15ce9-9d78-4d58-945e-e12b185fbbd7"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11652"
+ ],
+ "x-ms-correlation-request-id": [
+ "3257b665-4eff-49af-b228-8f450580ec03"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095225Z:3257b665-4eff-49af-b228-8f450580ec03"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:25 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT7.4553795S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "46d95c17-07f5-48c5-9fad-bc7c7570fefe"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "5dd11de8-0bec-4b89-9812-0f051963d2cf"
+ ],
+ "x-ms-client-request-id": [
+ "46d95c17-07f5-48c5-9fad-bc7c7570fefe",
+ "46d95c17-07f5-48c5-9fad-bc7c7570fefe"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11651"
+ ],
+ "x-ms-correlation-request-id": [
+ "5dd11de8-0bec-4b89-9812-0f051963d2cf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095225Z:5dd11de8-0bec-4b89-9812-0f051963d2cf"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:25 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT7.784852S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7ca7e300-d93e-4927-8977-aebc078948a2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e814d376-524f-4855-8998-964d77966183"
+ ],
+ "x-ms-client-request-id": [
+ "7ca7e300-d93e-4927-8977-aebc078948a2",
+ "7ca7e300-d93e-4927-8977-aebc078948a2"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11650"
+ ],
+ "x-ms-correlation-request-id": [
+ "e814d376-524f-4855-8998-964d77966183"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095226Z:e814d376-524f-4855-8998-964d77966183"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:25 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT8.096027S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "94134dff-6656-4450-b03d-f618b3eee4b6"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f14f0e5d-d5bb-416f-bf57-0876f6c7a13b"
+ ],
+ "x-ms-client-request-id": [
+ "94134dff-6656-4450-b03d-f618b3eee4b6",
+ "94134dff-6656-4450-b03d-f618b3eee4b6"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11649"
+ ],
+ "x-ms-correlation-request-id": [
+ "f14f0e5d-d5bb-416f-bf57-0876f6c7a13b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095226Z:f14f0e5d-d5bb-416f-bf57-0876f6c7a13b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:26 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT8.3341997S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f14f6c10-c7aa-4c84-b704-63b3225e53ed"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "3a2b6c9b-7778-4d22-9aa6-56d8d7341229"
+ ],
+ "x-ms-client-request-id": [
+ "f14f6c10-c7aa-4c84-b704-63b3225e53ed",
+ "f14f6c10-c7aa-4c84-b704-63b3225e53ed"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11648"
+ ],
+ "x-ms-correlation-request-id": [
+ "3a2b6c9b-7778-4d22-9aa6-56d8d7341229"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095226Z:3a2b6c9b-7778-4d22-9aa6-56d8d7341229"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:26 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT8.5685298S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "114ebcf6-483c-4ec2-aad4-21fab8c1e851"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "4e28e810-67b3-4b60-9c1a-6f737296eaaf"
+ ],
+ "x-ms-client-request-id": [
+ "114ebcf6-483c-4ec2-aad4-21fab8c1e851",
+ "114ebcf6-483c-4ec2-aad4-21fab8c1e851"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11647"
+ ],
+ "x-ms-correlation-request-id": [
+ "4e28e810-67b3-4b60-9c1a-6f737296eaaf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095226Z:4e28e810-67b3-4b60-9c1a-6f737296eaaf"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:26 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT8.8232705S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d2a5c97a-66c7-4333-976e-dba52326da48"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "67b3a5ee-7fc1-4767-b932-fbcd156450b6"
+ ],
+ "x-ms-client-request-id": [
+ "d2a5c97a-66c7-4333-976e-dba52326da48",
+ "d2a5c97a-66c7-4333-976e-dba52326da48"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11646"
+ ],
+ "x-ms-correlation-request-id": [
+ "67b3a5ee-7fc1-4767-b932-fbcd156450b6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095227Z:67b3a5ee-7fc1-4767-b932-fbcd156450b6"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:26 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT9.1357878S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2fda46df-41ca-447d-a742-dd41a1e8e86a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "0e07c2d2-e18e-4495-acda-e41ce88d24cc"
+ ],
+ "x-ms-client-request-id": [
+ "2fda46df-41ca-447d-a742-dd41a1e8e86a",
+ "2fda46df-41ca-447d-a742-dd41a1e8e86a"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11645"
+ ],
+ "x-ms-correlation-request-id": [
+ "0e07c2d2-e18e-4495-acda-e41ce88d24cc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095227Z:0e07c2d2-e18e-4495-acda-e41ce88d24cc"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:27 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT9.4247134S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "338a3df1-67bc-41de-b2c5-21f06a228fe3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "56d0bd84-e946-4d28-9b5b-6c63d71e0823"
+ ],
+ "x-ms-client-request-id": [
+ "338a3df1-67bc-41de-b2c5-21f06a228fe3",
+ "338a3df1-67bc-41de-b2c5-21f06a228fe3"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11644"
+ ],
+ "x-ms-correlation-request-id": [
+ "56d0bd84-e946-4d28-9b5b-6c63d71e0823"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095227Z:56d0bd84-e946-4d28-9b5b-6c63d71e0823"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:27 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT9.7250305S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c708a0f3-08b3-434b-9d4c-48d01baa137b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "df82d74f-f4e6-4be2-8095-30903933e705"
+ ],
+ "x-ms-client-request-id": [
+ "c708a0f3-08b3-434b-9d4c-48d01baa137b",
+ "c708a0f3-08b3-434b-9d4c-48d01baa137b"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11643"
+ ],
+ "x-ms-correlation-request-id": [
+ "df82d74f-f4e6-4be2-8095-30903933e705"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095228Z:df82d74f-f4e6-4be2-8095-30903933e705"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:27 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT9.9816698S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8f7c3e68-96ab-4b70-9b30-ec398c51bcf0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "75aac023-3df0-4362-b557-673bd65e721d"
+ ],
+ "x-ms-client-request-id": [
+ "8f7c3e68-96ab-4b70-9b30-ec398c51bcf0",
+ "8f7c3e68-96ab-4b70-9b30-ec398c51bcf0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11642"
+ ],
+ "x-ms-correlation-request-id": [
+ "75aac023-3df0-4362-b557-673bd65e721d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095228Z:75aac023-3df0-4362-b557-673bd65e721d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:27 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT10.2590138S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4b4582f3-392e-4b86-acd5-492a528e1438"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "19a38a5a-1e03-4919-8ab5-2c259796311e"
+ ],
+ "x-ms-client-request-id": [
+ "4b4582f3-392e-4b86-acd5-492a528e1438",
+ "4b4582f3-392e-4b86-acd5-492a528e1438"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11641"
+ ],
+ "x-ms-correlation-request-id": [
+ "19a38a5a-1e03-4919-8ab5-2c259796311e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095228Z:19a38a5a-1e03-4919-8ab5-2c259796311e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:28 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT10.4816891S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2b3935b8-7013-4094-ae8f-dc28d2e60c4f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "9a49b221-fb4c-4c82-8702-0845dd3212dc"
+ ],
+ "x-ms-client-request-id": [
+ "2b3935b8-7013-4094-ae8f-dc28d2e60c4f",
+ "2b3935b8-7013-4094-ae8f-dc28d2e60c4f"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11640"
+ ],
+ "x-ms-correlation-request-id": [
+ "9a49b221-fb4c-4c82-8702-0845dd3212dc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095228Z:9a49b221-fb4c-4c82-8702-0845dd3212dc"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:28 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT10.8197213S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "94d9f7d4-3749-4d7f-b0e8-aebbd9f0f73c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "bee91fc0-a19c-4d83-9678-50c5e46e1070"
+ ],
+ "x-ms-client-request-id": [
+ "94d9f7d4-3749-4d7f-b0e8-aebbd9f0f73c",
+ "94d9f7d4-3749-4d7f-b0e8-aebbd9f0f73c"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11639"
+ ],
+ "x-ms-correlation-request-id": [
+ "bee91fc0-a19c-4d83-9678-50c5e46e1070"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095229Z:bee91fc0-a19c-4d83-9678-50c5e46e1070"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:28 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT11.0754652S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7edd394f-7842-47c2-ae66-83f74b181b96"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "13566f03-ed71-4aaa-86b3-361b8e805382"
+ ],
+ "x-ms-client-request-id": [
+ "7edd394f-7842-47c2-ae66-83f74b181b96",
+ "7edd394f-7842-47c2-ae66-83f74b181b96"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11638"
+ ],
+ "x-ms-correlation-request-id": [
+ "13566f03-ed71-4aaa-86b3-361b8e805382"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095229Z:13566f03-ed71-4aaa-86b3-361b8e805382"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:29 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT11.2851201S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "39516305-56d9-4d1a-a49d-45293357d18d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "d6d1f57e-126c-46ad-a19a-4009e983cb32"
+ ],
+ "x-ms-client-request-id": [
+ "39516305-56d9-4d1a-a49d-45293357d18d",
+ "39516305-56d9-4d1a-a49d-45293357d18d"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11637"
+ ],
+ "x-ms-correlation-request-id": [
+ "d6d1f57e-126c-46ad-a19a-4009e983cb32"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095229Z:d6d1f57e-126c-46ad-a19a-4009e983cb32"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:29 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT11.5351303S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "35b77cb3-172b-472b-9dbf-f562d7ca5f6e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "005b2b6f-c5d8-4e12-9ff4-94f4f8d6fb19"
+ ],
+ "x-ms-client-request-id": [
+ "35b77cb3-172b-472b-9dbf-f562d7ca5f6e",
+ "35b77cb3-172b-472b-9dbf-f562d7ca5f6e"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11636"
+ ],
+ "x-ms-correlation-request-id": [
+ "005b2b6f-c5d8-4e12-9ff4-94f4f8d6fb19"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095229Z:005b2b6f-c5d8-4e12-9ff4-94f4f8d6fb19"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:29 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT11.8216505S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "158d99bf-ae2e-4fa5-869a-68cf62bf343d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "92dd372b-e25f-47cd-985f-0737bd19e375"
+ ],
+ "x-ms-client-request-id": [
+ "158d99bf-ae2e-4fa5-869a-68cf62bf343d",
+ "158d99bf-ae2e-4fa5-869a-68cf62bf343d"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11635"
+ ],
+ "x-ms-correlation-request-id": [
+ "92dd372b-e25f-47cd-985f-0737bd19e375"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095230Z:92dd372b-e25f-47cd-985f-0737bd19e375"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:29 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT12.0872843S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b9dea352-ca1a-41d6-a9c8-cd2dc71761ee"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "cb45c0a2-cb17-436a-acf6-dd7af1a1367c"
+ ],
+ "x-ms-client-request-id": [
+ "b9dea352-ca1a-41d6-a9c8-cd2dc71761ee",
+ "b9dea352-ca1a-41d6-a9c8-cd2dc71761ee"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11634"
+ ],
+ "x-ms-correlation-request-id": [
+ "cb45c0a2-cb17-436a-acf6-dd7af1a1367c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095230Z:cb45c0a2-cb17-436a-acf6-dd7af1a1367c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:30 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT12.3511039S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3eb9e83d-4c3f-4442-80fa-5acf7e1de9d9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "fa8e5951-6026-4464-9c5e-c54e06470347"
+ ],
+ "x-ms-client-request-id": [
+ "3eb9e83d-4c3f-4442-80fa-5acf7e1de9d9",
+ "3eb9e83d-4c3f-4442-80fa-5acf7e1de9d9"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11633"
+ ],
+ "x-ms-correlation-request-id": [
+ "fa8e5951-6026-4464-9c5e-c54e06470347"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095230Z:fa8e5951-6026-4464-9c5e-c54e06470347"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:30 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT12.5855303S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d6ca441b-314a-4b5b-9f72-38ea80fcc03b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "abf45f62-f1b0-4461-80d4-9b66be30997c"
+ ],
+ "x-ms-client-request-id": [
+ "d6ca441b-314a-4b5b-9f72-38ea80fcc03b",
+ "d6ca441b-314a-4b5b-9f72-38ea80fcc03b"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11632"
+ ],
+ "x-ms-correlation-request-id": [
+ "abf45f62-f1b0-4461-80d4-9b66be30997c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095231Z:abf45f62-f1b0-4461-80d4-9b66be30997c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:30 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT12.8685651S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "432b0fb7-704f-471c-92e9-5343872c85bb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "0444a86c-2062-405a-9a06-2e7b45e1835c"
+ ],
+ "x-ms-client-request-id": [
+ "432b0fb7-704f-471c-92e9-5343872c85bb",
+ "432b0fb7-704f-471c-92e9-5343872c85bb"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11631"
+ ],
+ "x-ms-correlation-request-id": [
+ "0444a86c-2062-405a-9a06-2e7b45e1835c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095231Z:0444a86c-2062-405a-9a06-2e7b45e1835c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:30 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT13.1133358S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f0b34eae-9759-48b0-a3fb-e763c037e9f5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "106c1b33-7903-425d-a09f-2ade50282bca"
+ ],
+ "x-ms-client-request-id": [
+ "f0b34eae-9759-48b0-a3fb-e763c037e9f5",
+ "f0b34eae-9759-48b0-a3fb-e763c037e9f5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11630"
+ ],
+ "x-ms-correlation-request-id": [
+ "106c1b33-7903-425d-a09f-2ade50282bca"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095231Z:106c1b33-7903-425d-a09f-2ade50282bca"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:31 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT13.3534323S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "baca1c21-85fb-422c-b272-7c3dd0567a18"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "8cec6459-8ef9-4736-b33c-edccf7aa0e4f"
+ ],
+ "x-ms-client-request-id": [
+ "baca1c21-85fb-422c-b272-7c3dd0567a18",
+ "baca1c21-85fb-422c-b272-7c3dd0567a18"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11629"
+ ],
+ "x-ms-correlation-request-id": [
+ "8cec6459-8ef9-4736-b33c-edccf7aa0e4f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095231Z:8cec6459-8ef9-4736-b33c-edccf7aa0e4f"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:31 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT13.6071897S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3e81831b-0525-45c6-8827-f4bf237aa352"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "0e8e92a1-99ec-4c73-a6a7-3f97e10660e9"
+ ],
+ "x-ms-client-request-id": [
+ "3e81831b-0525-45c6-8827-f4bf237aa352",
+ "3e81831b-0525-45c6-8827-f4bf237aa352"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11628"
+ ],
+ "x-ms-correlation-request-id": [
+ "0e8e92a1-99ec-4c73-a6a7-3f97e10660e9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095231Z:0e8e92a1-99ec-4c73-a6a7-3f97e10660e9"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:31 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT13.8511596S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "058e72f8-3d3b-4f68-b581-aa70145586d5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "7046d2d0-8570-411e-83e5-9b32d70eacce"
+ ],
+ "x-ms-client-request-id": [
+ "058e72f8-3d3b-4f68-b581-aa70145586d5",
+ "058e72f8-3d3b-4f68-b581-aa70145586d5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11627"
+ ],
+ "x-ms-correlation-request-id": [
+ "7046d2d0-8570-411e-83e5-9b32d70eacce"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095232Z:7046d2d0-8570-411e-83e5-9b32d70eacce"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:31 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT14.161102S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2b89513b-c628-4a15-8386-05f01eea9b4f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "b6c2b1ab-ce41-45a3-8169-55f21349bb64"
+ ],
+ "x-ms-client-request-id": [
+ "2b89513b-c628-4a15-8386-05f01eea9b4f",
+ "2b89513b-c628-4a15-8386-05f01eea9b4f"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11626"
+ ],
+ "x-ms-correlation-request-id": [
+ "b6c2b1ab-ce41-45a3-8169-55f21349bb64"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095232Z:b6c2b1ab-ce41-45a3-8169-55f21349bb64"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:32 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT14.4423651S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a66b535d-4665-4bb9-a5ca-e0cb5ed36589"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e612faad-4dcf-4779-b593-5fce84b5ab69"
+ ],
+ "x-ms-client-request-id": [
+ "a66b535d-4665-4bb9-a5ca-e0cb5ed36589",
+ "a66b535d-4665-4bb9-a5ca-e0cb5ed36589"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11625"
+ ],
+ "x-ms-correlation-request-id": [
+ "e612faad-4dcf-4779-b593-5fce84b5ab69"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095232Z:e612faad-4dcf-4779-b593-5fce84b5ab69"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:32 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT14.7236238S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0bcd8938-dd40-44b8-9b20-295c56729e0c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "cae4a3dc-76b8-4010-ae4a-42d69bda12b0"
+ ],
+ "x-ms-client-request-id": [
+ "0bcd8938-dd40-44b8-9b20-295c56729e0c",
+ "0bcd8938-dd40-44b8-9b20-295c56729e0c"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11624"
+ ],
+ "x-ms-correlation-request-id": [
+ "cae4a3dc-76b8-4010-ae4a-42d69bda12b0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095233Z:cae4a3dc-76b8-4010-ae4a-42d69bda12b0"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:32 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT15.0074586S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "54880cd3-bf1e-4b67-9af6-2af40f819d18"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "b8089268-0baa-43a7-97c0-dbecd3d796b4"
+ ],
+ "x-ms-client-request-id": [
+ "54880cd3-bf1e-4b67-9af6-2af40f819d18",
+ "54880cd3-bf1e-4b67-9af6-2af40f819d18"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11623"
+ ],
+ "x-ms-correlation-request-id": [
+ "b8089268-0baa-43a7-97c0-dbecd3d796b4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095233Z:b8089268-0baa-43a7-97c0-dbecd3d796b4"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:33 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT15.3228684S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d76dedb2-c20f-445e-be7b-575da3e3dc48"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e4ff58f2-65e0-4092-bd16-0c978cd618f6"
+ ],
+ "x-ms-client-request-id": [
+ "d76dedb2-c20f-445e-be7b-575da3e3dc48",
+ "d76dedb2-c20f-445e-be7b-575da3e3dc48"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11622"
+ ],
+ "x-ms-correlation-request-id": [
+ "e4ff58f2-65e0-4092-bd16-0c978cd618f6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095233Z:e4ff58f2-65e0-4092-bd16-0c978cd618f6"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:33 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT15.6168194S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "87f7dfca-7e0e-4ce1-ac9b-ca658632ac0d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "4e5cff1a-01bb-4ef6-9d8d-a46ba896bf3b"
+ ],
+ "x-ms-client-request-id": [
+ "87f7dfca-7e0e-4ce1-ac9b-ca658632ac0d",
+ "87f7dfca-7e0e-4ce1-ac9b-ca658632ac0d"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11621"
+ ],
+ "x-ms-correlation-request-id": [
+ "4e5cff1a-01bb-4ef6-9d8d-a46ba896bf3b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095233Z:4e5cff1a-01bb-4ef6-9d8d-a46ba896bf3b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:33 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT15.8668309S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ed1aa728-d293-4568-9b29-4bcc4e6a25b1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e11c63dc-ae5b-4bb6-84ee-b7a30cbf4d34"
+ ],
+ "x-ms-client-request-id": [
+ "ed1aa728-d293-4568-9b29-4bcc4e6a25b1",
+ "ed1aa728-d293-4568-9b29-4bcc4e6a25b1"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11620"
+ ],
+ "x-ms-correlation-request-id": [
+ "e11c63dc-ae5b-4bb6-84ee-b7a30cbf4d34"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095234Z:e11c63dc-ae5b-4bb6-84ee-b7a30cbf4d34"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:33 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT16.1032043S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "659861cf-8a5a-4c3f-a9fc-baaf7e2714ac"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "0015af02-cce1-4c4e-84d9-38c2093ea6fd"
+ ],
+ "x-ms-client-request-id": [
+ "659861cf-8a5a-4c3f-a9fc-baaf7e2714ac",
+ "659861cf-8a5a-4c3f-a9fc-baaf7e2714ac"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11619"
+ ],
+ "x-ms-correlation-request-id": [
+ "0015af02-cce1-4c4e-84d9-38c2093ea6fd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095234Z:0015af02-cce1-4c4e-84d9-38c2093ea6fd"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:34 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT16.3199798S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e19ec930-8885-4034-8b16-6335a9735919"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "90074e36-a3c9-435f-8a3a-aec3cda7c814"
+ ],
+ "x-ms-client-request-id": [
+ "e19ec930-8885-4034-8b16-6335a9735919",
+ "e19ec930-8885-4034-8b16-6335a9735919"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11618"
+ ],
+ "x-ms-correlation-request-id": [
+ "90074e36-a3c9-435f-8a3a-aec3cda7c814"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095234Z:90074e36-a3c9-435f-8a3a-aec3cda7c814"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:34 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT16.5729321S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "30e56925-fcb5-4dc4-a0af-8e79248aa467"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "a2bad14c-3628-41cd-b869-29e329b240eb"
+ ],
+ "x-ms-client-request-id": [
+ "30e56925-fcb5-4dc4-a0af-8e79248aa467",
+ "30e56925-fcb5-4dc4-a0af-8e79248aa467"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11617"
+ ],
+ "x-ms-correlation-request-id": [
+ "a2bad14c-3628-41cd-b869-29e329b240eb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095234Z:a2bad14c-3628-41cd-b869-29e329b240eb"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:34 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT16.8219925S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "707f9274-b471-454c-863f-a85063c85f16"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "1fc7a04a-9fa6-49e0-a1b5-3557507da5c0"
+ ],
+ "x-ms-client-request-id": [
+ "707f9274-b471-454c-863f-a85063c85f16",
+ "707f9274-b471-454c-863f-a85063c85f16"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11616"
+ ],
+ "x-ms-correlation-request-id": [
+ "1fc7a04a-9fa6-49e0-a1b5-3557507da5c0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095235Z:1fc7a04a-9fa6-49e0-a1b5-3557507da5c0"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:34 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT17.0876199S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5a39e4f8-9209-482b-ae67-dfb7a73ac3eb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e4b964a0-cfd4-49cb-9370-b4ea0e9c34ae"
+ ],
+ "x-ms-client-request-id": [
+ "5a39e4f8-9209-482b-ae67-dfb7a73ac3eb",
+ "5a39e4f8-9209-482b-ae67-dfb7a73ac3eb"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11615"
+ ],
+ "x-ms-correlation-request-id": [
+ "e4b964a0-cfd4-49cb-9370-b4ea0e9c34ae"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095235Z:e4b964a0-cfd4-49cb-9370-b4ea0e9c34ae"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:35 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT17.3532561S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9f2c528b-5363-4fac-bdd5-ca878afd1f00"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "034bf517-1fc8-409d-a5f8-51d3f744448d"
+ ],
+ "x-ms-client-request-id": [
+ "9f2c528b-5363-4fac-bdd5-ca878afd1f00",
+ "9f2c528b-5363-4fac-bdd5-ca878afd1f00"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11614"
+ ],
+ "x-ms-correlation-request-id": [
+ "034bf517-1fc8-409d-a5f8-51d3f744448d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095235Z:034bf517-1fc8-409d-a5f8-51d3f744448d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:35 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT17.6032791S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "edb22859-ff9a-42a3-883f-b1dafb267569"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c9085f22-e9d2-4416-b75f-253e1f6527fd"
+ ],
+ "x-ms-client-request-id": [
+ "edb22859-ff9a-42a3-883f-b1dafb267569",
+ "edb22859-ff9a-42a3-883f-b1dafb267569"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11613"
+ ],
+ "x-ms-correlation-request-id": [
+ "c9085f22-e9d2-4416-b75f-253e1f6527fd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095236Z:c9085f22-e9d2-4416-b75f-253e1f6527fd"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:35 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT17.8982929S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "50b94d98-4051-4ffa-9bd7-b176e5c9b2f9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "efbcdab8-9ddb-4e86-9a62-097af0192fa0"
+ ],
+ "x-ms-client-request-id": [
+ "50b94d98-4051-4ffa-9bd7-b176e5c9b2f9",
+ "50b94d98-4051-4ffa-9bd7-b176e5c9b2f9"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11612"
+ ],
+ "x-ms-correlation-request-id": [
+ "efbcdab8-9ddb-4e86-9a62-097af0192fa0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095236Z:efbcdab8-9ddb-4e86-9a62-097af0192fa0"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:35 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT18.19513S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2ec677a8-c086-44d1-8760-4ef372cbacb0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "8b3ecb00-cf0a-4764-850c-f65c8bb969a0"
+ ],
+ "x-ms-client-request-id": [
+ "2ec677a8-c086-44d1-8760-4ef372cbacb0",
+ "2ec677a8-c086-44d1-8760-4ef372cbacb0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11611"
+ ],
+ "x-ms-correlation-request-id": [
+ "8b3ecb00-cf0a-4764-850c-f65c8bb969a0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095236Z:8b3ecb00-cf0a-4764-850c-f65c8bb969a0"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:36 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT18.5466909S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ce82071c-0777-4123-b103-bd136213268e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "9ff75170-e1ea-426c-9c7a-ea0614c8d67b"
+ ],
+ "x-ms-client-request-id": [
+ "ce82071c-0777-4123-b103-bd136213268e",
+ "ce82071c-0777-4123-b103-bd136213268e"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11610"
+ ],
+ "x-ms-correlation-request-id": [
+ "9ff75170-e1ea-426c-9c7a-ea0614c8d67b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095236Z:9ff75170-e1ea-426c-9c7a-ea0614c8d67b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:36 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT18.8279558S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "69de0efe-7f9b-4133-8ec6-d8aed658efc3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "191ea60e-b409-4904-9e4c-8b0065653291"
+ ],
+ "x-ms-client-request-id": [
+ "69de0efe-7f9b-4133-8ec6-d8aed658efc3",
+ "69de0efe-7f9b-4133-8ec6-d8aed658efc3"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11609"
+ ],
+ "x-ms-correlation-request-id": [
+ "191ea60e-b409-4904-9e4c-8b0065653291"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095237Z:191ea60e-b409-4904-9e4c-8b0065653291"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:36 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT19.0738401S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c2d9d6a8-972e-42fd-8f98-fa851f292546"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "006e69c4-1e94-422b-9f44-267efa572ce5"
+ ],
+ "x-ms-client-request-id": [
+ "c2d9d6a8-972e-42fd-8f98-fa851f292546",
+ "c2d9d6a8-972e-42fd-8f98-fa851f292546"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11608"
+ ],
+ "x-ms-correlation-request-id": [
+ "006e69c4-1e94-422b-9f44-267efa572ce5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095237Z:006e69c4-1e94-422b-9f44-267efa572ce5"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:37 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT19.3694441S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b34bb39e-aee3-41ee-a9af-67fa6fb78c35"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "14191aa1-57e4-4c9a-ab7a-26ff4783346d"
+ ],
+ "x-ms-client-request-id": [
+ "b34bb39e-aee3-41ee-a9af-67fa6fb78c35",
+ "b34bb39e-aee3-41ee-a9af-67fa6fb78c35"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11607"
+ ],
+ "x-ms-correlation-request-id": [
+ "14191aa1-57e4-4c9a-ab7a-26ff4783346d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095237Z:14191aa1-57e4-4c9a-ab7a-26ff4783346d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:37 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT19.6533848S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fa203dfc-1fd8-48f3-851b-d01f6e30d9cf"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "740b24c1-eae7-4db7-a8cb-0f3a2c68e7a5"
+ ],
+ "x-ms-client-request-id": [
+ "fa203dfc-1fd8-48f3-851b-d01f6e30d9cf",
+ "fa203dfc-1fd8-48f3-851b-d01f6e30d9cf"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11606"
+ ],
+ "x-ms-correlation-request-id": [
+ "740b24c1-eae7-4db7-a8cb-0f3a2c68e7a5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095238Z:740b24c1-eae7-4db7-a8cb-0f3a2c68e7a5"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:37 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT19.8985117S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a0f3ffc9-78cc-4408-ab97-6973188793f0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "fc63a725-d58b-4015-9746-6482df6f4912"
+ ],
+ "x-ms-client-request-id": [
+ "a0f3ffc9-78cc-4408-ab97-6973188793f0",
+ "a0f3ffc9-78cc-4408-ab97-6973188793f0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11605"
+ ],
+ "x-ms-correlation-request-id": [
+ "fc63a725-d58b-4015-9746-6482df6f4912"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095238Z:fc63a725-d58b-4015-9746-6482df6f4912"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:37 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT20.1641625S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4d93d22b-f7fb-4d08-9a47-33bae511a44d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "3af502b5-ce6f-4ef3-a3ae-ca5d5f58258e"
+ ],
+ "x-ms-client-request-id": [
+ "4d93d22b-f7fb-4d08-9a47-33bae511a44d",
+ "4d93d22b-f7fb-4d08-9a47-33bae511a44d"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11604"
+ ],
+ "x-ms-correlation-request-id": [
+ "3af502b5-ce6f-4ef3-a3ae-ca5d5f58258e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095238Z:3af502b5-ce6f-4ef3-a3ae-ca5d5f58258e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:38 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT20.4243586S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1baf235c-da7a-4805-9d1c-27034d580c00"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "48b972e1-a7ec-4041-9e97-5ca2a8a67a4e"
+ ],
+ "x-ms-client-request-id": [
+ "1baf235c-da7a-4805-9d1c-27034d580c00",
+ "1baf235c-da7a-4805-9d1c-27034d580c00"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11603"
+ ],
+ "x-ms-correlation-request-id": [
+ "48b972e1-a7ec-4041-9e97-5ca2a8a67a4e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095238Z:48b972e1-a7ec-4041-9e97-5ca2a8a67a4e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:38 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT20.6914013S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "faa8287e-6380-4ff1-a4d0-aeaf7e831c16"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "71adc7c5-0a82-4d96-acf4-290090ca5a9b"
+ ],
+ "x-ms-client-request-id": [
+ "faa8287e-6380-4ff1-a4d0-aeaf7e831c16",
+ "faa8287e-6380-4ff1-a4d0-aeaf7e831c16"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11602"
+ ],
+ "x-ms-correlation-request-id": [
+ "71adc7c5-0a82-4d96-acf4-290090ca5a9b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095239Z:71adc7c5-0a82-4d96-acf4-290090ca5a9b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:38 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT20.9574192S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bb03290a-edde-4b66-abf3-7be428b8336d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "a0b29ec4-3cbf-4491-a11f-3cec846760d8"
+ ],
+ "x-ms-client-request-id": [
+ "bb03290a-edde-4b66-abf3-7be428b8336d",
+ "bb03290a-edde-4b66-abf3-7be428b8336d"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11601"
+ ],
+ "x-ms-correlation-request-id": [
+ "a0b29ec4-3cbf-4491-a11f-3cec846760d8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095239Z:a0b29ec4-3cbf-4491-a11f-3cec846760d8"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:38 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.2064378S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2fa24e4c-99b4-41ee-b875-ec237d8aea4e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "85f26e92-b840-43a0-bb53-160b86b29582"
+ ],
+ "x-ms-client-request-id": [
+ "2fa24e4c-99b4-41ee-b875-ec237d8aea4e",
+ "2fa24e4c-99b4-41ee-b875-ec237d8aea4e"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11600"
+ ],
+ "x-ms-correlation-request-id": [
+ "85f26e92-b840-43a0-bb53-160b86b29582"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095239Z:85f26e92-b840-43a0-bb53-160b86b29582"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:39 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.5245339S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0447f78a-15e3-41d0-80fe-aded607afc45"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "99c27f52-bc7c-4d3e-bd4b-7ec8c8d6b30b"
+ ],
+ "x-ms-client-request-id": [
+ "0447f78a-15e3-41d0-80fe-aded607afc45",
+ "0447f78a-15e3-41d0-80fe-aded607afc45"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11599"
+ ],
+ "x-ms-correlation-request-id": [
+ "99c27f52-bc7c-4d3e-bd4b-7ec8c8d6b30b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095239Z:99c27f52-bc7c-4d3e-bd4b-7ec8c8d6b30b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:39 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.769947S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a2795036-007c-4747-9498-1a12b2a58aeb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "5d0b1205-5b03-443f-86a0-c81058b6b689"
+ ],
+ "x-ms-client-request-id": [
+ "a2795036-007c-4747-9498-1a12b2a58aeb",
+ "a2795036-007c-4747-9498-1a12b2a58aeb"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11598"
+ ],
+ "x-ms-correlation-request-id": [
+ "5d0b1205-5b03-443f-86a0-c81058b6b689"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095240Z:5d0b1205-5b03-443f-86a0-c81058b6b689"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:39 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.9922969S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "84dc7292-d15e-407a-9be7-2a694eff4ff8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "0ec35a2e-c532-4d38-bebe-c93a4d566a96"
+ ],
+ "x-ms-client-request-id": [
+ "84dc7292-d15e-407a-9be7-2a694eff4ff8",
+ "84dc7292-d15e-407a-9be7-2a694eff4ff8"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11597"
+ ],
+ "x-ms-correlation-request-id": [
+ "0ec35a2e-c532-4d38-bebe-c93a4d566a96"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095240Z:0ec35a2e-c532-4d38-bebe-c93a4d566a96"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:39 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT22.2423386S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "beb0a72c-61fb-4fbb-a714-8cef430b4c3d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c5c6096c-35f5-4abe-8102-e0fd830cb6ae"
+ ],
+ "x-ms-client-request-id": [
+ "beb0a72c-61fb-4fbb-a714-8cef430b4c3d",
+ "beb0a72c-61fb-4fbb-a714-8cef430b4c3d"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11596"
+ ],
+ "x-ms-correlation-request-id": [
+ "c5c6096c-35f5-4abe-8102-e0fd830cb6ae"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095240Z:c5c6096c-35f5-4abe-8102-e0fd830cb6ae"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:40 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT22.4976057S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a9cf2fa5-1028-400e-8be9-8449094085d1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "9ee038db-a5f6-4b53-960d-1429d3847bbb"
+ ],
+ "x-ms-client-request-id": [
+ "a9cf2fa5-1028-400e-8be9-8449094085d1",
+ "a9cf2fa5-1028-400e-8be9-8449094085d1"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11595"
+ ],
+ "x-ms-correlation-request-id": [
+ "9ee038db-a5f6-4b53-960d-1429d3847bbb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095240Z:9ee038db-a5f6-4b53-960d-1429d3847bbb"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:40 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT22.7736026S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "10f3d660-ed20-4f72-8072-e64a5c584c72"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "779ba7af-4d7b-4d12-9f56-ff5d01c6d9a7"
+ ],
+ "x-ms-client-request-id": [
+ "10f3d660-ed20-4f72-8072-e64a5c584c72",
+ "10f3d660-ed20-4f72-8072-e64a5c584c72"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11594"
+ ],
+ "x-ms-correlation-request-id": [
+ "779ba7af-4d7b-4d12-9f56-ff5d01c6d9a7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095241Z:779ba7af-4d7b-4d12-9f56-ff5d01c6d9a7"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:40 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT23.0668661S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "70de54b8-6bcd-466d-82af-265c334672a3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "d38003b4-3826-453a-87dd-6c124c8cf0d4"
+ ],
+ "x-ms-client-request-id": [
+ "70de54b8-6bcd-466d-82af-265c334672a3",
+ "70de54b8-6bcd-466d-82af-265c334672a3"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11593"
+ ],
+ "x-ms-correlation-request-id": [
+ "d38003b4-3826-453a-87dd-6c124c8cf0d4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095241Z:d38003b4-3826-453a-87dd-6c124c8cf0d4"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:40 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT23.3048989S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "194f323b-2912-4ce2-b5bb-cf1c0057d27e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "3ea6ea7b-0d4b-4856-a9e6-b2604295b5c0"
+ ],
+ "x-ms-client-request-id": [
+ "194f323b-2912-4ce2-b5bb-cf1c0057d27e",
+ "194f323b-2912-4ce2-b5bb-cf1c0057d27e"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11592"
+ ],
+ "x-ms-correlation-request-id": [
+ "3ea6ea7b-0d4b-4856-a9e6-b2604295b5c0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095241Z:3ea6ea7b-0d4b-4856-a9e6-b2604295b5c0"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:41 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT23.5613271S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "75dc41bd-83a3-4c6c-91c9-4a5b18a6bc17"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "bffbacc6-2d0f-4209-9fce-98892bae236b"
+ ],
+ "x-ms-client-request-id": [
+ "75dc41bd-83a3-4c6c-91c9-4a5b18a6bc17",
+ "75dc41bd-83a3-4c6c-91c9-4a5b18a6bc17"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11591"
+ ],
+ "x-ms-correlation-request-id": [
+ "bffbacc6-2d0f-4209-9fce-98892bae236b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095241Z:bffbacc6-2d0f-4209-9fce-98892bae236b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:41 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT23.7856664S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e2198639-a918-445b-b20c-230d58bc15c3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "a7b23568-43b5-4cb9-82ee-62e65cd8b4bb"
+ ],
+ "x-ms-client-request-id": [
+ "e2198639-a918-445b-b20c-230d58bc15c3",
+ "e2198639-a918-445b-b20c-230d58bc15c3"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11590"
+ ],
+ "x-ms-correlation-request-id": [
+ "a7b23568-43b5-4cb9-82ee-62e65cd8b4bb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095242Z:a7b23568-43b5-4cb9-82ee-62e65cd8b4bb"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:41 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT24.0821463S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e0826cf1-1b2d-4303-970d-4532a46b4a72"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f0751b4d-5cc5-42de-b40c-0b030adf1fe5"
+ ],
+ "x-ms-client-request-id": [
+ "e0826cf1-1b2d-4303-970d-4532a46b4a72",
+ "e0826cf1-1b2d-4303-970d-4532a46b4a72"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11589"
+ ],
+ "x-ms-correlation-request-id": [
+ "f0751b4d-5cc5-42de-b40c-0b030adf1fe5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095242Z:f0751b4d-5cc5-42de-b40c-0b030adf1fe5"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:42 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT24.3831435S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "41f2682d-7350-4d6d-9c05-c2bf2d74bccf"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "48647582-0604-4f93-8809-a80c5bbbfe59"
+ ],
+ "x-ms-client-request-id": [
+ "41f2682d-7350-4d6d-9c05-c2bf2d74bccf",
+ "41f2682d-7350-4d6d-9c05-c2bf2d74bccf"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11588"
+ ],
+ "x-ms-correlation-request-id": [
+ "48647582-0604-4f93-8809-a80c5bbbfe59"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095242Z:48647582-0604-4f93-8809-a80c5bbbfe59"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:42 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT24.6450832S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cf34fd95-8c51-4332-a87e-7923d9e123c5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "7a56b40e-f0ab-4488-a2f4-2109e14a55f6"
+ ],
+ "x-ms-client-request-id": [
+ "cf34fd95-8c51-4332-a87e-7923d9e123c5",
+ "cf34fd95-8c51-4332-a87e-7923d9e123c5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11587"
+ ],
+ "x-ms-correlation-request-id": [
+ "7a56b40e-f0ab-4488-a2f4-2109e14a55f6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095243Z:7a56b40e-f0ab-4488-a2f4-2109e14a55f6"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:42 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT24.8946775S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9b697ce3-c4ae-4e1d-8e5d-51d7b2333f4b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "d32145e5-1bb9-45bc-98a6-4185db6b614d"
+ ],
+ "x-ms-client-request-id": [
+ "9b697ce3-c4ae-4e1d-8e5d-51d7b2333f4b",
+ "9b697ce3-c4ae-4e1d-8e5d-51d7b2333f4b"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11586"
+ ],
+ "x-ms-correlation-request-id": [
+ "d32145e5-1bb9-45bc-98a6-4185db6b614d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095243Z:d32145e5-1bb9-45bc-98a6-4185db6b614d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:42 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT25.1290684S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "31da0c6a-9b31-4bdf-9b93-e3be14e54908"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "65997776-213b-4e0d-b062-c656713e85f3"
+ ],
+ "x-ms-client-request-id": [
+ "31da0c6a-9b31-4bdf-9b93-e3be14e54908",
+ "31da0c6a-9b31-4bdf-9b93-e3be14e54908"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11585"
+ ],
+ "x-ms-correlation-request-id": [
+ "65997776-213b-4e0d-b062-c656713e85f3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095243Z:65997776-213b-4e0d-b062-c656713e85f3"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:42 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT25.3790731S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "82fa8dd5-26ff-4d6f-988f-39412901a7bd"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "ec0a55bb-7493-4551-b643-835a04ada919"
+ ],
+ "x-ms-client-request-id": [
+ "82fa8dd5-26ff-4d6f-988f-39412901a7bd",
+ "82fa8dd5-26ff-4d6f-988f-39412901a7bd"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11584"
+ ],
+ "x-ms-correlation-request-id": [
+ "ec0a55bb-7493-4551-b643-835a04ada919"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095243Z:ec0a55bb-7493-4551-b643-835a04ada919"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:43 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT25.6800544S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "80b0679c-c7b2-4220-b23f-ac725b679bf6"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "5bf43d58-3d95-4029-9504-610198bae0e0"
+ ],
+ "x-ms-client-request-id": [
+ "80b0679c-c7b2-4220-b23f-ac725b679bf6",
+ "80b0679c-c7b2-4220-b23f-ac725b679bf6"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11583"
+ ],
+ "x-ms-correlation-request-id": [
+ "5bf43d58-3d95-4029-9504-610198bae0e0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095244Z:5bf43d58-3d95-4029-9504-610198bae0e0"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:43 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT25.9884697S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "aa3854ca-384d-4cf3-8a8f-511beef257a3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f553a7d6-d11b-48f5-8745-32d42f61d632"
+ ],
+ "x-ms-client-request-id": [
+ "aa3854ca-384d-4cf3-8a8f-511beef257a3",
+ "aa3854ca-384d-4cf3-8a8f-511beef257a3"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11582"
+ ],
+ "x-ms-correlation-request-id": [
+ "f553a7d6-d11b-48f5-8745-32d42f61d632"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095244Z:f553a7d6-d11b-48f5-8745-32d42f61d632"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:43 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT26.2232933S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9c333b0a-45cb-4b95-b389-8dc6920f3208"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "32f69562-c686-4403-a29d-66fb0e656807"
+ ],
+ "x-ms-client-request-id": [
+ "9c333b0a-45cb-4b95-b389-8dc6920f3208",
+ "9c333b0a-45cb-4b95-b389-8dc6920f3208"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11581"
+ ],
+ "x-ms-correlation-request-id": [
+ "32f69562-c686-4403-a29d-66fb0e656807"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095244Z:32f69562-c686-4403-a29d-66fb0e656807"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:44 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT26.4463629S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0f8fb8fd-b30c-4137-8fa1-c73bf6c8ed23"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "3a8bde57-0d15-4274-a7e6-250393f89717"
+ ],
+ "x-ms-client-request-id": [
+ "0f8fb8fd-b30c-4137-8fa1-c73bf6c8ed23",
+ "0f8fb8fd-b30c-4137-8fa1-c73bf6c8ed23"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11580"
+ ],
+ "x-ms-correlation-request-id": [
+ "3a8bde57-0d15-4274-a7e6-250393f89717"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095244Z:3a8bde57-0d15-4274-a7e6-250393f89717"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:44 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT26.7072469S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a67efc28-1a7b-41c8-b1fa-f093ca087d71"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "651c6afa-0016-4d89-b3d1-9a2a588944b7"
+ ],
+ "x-ms-client-request-id": [
+ "a67efc28-1a7b-41c8-b1fa-f093ca087d71",
+ "a67efc28-1a7b-41c8-b1fa-f093ca087d71"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11579"
+ ],
+ "x-ms-correlation-request-id": [
+ "651c6afa-0016-4d89-b3d1-9a2a588944b7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095245Z:651c6afa-0016-4d89-b3d1-9a2a588944b7"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:44 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT26.9572508S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d7aff901-3bd3-4fc9-8812-e4434e8ff327"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "66057d8c-6dbb-4982-abfa-706397977f49"
+ ],
+ "x-ms-client-request-id": [
+ "d7aff901-3bd3-4fc9-8812-e4434e8ff327",
+ "d7aff901-3bd3-4fc9-8812-e4434e8ff327"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11578"
+ ],
+ "x-ms-correlation-request-id": [
+ "66057d8c-6dbb-4982-abfa-706397977f49"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095245Z:66057d8c-6dbb-4982-abfa-706397977f49"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:44 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT27.2349898S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "71d820aa-213d-45f1-aad8-3a53ec1d998e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "27ed37f2-ed99-44d9-8238-f7b84d52b881"
+ ],
+ "x-ms-client-request-id": [
+ "71d820aa-213d-45f1-aad8-3a53ec1d998e",
+ "71d820aa-213d-45f1-aad8-3a53ec1d998e"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11577"
+ ],
+ "x-ms-correlation-request-id": [
+ "27ed37f2-ed99-44d9-8238-f7b84d52b881"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095245Z:27ed37f2-ed99-44d9-8238-f7b84d52b881"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:45 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT27.5197725S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "97303aed-271b-482b-8290-1fe09b9d7934"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "949d0739-02f0-4cba-a5d0-bee6a6510c1a"
+ ],
+ "x-ms-client-request-id": [
+ "97303aed-271b-482b-8290-1fe09b9d7934",
+ "97303aed-271b-482b-8290-1fe09b9d7934"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11576"
+ ],
+ "x-ms-correlation-request-id": [
+ "949d0739-02f0-4cba-a5d0-bee6a6510c1a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095245Z:949d0739-02f0-4cba-a5d0-bee6a6510c1a"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:45 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT27.7527809S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "07c66e2b-cdf8-4a8f-a94b-014b289f6106"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "d51702b9-f3c9-4146-ba9f-efddc0abbdb6"
+ ],
+ "x-ms-client-request-id": [
+ "07c66e2b-cdf8-4a8f-a94b-014b289f6106",
+ "07c66e2b-cdf8-4a8f-a94b-014b289f6106"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11575"
+ ],
+ "x-ms-correlation-request-id": [
+ "d51702b9-f3c9-4146-ba9f-efddc0abbdb6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095246Z:d51702b9-f3c9-4146-ba9f-efddc0abbdb6"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:45 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT28.0184296S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5e3b496e-8852-40be-9228-82ef6726f7cf"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "ac0fdbfe-3f30-41ce-a065-3e72e351ac05"
+ ],
+ "x-ms-client-request-id": [
+ "5e3b496e-8852-40be-9228-82ef6726f7cf",
+ "5e3b496e-8852-40be-9228-82ef6726f7cf"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11574"
+ ],
+ "x-ms-correlation-request-id": [
+ "ac0fdbfe-3f30-41ce-a065-3e72e351ac05"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095246Z:ac0fdbfe-3f30-41ce-a065-3e72e351ac05"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:45 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT28.2729994S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7bfe5678-82d9-42d2-b07e-db027793ce47"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "bf57a41d-3491-4e1a-97be-2274c98c818a"
+ ],
+ "x-ms-client-request-id": [
+ "7bfe5678-82d9-42d2-b07e-db027793ce47",
+ "7bfe5678-82d9-42d2-b07e-db027793ce47"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11573"
+ ],
+ "x-ms-correlation-request-id": [
+ "bf57a41d-3491-4e1a-97be-2274c98c818a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095246Z:bf57a41d-3491-4e1a-97be-2274c98c818a"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:46 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT28.5139473S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9da5940e-f154-4a77-bbd8-2648425873d6"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "59e39142-7ccd-4354-b02f-490aa2af65ad"
+ ],
+ "x-ms-client-request-id": [
+ "9da5940e-f154-4a77-bbd8-2648425873d6",
+ "9da5940e-f154-4a77-bbd8-2648425873d6"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11572"
+ ],
+ "x-ms-correlation-request-id": [
+ "59e39142-7ccd-4354-b02f-490aa2af65ad"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095246Z:59e39142-7ccd-4354-b02f-490aa2af65ad"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:46 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT28.8108687S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "43dcf608-99e1-471f-89b7-10e456834d32"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f5ed1c3f-4286-4be8-8451-13e4c691799c"
+ ],
+ "x-ms-client-request-id": [
+ "43dcf608-99e1-471f-89b7-10e456834d32",
+ "43dcf608-99e1-471f-89b7-10e456834d32"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11571"
+ ],
+ "x-ms-correlation-request-id": [
+ "f5ed1c3f-4286-4be8-8451-13e4c691799c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095247Z:f5ed1c3f-4286-4be8-8451-13e4c691799c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:46 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT29.1005012S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bc6ffe74-658d-4336-88d1-14377ee95f30"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f851427a-3687-43ae-81ad-33966dc292da"
+ ],
+ "x-ms-client-request-id": [
+ "bc6ffe74-658d-4336-88d1-14377ee95f30",
+ "bc6ffe74-658d-4336-88d1-14377ee95f30"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11570"
+ ],
+ "x-ms-correlation-request-id": [
+ "f851427a-3687-43ae-81ad-33966dc292da"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095247Z:f851427a-3687-43ae-81ad-33966dc292da"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:46 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT29.3639984S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "73f082d1-713e-4fc1-a672-d67a0f63a00a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "52ff750d-f60a-4e41-a5af-c5df2fdb4036"
+ ],
+ "x-ms-client-request-id": [
+ "73f082d1-713e-4fc1-a672-d67a0f63a00a",
+ "73f082d1-713e-4fc1-a672-d67a0f63a00a"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11569"
+ ],
+ "x-ms-correlation-request-id": [
+ "52ff750d-f60a-4e41-a5af-c5df2fdb4036"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095247Z:52ff750d-f60a-4e41-a5af-c5df2fdb4036"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:47 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT29.6702698S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "80195861-cdc2-4a1e-b42d-d59f50904f52"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "be578747-b138-49b0-b688-5bb5ab091d0f"
+ ],
+ "x-ms-client-request-id": [
+ "80195861-cdc2-4a1e-b42d-d59f50904f52",
+ "80195861-cdc2-4a1e-b42d-d59f50904f52"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11568"
+ ],
+ "x-ms-correlation-request-id": [
+ "be578747-b138-49b0-b688-5bb5ab091d0f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095248Z:be578747-b138-49b0-b688-5bb5ab091d0f"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:47 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT29.9121463S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "86be2f66-6af0-4ece-bcd0-6d66a9104a8e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "bb676d20-1635-469f-ad1a-f3c6369d0190"
+ ],
+ "x-ms-client-request-id": [
+ "86be2f66-6af0-4ece-bcd0-6d66a9104a8e",
+ "86be2f66-6af0-4ece-bcd0-6d66a9104a8e"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11567"
+ ],
+ "x-ms-correlation-request-id": [
+ "bb676d20-1635-469f-ad1a-f3c6369d0190"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095248Z:bb676d20-1635-469f-ad1a-f3c6369d0190"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:47 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT30.1621586S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "02391462-5ec9-42e6-802b-5647e2e4be4a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c4e1fcf8-cb1f-48f8-9c8d-8123c67ea168"
+ ],
+ "x-ms-client-request-id": [
+ "02391462-5ec9-42e6-802b-5647e2e4be4a",
+ "02391462-5ec9-42e6-802b-5647e2e4be4a"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11566"
+ ],
+ "x-ms-correlation-request-id": [
+ "c4e1fcf8-cb1f-48f8-9c8d-8123c67ea168"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095248Z:c4e1fcf8-cb1f-48f8-9c8d-8123c67ea168"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:48 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT30.5366789S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d5fddede-9421-45ec-a9f3-cf8451f7b1b9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "fcb91342-c12f-4fed-a6a9-fe38eddb6be0"
+ ],
+ "x-ms-client-request-id": [
+ "d5fddede-9421-45ec-a9f3-cf8451f7b1b9",
+ "d5fddede-9421-45ec-a9f3-cf8451f7b1b9"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11565"
+ ],
+ "x-ms-correlation-request-id": [
+ "fcb91342-c12f-4fed-a6a9-fe38eddb6be0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095248Z:fcb91342-c12f-4fed-a6a9-fe38eddb6be0"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:48 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT30.8256924S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "91d4856d-42aa-4e38-aae3-d3141858e6e8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "3d943759-f410-4aa5-bcaa-d66517042b80"
+ ],
+ "x-ms-client-request-id": [
+ "91d4856d-42aa-4e38-aae3-d3141858e6e8",
+ "91d4856d-42aa-4e38-aae3-d3141858e6e8"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11564"
+ ],
+ "x-ms-correlation-request-id": [
+ "3d943759-f410-4aa5-bcaa-d66517042b80"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095249Z:3d943759-f410-4aa5-bcaa-d66517042b80"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:48 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT31.0835764S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a8108f50-827a-45d1-8157-49b6b83bb3f8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "7a7a5e1c-c102-4ca1-9619-a7211de03caf"
+ ],
+ "x-ms-client-request-id": [
+ "a8108f50-827a-45d1-8157-49b6b83bb3f8",
+ "a8108f50-827a-45d1-8157-49b6b83bb3f8"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11563"
+ ],
+ "x-ms-correlation-request-id": [
+ "7a7a5e1c-c102-4ca1-9619-a7211de03caf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095249Z:7a7a5e1c-c102-4ca1-9619-a7211de03caf"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:48 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT31.325709S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "52114d65-9f05-4280-ad4c-db7c5ec60823"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "35338955-7004-4657-8305-3b72b0a14397"
+ ],
+ "x-ms-client-request-id": [
+ "52114d65-9f05-4280-ad4c-db7c5ec60823",
+ "52114d65-9f05-4280-ad4c-db7c5ec60823"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11562"
+ ],
+ "x-ms-correlation-request-id": [
+ "35338955-7004-4657-8305-3b72b0a14397"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095249Z:35338955-7004-4657-8305-3b72b0a14397"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:49 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT31.6148468S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9c0376a5-1cd6-4615-9cf0-0a04fe02815a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "2cf0cf2a-34e3-40a1-909a-19126f9745fd"
+ ],
+ "x-ms-client-request-id": [
+ "9c0376a5-1cd6-4615-9cf0-0a04fe02815a",
+ "9c0376a5-1cd6-4615-9cf0-0a04fe02815a"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11561"
+ ],
+ "x-ms-correlation-request-id": [
+ "2cf0cf2a-34e3-40a1-909a-19126f9745fd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095250Z:2cf0cf2a-34e3-40a1-909a-19126f9745fd"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:49 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT31.9252093S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "39938478-7b75-49e2-b801-ec81e64f34e8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "b434c2bc-e59d-4e51-a0ec-426ac3815a43"
+ ],
+ "x-ms-client-request-id": [
+ "39938478-7b75-49e2-b801-ec81e64f34e8",
+ "39938478-7b75-49e2-b801-ec81e64f34e8"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11560"
+ ],
+ "x-ms-correlation-request-id": [
+ "b434c2bc-e59d-4e51-a0ec-426ac3815a43"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095250Z:b434c2bc-e59d-4e51-a0ec-426ac3815a43"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:49 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT32.1494945S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e03e3fa6-6344-4b81-8522-2f1dd929f001"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "75d02f6d-b2a9-4798-95c3-c2307ed7a703"
+ ],
+ "x-ms-client-request-id": [
+ "e03e3fa6-6344-4b81-8522-2f1dd929f001",
+ "e03e3fa6-6344-4b81-8522-2f1dd929f001"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11559"
+ ],
+ "x-ms-correlation-request-id": [
+ "75d02f6d-b2a9-4798-95c3-c2307ed7a703"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095250Z:75d02f6d-b2a9-4798-95c3-c2307ed7a703"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:49 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT32.4304013S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "01ee2f7f-0134-4edf-a0b8-d3c894654ccf"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "b2767658-d572-4d06-bbad-c8279425fc49"
+ ],
+ "x-ms-client-request-id": [
+ "01ee2f7f-0134-4edf-a0b8-d3c894654ccf",
+ "01ee2f7f-0134-4edf-a0b8-d3c894654ccf"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11558"
+ ],
+ "x-ms-correlation-request-id": [
+ "b2767658-d572-4d06-bbad-c8279425fc49"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095250Z:b2767658-d572-4d06-bbad-c8279425fc49"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:50 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT32.6439808S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b1b16cda-7e77-4920-a14b-d5c72f1c3a8b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "91be24f5-4cc7-4c52-8e0e-fbb5d58bd904"
+ ],
+ "x-ms-client-request-id": [
+ "b1b16cda-7e77-4920-a14b-d5c72f1c3a8b",
+ "b1b16cda-7e77-4920-a14b-d5c72f1c3a8b"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11557"
+ ],
+ "x-ms-correlation-request-id": [
+ "91be24f5-4cc7-4c52-8e0e-fbb5d58bd904"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095251Z:91be24f5-4cc7-4c52-8e0e-fbb5d58bd904"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:50 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT32.9148205S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "24bb8d7e-dba0-4ffe-b3e2-8de092f2521a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "d1447652-8c2c-4782-b130-d712ca957a7b"
+ ],
+ "x-ms-client-request-id": [
+ "24bb8d7e-dba0-4ffe-b3e2-8de092f2521a",
+ "24bb8d7e-dba0-4ffe-b3e2-8de092f2521a"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11556"
+ ],
+ "x-ms-correlation-request-id": [
+ "d1447652-8c2c-4782-b130-d712ca957a7b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095251Z:d1447652-8c2c-4782-b130-d712ca957a7b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:50 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT33.2116811S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1ed20245-6f6c-4a8c-bfb7-3e5f8f5bb7a7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "860ce7de-1c6e-4e41-899a-8a4c135b7cd7"
+ ],
+ "x-ms-client-request-id": [
+ "1ed20245-6f6c-4a8c-bfb7-3e5f8f5bb7a7",
+ "1ed20245-6f6c-4a8c-bfb7-3e5f8f5bb7a7"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11555"
+ ],
+ "x-ms-correlation-request-id": [
+ "860ce7de-1c6e-4e41-899a-8a4c135b7cd7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095251Z:860ce7de-1c6e-4e41-899a-8a4c135b7cd7"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:51 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT33.495851S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7062c7ea-6f49-4fdc-8fee-610d1ef90a57"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "8891757b-7bb6-4a8c-bf05-231569896bde"
+ ],
+ "x-ms-client-request-id": [
+ "7062c7ea-6f49-4fdc-8fee-610d1ef90a57",
+ "7062c7ea-6f49-4fdc-8fee-610d1ef90a57"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11554"
+ ],
+ "x-ms-correlation-request-id": [
+ "8891757b-7bb6-4a8c-bf05-231569896bde"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095251Z:8891757b-7bb6-4a8c-bf05-231569896bde"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:51 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT33.7557923S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8a54dc5a-5af3-4f9f-9cc4-55dfc60bb62d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "7a77b145-4724-47d5-86b4-ad878edfb5d0"
+ ],
+ "x-ms-client-request-id": [
+ "8a54dc5a-5af3-4f9f-9cc4-55dfc60bb62d",
+ "8a54dc5a-5af3-4f9f-9cc4-55dfc60bb62d"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11553"
+ ],
+ "x-ms-correlation-request-id": [
+ "7a77b145-4724-47d5-86b4-ad878edfb5d0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095252Z:7a77b145-4724-47d5-86b4-ad878edfb5d0"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:51 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT33.9956733S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "61603dd7-36a9-4f41-baf7-35d099c4d19e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "8053eb1e-5fc2-4276-886b-8bac14421c3b"
+ ],
+ "x-ms-client-request-id": [
+ "61603dd7-36a9-4f41-baf7-35d099c4d19e",
+ "61603dd7-36a9-4f41-baf7-35d099c4d19e"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11552"
+ ],
+ "x-ms-correlation-request-id": [
+ "8053eb1e-5fc2-4276-886b-8bac14421c3b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095252Z:8053eb1e-5fc2-4276-886b-8bac14421c3b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:51 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT34.2053124S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c70cf990-f1b9-4280-9798-c8e17398a48f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "ea3eae97-2225-478f-9440-87f82591cd05"
+ ],
+ "x-ms-client-request-id": [
+ "c70cf990-f1b9-4280-9798-c8e17398a48f",
+ "c70cf990-f1b9-4280-9798-c8e17398a48f"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11551"
+ ],
+ "x-ms-correlation-request-id": [
+ "ea3eae97-2225-478f-9440-87f82591cd05"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095252Z:ea3eae97-2225-478f-9440-87f82591cd05"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:52 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT34.4956962S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f64c0cc9-54b2-4f3a-a574-b4290567836a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "24637d3c-92c2-405d-8527-0c8787040566"
+ ],
+ "x-ms-client-request-id": [
+ "f64c0cc9-54b2-4f3a-a574-b4290567836a",
+ "f64c0cc9-54b2-4f3a-a574-b4290567836a"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11550"
+ ],
+ "x-ms-correlation-request-id": [
+ "24637d3c-92c2-405d-8527-0c8787040566"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095253Z:24637d3c-92c2-405d-8527-0c8787040566"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:52 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT34.9019627S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a4640b3a-19ed-4fc7-869a-0278920cbd4b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "fe31a25c-d6e2-44f9-8767-40ba9290f915"
+ ],
+ "x-ms-client-request-id": [
+ "a4640b3a-19ed-4fc7-869a-0278920cbd4b",
+ "a4640b3a-19ed-4fc7-869a-0278920cbd4b"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11549"
+ ],
+ "x-ms-correlation-request-id": [
+ "fe31a25c-d6e2-44f9-8767-40ba9290f915"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095253Z:fe31a25c-d6e2-44f9-8767-40ba9290f915"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:52 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT35.1727209S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c11fb031-edb2-40f8-bc74-ca1e0a497eeb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "a4bdee44-9849-4e48-8570-d8e2668764d1"
+ ],
+ "x-ms-client-request-id": [
+ "c11fb031-edb2-40f8-bc74-ca1e0a497eeb",
+ "c11fb031-edb2-40f8-bc74-ca1e0a497eeb"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11548"
+ ],
+ "x-ms-correlation-request-id": [
+ "a4bdee44-9849-4e48-8570-d8e2668764d1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095253Z:a4bdee44-9849-4e48-8570-d8e2668764d1"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:52 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT35.4071083S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3decfbf5-31ae-45c8-8ccf-b2b59f7a5e25"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f0d32ff5-14b4-440e-8273-8bc79b1c5886"
+ ],
+ "x-ms-client-request-id": [
+ "3decfbf5-31ae-45c8-8ccf-b2b59f7a5e25",
+ "3decfbf5-31ae-45c8-8ccf-b2b59f7a5e25"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11547"
+ ],
+ "x-ms-correlation-request-id": [
+ "f0d32ff5-14b4-440e-8273-8bc79b1c5886"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095253Z:f0d32ff5-14b4-440e-8273-8bc79b1c5886"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:53 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT35.6705072S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f9893c24-251c-4625-b3fc-d5ba8530d7ed"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "d72cf0ae-f93b-41ff-b8c8-380597074139"
+ ],
+ "x-ms-client-request-id": [
+ "f9893c24-251c-4625-b3fc-d5ba8530d7ed",
+ "f9893c24-251c-4625-b3fc-d5ba8530d7ed"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11546"
+ ],
+ "x-ms-correlation-request-id": [
+ "d72cf0ae-f93b-41ff-b8c8-380597074139"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095254Z:d72cf0ae-f93b-41ff-b8c8-380597074139"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:53 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT35.937507S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "191ee019-bfb8-45a9-a8ac-de79c88e5988"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "a92bf29d-8f23-4f6d-bec5-f4d84faa99e1"
+ ],
+ "x-ms-client-request-id": [
+ "191ee019-bfb8-45a9-a8ac-de79c88e5988",
+ "191ee019-bfb8-45a9-a8ac-de79c88e5988"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11545"
+ ],
+ "x-ms-correlation-request-id": [
+ "a92bf29d-8f23-4f6d-bec5-f4d84faa99e1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095254Z:a92bf29d-8f23-4f6d-bec5-f4d84faa99e1"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:53 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT36.2501225S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f152f60d-14a0-47ff-a09a-1c8a532448fe"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "2d7158d9-8e64-43e9-88ee-1bbafab40a81"
+ ],
+ "x-ms-client-request-id": [
+ "f152f60d-14a0-47ff-a09a-1c8a532448fe",
+ "f152f60d-14a0-47ff-a09a-1c8a532448fe"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11544"
+ ],
+ "x-ms-correlation-request-id": [
+ "2d7158d9-8e64-43e9-88ee-1bbafab40a81"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095254Z:2d7158d9-8e64-43e9-88ee-1bbafab40a81"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:53 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT36.4761086S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMTEyZjQzMy0wYjExLTRiMDktYjJjNS0zY2Y0NDRjOGViODY/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7a7e7740-c208-4c65-970e-0e88a530d3b7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c89c6be3-47b5-4a5b-af0a-b2551d08b805"
+ ],
+ "x-ms-client-request-id": [
+ "7a7e7740-c208-4c65-970e-0e88a530d3b7",
+ "7a7e7740-c208-4c65-970e-0e88a530d3b7"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11543"
+ ],
+ "x-ms-correlation-request-id": [
+ "c89c6be3-47b5-4a5b-af0a-b2551d08b805"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095254Z:c89c6be3-47b5-4a5b-af0a-b2551d08b805"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:54 GMT"
+ ],
+ "Content-Length": [
+ "1090"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"name\": \"e112f433-0b11-4b09-b2c5-3cf444c8eb86\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT35.0735243S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"3/19/2020 9:51:40 AM\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"2\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2020-03-19T09:52:18.0609429Z\",\r\n \"endTime\": \"2020-03-19T09:52:53.1344672Z\",\r\n \"activityId\": \"c7b09583-7d97-4721-9ab6-d3c86c7f0953\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/5d81455d-de0e-459a-92df-7d6045fc3b28?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy81ZDgxNDU1ZC1kZTBlLTQ1OWEtOTJkZi03ZDYwNDVmYzNiMjg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7a71ddd4-f965-42f0-8cd3-a0d8db9187bb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "542154d4-019b-4b15-bb61-5dfc1e42ce0d"
+ ],
+ "x-ms-client-request-id": [
+ "7a71ddd4-f965-42f0-8cd3-a0d8db9187bb",
+ "7a71ddd4-f965-42f0-8cd3-a0d8db9187bb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11542"
+ ],
+ "x-ms-correlation-request-id": [
+ "542154d4-019b-4b15-bb61-5dfc1e42ce0d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095256Z:542154d4-019b-4b15-bb61-5dfc1e42ce0d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:56 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"5d81455d-de0e-459a-92df-7d6045fc3b28\",\r\n \"name\": \"5d81455d-de0e-459a-92df-7d6045fc3b28\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/5d81455d-de0e-459a-92df-7d6045fc3b28?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy81ZDgxNDU1ZC1kZTBlLTQ1OWEtOTJkZi03ZDYwNDVmYzNiMjg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "04716669-94ad-430a-9f83-960a8587f78c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "be03e046-9396-4726-a5d0-2d85c69cbe76"
+ ],
+ "x-ms-client-request-id": [
+ "04716669-94ad-430a-9f83-960a8587f78c",
+ "04716669-94ad-430a-9f83-960a8587f78c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11541"
+ ],
+ "x-ms-correlation-request-id": [
+ "be03e046-9396-4726-a5d0-2d85c69cbe76"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095256Z:be03e046-9396-4726-a5d0-2d85c69cbe76"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:56 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"5d81455d-de0e-459a-92df-7d6045fc3b28\",\r\n \"name\": \"5d81455d-de0e-459a-92df-7d6045fc3b28\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/5d81455d-de0e-459a-92df-7d6045fc3b28?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy81ZDgxNDU1ZC1kZTBlLTQ1OWEtOTJkZi03ZDYwNDVmYzNiMjg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d25c89ad-beaf-4ea4-8dbb-074b945dfb25"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "0c6b38ef-aba5-4c2e-9c96-bdb4ca6a5f75"
+ ],
+ "x-ms-client-request-id": [
+ "d25c89ad-beaf-4ea4-8dbb-074b945dfb25",
+ "d25c89ad-beaf-4ea4-8dbb-074b945dfb25"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11540"
+ ],
+ "x-ms-correlation-request-id": [
+ "0c6b38ef-aba5-4c2e-9c96-bdb4ca6a5f75"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095257Z:0c6b38ef-aba5-4c2e-9c96-bdb4ca6a5f75"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:56 GMT"
+ ],
+ "Content-Length": [
+ "304"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"5d81455d-de0e-459a-92df-7d6045fc3b28\",\r\n \"name\": \"5d81455d-de0e-459a-92df-7d6045fc3b28\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"endTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/5d81455d-de0e-459a-92df-7d6045fc3b28?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy81ZDgxNDU1ZC1kZTBlLTQ1OWEtOTJkZi03ZDYwNDVmYzNiMjg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6571f149-028c-477e-9633-6a5ea9576e93"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "016cdfd8-2299-44d5-93e3-dce97f5c117c"
+ ],
+ "x-ms-client-request-id": [
+ "6571f149-028c-477e-9633-6a5ea9576e93",
+ "6571f149-028c-477e-9633-6a5ea9576e93"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11539"
+ ],
+ "x-ms-correlation-request-id": [
+ "016cdfd8-2299-44d5-93e3-dce97f5c117c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095257Z:016cdfd8-2299-44d5-93e3-dce97f5c117c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:56 GMT"
+ ],
+ "Content-Length": [
+ "304"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"5d81455d-de0e-459a-92df-7d6045fc3b28\",\r\n \"name\": \"5d81455d-de0e-459a-92df-7d6045fc3b28\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"endTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f8574252-437e-4e74-a7f2-3c114b1c2525"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "611e3453-8c67-4b24-9e08-47ff3ae907a8"
+ ],
+ "x-ms-client-request-id": [
+ "f8574252-437e-4e74-a7f2-3c114b1c2525",
+ "f8574252-437e-4e74-a7f2-3c114b1c2525"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11538"
+ ],
+ "x-ms-correlation-request-id": [
+ "611e3453-8c67-4b24-9e08-47ff3ae907a8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095257Z:611e3453-8c67-4b24-9e08-47ff3ae907a8"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:56 GMT"
+ ],
+ "Content-Length": [
+ "704"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT1.9219557S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {}\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "372895bb-84e6-409c-8166-33f4d469f735"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "d8034f84-7d4a-4764-9cb4-f081b8e076d2"
+ ],
+ "x-ms-client-request-id": [
+ "372895bb-84e6-409c-8166-33f4d469f735",
+ "372895bb-84e6-409c-8166-33f4d469f735"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11537"
+ ],
+ "x-ms-correlation-request-id": [
+ "d8034f84-7d4a-4764-9cb4-f081b8e076d2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095257Z:d8034f84-7d4a-4764-9cb4-f081b8e076d2"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:57 GMT"
+ ],
+ "Content-Length": [
+ "704"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT2.1217838S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {}\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4108fdfd-9db1-43b5-8de4-0d01367932a8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "5967d102-2ea9-4d9e-9c26-f33e9b0ab48e"
+ ],
+ "x-ms-client-request-id": [
+ "4108fdfd-9db1-43b5-8de4-0d01367932a8",
+ "4108fdfd-9db1-43b5-8de4-0d01367932a8"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11536"
+ ],
+ "x-ms-correlation-request-id": [
+ "5967d102-2ea9-4d9e-9c26-f33e9b0ab48e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095258Z:5967d102-2ea9-4d9e-9c26-f33e9b0ab48e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:57 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT2.3717561S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4d6f3034-616c-4400-91e1-88ca2ef92537"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "4cf2d526-740b-4d55-a899-e4f360bcac16"
+ ],
+ "x-ms-client-request-id": [
+ "4d6f3034-616c-4400-91e1-88ca2ef92537",
+ "4d6f3034-616c-4400-91e1-88ca2ef92537"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11535"
+ ],
+ "x-ms-correlation-request-id": [
+ "4cf2d526-740b-4d55-a899-e4f360bcac16"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095258Z:4cf2d526-740b-4d55-a899-e4f360bcac16"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:57 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT2.7436104S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8ffdbb71-8757-4f6b-af8b-f228b2509ce4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "bc7af04c-2a8b-4487-8330-6fe97f0e8a4c"
+ ],
+ "x-ms-client-request-id": [
+ "8ffdbb71-8757-4f6b-af8b-f228b2509ce4",
+ "8ffdbb71-8757-4f6b-af8b-f228b2509ce4"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11534"
+ ],
+ "x-ms-correlation-request-id": [
+ "bc7af04c-2a8b-4487-8330-6fe97f0e8a4c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095259Z:bc7af04c-2a8b-4487-8330-6fe97f0e8a4c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:58 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT3.3903831S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6527701d-d85e-41c4-b78b-3d591ce24782"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "6a1cd092-358f-4506-8a09-e5bb14621158"
+ ],
+ "x-ms-client-request-id": [
+ "6527701d-d85e-41c4-b78b-3d591ce24782",
+ "6527701d-d85e-41c4-b78b-3d591ce24782"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11533"
+ ],
+ "x-ms-correlation-request-id": [
+ "6a1cd092-358f-4506-8a09-e5bb14621158"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095259Z:6a1cd092-358f-4506-8a09-e5bb14621158"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:58 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT3.6872276S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "02171dca-fdd4-425e-8d61-5a4fb0f6707f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "43b31859-d1f3-4955-97e5-d918c60b112e"
+ ],
+ "x-ms-client-request-id": [
+ "02171dca-fdd4-425e-8d61-5a4fb0f6707f",
+ "02171dca-fdd4-425e-8d61-5a4fb0f6707f"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11532"
+ ],
+ "x-ms-correlation-request-id": [
+ "43b31859-d1f3-4955-97e5-d918c60b112e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095259Z:43b31859-d1f3-4955-97e5-d918c60b112e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:58 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT3.9100774S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "188f0b79-fb0e-49bc-aed1-9f866a18161c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "84fd579a-290c-447d-88fb-12b7d8bf95e7"
+ ],
+ "x-ms-client-request-id": [
+ "188f0b79-fb0e-49bc-aed1-9f866a18161c",
+ "188f0b79-fb0e-49bc-aed1-9f866a18161c"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11531"
+ ],
+ "x-ms-correlation-request-id": [
+ "84fd579a-290c-447d-88fb-12b7d8bf95e7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095259Z:84fd579a-290c-447d-88fb-12b7d8bf95e7"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:59 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT4.2280336S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "82261c74-8744-4e52-85c1-ca9a711517b7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "86fee59c-801c-44e1-a9fc-3d4c70520a2b"
+ ],
+ "x-ms-client-request-id": [
+ "82261c74-8744-4e52-85c1-ca9a711517b7",
+ "82261c74-8744-4e52-85c1-ca9a711517b7"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11530"
+ ],
+ "x-ms-correlation-request-id": [
+ "86fee59c-801c-44e1-a9fc-3d4c70520a2b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095300Z:86fee59c-801c-44e1-a9fc-3d4c70520a2b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:59 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT4.6343076S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c1d6aadd-6947-494f-b69e-564603060cb1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "303212a7-ea3f-4d9a-a42e-44e6fe721279"
+ ],
+ "x-ms-client-request-id": [
+ "c1d6aadd-6947-494f-b69e-564603060cb1",
+ "c1d6aadd-6947-494f-b69e-564603060cb1"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11529"
+ ],
+ "x-ms-correlation-request-id": [
+ "303212a7-ea3f-4d9a-a42e-44e6fe721279"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095300Z:303212a7-ea3f-4d9a-a42e-44e6fe721279"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:52:59 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT4.9155608S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d452fd02-8189-4723-89f0-32141249f5e7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f034768d-3cf1-4372-84ed-39708d845272"
+ ],
+ "x-ms-client-request-id": [
+ "d452fd02-8189-4723-89f0-32141249f5e7",
+ "d452fd02-8189-4723-89f0-32141249f5e7"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11528"
+ ],
+ "x-ms-correlation-request-id": [
+ "f034768d-3cf1-4372-84ed-39708d845272"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095300Z:f034768d-3cf1-4372-84ed-39708d845272"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:00 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT5.1777466S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d658bf8a-4d8e-4bdb-9f6d-9bd564d9662e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e3e2a72a-5d90-4979-9ee3-9b62993e42c7"
+ ],
+ "x-ms-client-request-id": [
+ "d658bf8a-4d8e-4bdb-9f6d-9bd564d9662e",
+ "d658bf8a-4d8e-4bdb-9f6d-9bd564d9662e"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11527"
+ ],
+ "x-ms-correlation-request-id": [
+ "e3e2a72a-5d90-4979-9ee3-9b62993e42c7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095301Z:e3e2a72a-5d90-4979-9ee3-9b62993e42c7"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:00 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT5.3971077S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b3503e69-9229-4976-80e0-e2b97b62a5ff"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "fc9fc5d1-baf3-4694-abc6-35fab31dd5af"
+ ],
+ "x-ms-client-request-id": [
+ "b3503e69-9229-4976-80e0-e2b97b62a5ff",
+ "b3503e69-9229-4976-80e0-e2b97b62a5ff"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11526"
+ ],
+ "x-ms-correlation-request-id": [
+ "fc9fc5d1-baf3-4694-abc6-35fab31dd5af"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095301Z:fc9fc5d1-baf3-4694-abc6-35fab31dd5af"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:00 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT5.6158698S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "50c00d33-0a05-448c-af86-067ac86ff3e8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "d7e936fb-f529-43ae-8067-31221b08873d"
+ ],
+ "x-ms-client-request-id": [
+ "50c00d33-0a05-448c-af86-067ac86ff3e8",
+ "50c00d33-0a05-448c-af86-067ac86ff3e8"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11525"
+ ],
+ "x-ms-correlation-request-id": [
+ "d7e936fb-f529-43ae-8067-31221b08873d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095301Z:d7e936fb-f529-43ae-8067-31221b08873d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:00 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT5.9596278S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a1360b2b-d9b2-4844-b701-8e4f874231cd"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f338bfce-d019-4cac-988b-4e77b3159713"
+ ],
+ "x-ms-client-request-id": [
+ "a1360b2b-d9b2-4844-b701-8e4f874231cd",
+ "a1360b2b-d9b2-4844-b701-8e4f874231cd"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11524"
+ ],
+ "x-ms-correlation-request-id": [
+ "f338bfce-d019-4cac-988b-4e77b3159713"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095301Z:f338bfce-d019-4cac-988b-4e77b3159713"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:01 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT6.2945116S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "48a165d8-6226-4972-a4f5-dd312ac33109"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "ae6b9148-f868-4695-8f2a-992c83af4155"
+ ],
+ "x-ms-client-request-id": [
+ "48a165d8-6226-4972-a4f5-dd312ac33109",
+ "48a165d8-6226-4972-a4f5-dd312ac33109"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11523"
+ ],
+ "x-ms-correlation-request-id": [
+ "ae6b9148-f868-4695-8f2a-992c83af4155"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095302Z:ae6b9148-f868-4695-8f2a-992c83af4155"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:01 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT6.5563964S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0bf46975-799b-4b63-bfe7-05e44b373b31"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "6bd69068-a942-4640-a1da-c138861cd34e"
+ ],
+ "x-ms-client-request-id": [
+ "0bf46975-799b-4b63-bfe7-05e44b373b31",
+ "0bf46975-799b-4b63-bfe7-05e44b373b31"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11522"
+ ],
+ "x-ms-correlation-request-id": [
+ "6bd69068-a942-4640-a1da-c138861cd34e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095302Z:6bd69068-a942-4640-a1da-c138861cd34e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:01 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT6.7982768S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b57ba7e8-cd63-4af4-bad6-6b9f6b5163eb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "dfc55799-c6f5-43c3-b3ef-3886e5d9f78b"
+ ],
+ "x-ms-client-request-id": [
+ "b57ba7e8-cd63-4af4-bad6-6b9f6b5163eb",
+ "b57ba7e8-cd63-4af4-bad6-6b9f6b5163eb"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11521"
+ ],
+ "x-ms-correlation-request-id": [
+ "dfc55799-c6f5-43c3-b3ef-3886e5d9f78b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095302Z:dfc55799-c6f5-43c3-b3ef-3886e5d9f78b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:01 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT7.0286792S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "108bc08b-d6ca-46f8-9f2e-8fc9a9ca43b4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c2bc8c69-5902-4b1f-bc5f-26eab07c2d17"
+ ],
+ "x-ms-client-request-id": [
+ "108bc08b-d6ca-46f8-9f2e-8fc9a9ca43b4",
+ "108bc08b-d6ca-46f8-9f2e-8fc9a9ca43b4"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11520"
+ ],
+ "x-ms-correlation-request-id": [
+ "c2bc8c69-5902-4b1f-bc5f-26eab07c2d17"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095302Z:c2bc8c69-5902-4b1f-bc5f-26eab07c2d17"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:02 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT7.2789575S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b8070c37-5aa5-4311-a011-20c124c514fb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "6b39d310-9d1b-4986-853b-1bfde8eef3cc"
+ ],
+ "x-ms-client-request-id": [
+ "b8070c37-5aa5-4311-a011-20c124c514fb",
+ "b8070c37-5aa5-4311-a011-20c124c514fb"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11519"
+ ],
+ "x-ms-correlation-request-id": [
+ "6b39d310-9d1b-4986-853b-1bfde8eef3cc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095303Z:6b39d310-9d1b-4986-853b-1bfde8eef3cc"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:02 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT7.6224869S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "343d0a68-5c6a-4d2f-8f36-edf5a24f261a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "53a51f4a-a59b-4e0a-a584-d55076624e79"
+ ],
+ "x-ms-client-request-id": [
+ "343d0a68-5c6a-4d2f-8f36-edf5a24f261a",
+ "343d0a68-5c6a-4d2f-8f36-edf5a24f261a"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11518"
+ ],
+ "x-ms-correlation-request-id": [
+ "53a51f4a-a59b-4e0a-a584-d55076624e79"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095304Z:53a51f4a-a59b-4e0a-a584-d55076624e79"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:03 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT8.4234586S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c1df54ac-492d-4717-8331-8cbb9fba6514"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "ef9b1ca4-1f94-47e7-be43-dbd0c6acc539"
+ ],
+ "x-ms-client-request-id": [
+ "c1df54ac-492d-4717-8331-8cbb9fba6514",
+ "c1df54ac-492d-4717-8331-8cbb9fba6514"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11517"
+ ],
+ "x-ms-correlation-request-id": [
+ "ef9b1ca4-1f94-47e7-be43-dbd0c6acc539"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095304Z:ef9b1ca4-1f94-47e7-be43-dbd0c6acc539"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:03 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT8.6825445S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bd4121f0-ce5d-4fca-aea5-b8cb34f765a5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "20b2983b-268b-481d-996e-d58b62fb2dd8"
+ ],
+ "x-ms-client-request-id": [
+ "bd4121f0-ce5d-4fca-aea5-b8cb34f765a5",
+ "bd4121f0-ce5d-4fca-aea5-b8cb34f765a5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11516"
+ ],
+ "x-ms-correlation-request-id": [
+ "20b2983b-268b-481d-996e-d58b62fb2dd8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095304Z:20b2983b-268b-481d-996e-d58b62fb2dd8"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:03 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT9.0575587S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "09cbd43d-f05a-4a9e-8fb1-5eb1693145f7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c71e6738-302e-4dc3-86a5-4412bd708853"
+ ],
+ "x-ms-client-request-id": [
+ "09cbd43d-f05a-4a9e-8fb1-5eb1693145f7",
+ "09cbd43d-f05a-4a9e-8fb1-5eb1693145f7"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11515"
+ ],
+ "x-ms-correlation-request-id": [
+ "c71e6738-302e-4dc3-86a5-4412bd708853"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095304Z:c71e6738-302e-4dc3-86a5-4412bd708853"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:04 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT9.3314914S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2dab2290-c62b-40f0-956b-1ab4217398e0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "cb016e70-21a5-472f-bacb-fd32fdd1a5b8"
+ ],
+ "x-ms-client-request-id": [
+ "2dab2290-c62b-40f0-956b-1ab4217398e0",
+ "2dab2290-c62b-40f0-956b-1ab4217398e0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11514"
+ ],
+ "x-ms-correlation-request-id": [
+ "cb016e70-21a5-472f-bacb-fd32fdd1a5b8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095305Z:cb016e70-21a5-472f-bacb-fd32fdd1a5b8"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:04 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT9.5675775S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "640439ca-f0af-4d18-b837-28d118fe4914"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "5e5849dc-428c-4611-9edf-a7bc11c395fa"
+ ],
+ "x-ms-client-request-id": [
+ "640439ca-f0af-4d18-b837-28d118fe4914",
+ "640439ca-f0af-4d18-b837-28d118fe4914"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11513"
+ ],
+ "x-ms-correlation-request-id": [
+ "5e5849dc-428c-4611-9edf-a7bc11c395fa"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095305Z:5e5849dc-428c-4611-9edf-a7bc11c395fa"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:04 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT9.8158789S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fc89bfb1-55e0-48b7-bf24-416aaea008e5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "79c8abc1-894f-485c-8d6f-794e049caebe"
+ ],
+ "x-ms-client-request-id": [
+ "fc89bfb1-55e0-48b7-bf24-416aaea008e5",
+ "fc89bfb1-55e0-48b7-bf24-416aaea008e5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11512"
+ ],
+ "x-ms-correlation-request-id": [
+ "79c8abc1-894f-485c-8d6f-794e049caebe"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095305Z:79c8abc1-894f-485c-8d6f-794e049caebe"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:04 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT10.0596051S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "78d7c650-3a67-4081-8013-97d5cb8653a0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "7ded595a-0ea5-4199-b5a7-f376be1a627a"
+ ],
+ "x-ms-client-request-id": [
+ "78d7c650-3a67-4081-8013-97d5cb8653a0",
+ "78d7c650-3a67-4081-8013-97d5cb8653a0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11511"
+ ],
+ "x-ms-correlation-request-id": [
+ "7ded595a-0ea5-4199-b5a7-f376be1a627a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095306Z:7ded595a-0ea5-4199-b5a7-f376be1a627a"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:05 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT10.3877417S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a290d83a-fd85-4631-9199-791549cbe927"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "3ddf996a-cae5-4a74-958c-5bcc9c9eed35"
+ ],
+ "x-ms-client-request-id": [
+ "a290d83a-fd85-4631-9199-791549cbe927",
+ "a290d83a-fd85-4631-9199-791549cbe927"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11510"
+ ],
+ "x-ms-correlation-request-id": [
+ "3ddf996a-cae5-4a74-958c-5bcc9c9eed35"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095306Z:3ddf996a-cae5-4a74-958c-5bcc9c9eed35"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:05 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT10.6910513S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a03feae6-406e-48f6-a773-ea0e34b51634"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "9f12cd1f-f166-4cca-83ca-a586e5a58346"
+ ],
+ "x-ms-client-request-id": [
+ "a03feae6-406e-48f6-a773-ea0e34b51634",
+ "a03feae6-406e-48f6-a773-ea0e34b51634"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11509"
+ ],
+ "x-ms-correlation-request-id": [
+ "9f12cd1f-f166-4cca-83ca-a586e5a58346"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095306Z:9f12cd1f-f166-4cca-83ca-a586e5a58346"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:05 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT10.9502715S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a7fec8bf-d3fa-416a-a4cb-2f26ccdad564"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "aab72976-a697-4403-8d65-51e9eb67e65d"
+ ],
+ "x-ms-client-request-id": [
+ "a7fec8bf-d3fa-416a-a4cb-2f26ccdad564",
+ "a7fec8bf-d3fa-416a-a4cb-2f26ccdad564"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11508"
+ ],
+ "x-ms-correlation-request-id": [
+ "aab72976-a697-4403-8d65-51e9eb67e65d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095306Z:aab72976-a697-4403-8d65-51e9eb67e65d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:06 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT11.1946224S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "461d08e3-373e-4991-8d97-8564f0bd069a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "8582075a-4494-4d31-a80c-9a2dd58463de"
+ ],
+ "x-ms-client-request-id": [
+ "461d08e3-373e-4991-8d97-8564f0bd069a",
+ "461d08e3-373e-4991-8d97-8564f0bd069a"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11507"
+ ],
+ "x-ms-correlation-request-id": [
+ "8582075a-4494-4d31-a80c-9a2dd58463de"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095307Z:8582075a-4494-4d31-a80c-9a2dd58463de"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:06 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT11.4355557S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "186f1b37-db25-41e9-8fd3-33b0dc8a5872"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f4785230-0cd6-4a42-9168-90ba10286a74"
+ ],
+ "x-ms-client-request-id": [
+ "186f1b37-db25-41e9-8fd3-33b0dc8a5872",
+ "186f1b37-db25-41e9-8fd3-33b0dc8a5872"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11506"
+ ],
+ "x-ms-correlation-request-id": [
+ "f4785230-0cd6-4a42-9168-90ba10286a74"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095307Z:f4785230-0cd6-4a42-9168-90ba10286a74"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:06 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT11.6910949S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "166386af-baf4-49a8-97b5-ac8035cab5d1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "a53d9290-0528-40de-bfae-70a6f41e735e"
+ ],
+ "x-ms-client-request-id": [
+ "166386af-baf4-49a8-97b5-ac8035cab5d1",
+ "166386af-baf4-49a8-97b5-ac8035cab5d1"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11505"
+ ],
+ "x-ms-correlation-request-id": [
+ "a53d9290-0528-40de-bfae-70a6f41e735e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095307Z:a53d9290-0528-40de-bfae-70a6f41e735e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:06 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT11.9602904S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4b2a7503-312c-4b0d-a740-6a5e3c7009ee"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "166ab3b2-597b-49fe-9517-a04a45ccff52"
+ ],
+ "x-ms-client-request-id": [
+ "4b2a7503-312c-4b0d-a740-6a5e3c7009ee",
+ "4b2a7503-312c-4b0d-a740-6a5e3c7009ee"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11504"
+ ],
+ "x-ms-correlation-request-id": [
+ "166ab3b2-597b-49fe-9517-a04a45ccff52"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095307Z:166ab3b2-597b-49fe-9517-a04a45ccff52"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:07 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT12.2884422S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bad44196-673e-4269-bfd8-178b37c06ee6"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "052f5b20-fd60-4370-8713-b5b0f9809d9f"
+ ],
+ "x-ms-client-request-id": [
+ "bad44196-673e-4269-bfd8-178b37c06ee6",
+ "bad44196-673e-4269-bfd8-178b37c06ee6"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11503"
+ ],
+ "x-ms-correlation-request-id": [
+ "052f5b20-fd60-4370-8713-b5b0f9809d9f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095308Z:052f5b20-fd60-4370-8713-b5b0f9809d9f"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:07 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT12.5384357S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "144dcfc1-5c0a-49f6-972d-bc8f4c2c7a31"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "d1ac2cd9-7ab4-41cc-9fe2-984b19c3ea0c"
+ ],
+ "x-ms-client-request-id": [
+ "144dcfc1-5c0a-49f6-972d-bc8f4c2c7a31",
+ "144dcfc1-5c0a-49f6-972d-bc8f4c2c7a31"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11502"
+ ],
+ "x-ms-correlation-request-id": [
+ "d1ac2cd9-7ab4-41cc-9fe2-984b19c3ea0c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095308Z:d1ac2cd9-7ab4-41cc-9fe2-984b19c3ea0c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:07 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT12.8472121S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "57a8b3bd-ab2a-4eda-9e43-e3ae9ce3d790"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "85d5b349-393f-4cc0-a472-4c036ffb0e69"
+ ],
+ "x-ms-client-request-id": [
+ "57a8b3bd-ab2a-4eda-9e43-e3ae9ce3d790",
+ "57a8b3bd-ab2a-4eda-9e43-e3ae9ce3d790"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11501"
+ ],
+ "x-ms-correlation-request-id": [
+ "85d5b349-393f-4cc0-a472-4c036ffb0e69"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095308Z:85d5b349-393f-4cc0-a472-4c036ffb0e69"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:07 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT13.1130167S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "97d95e86-6d5b-4464-9b99-59a51e86a58a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "9a47308d-9309-463c-8df2-c09e28467da2"
+ ],
+ "x-ms-client-request-id": [
+ "97d95e86-6d5b-4464-9b99-59a51e86a58a",
+ "97d95e86-6d5b-4464-9b99-59a51e86a58a"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11500"
+ ],
+ "x-ms-correlation-request-id": [
+ "9a47308d-9309-463c-8df2-c09e28467da2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095309Z:9a47308d-9309-463c-8df2-c09e28467da2"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:08 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT13.4408443S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9306033a-bc5f-4981-9966-f16a6a4d0f7c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "8c1c449d-d72c-40df-b2a8-21701f702aba"
+ ],
+ "x-ms-client-request-id": [
+ "9306033a-bc5f-4981-9966-f16a6a4d0f7c",
+ "9306033a-bc5f-4981-9966-f16a6a4d0f7c"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11499"
+ ],
+ "x-ms-correlation-request-id": [
+ "8c1c449d-d72c-40df-b2a8-21701f702aba"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095309Z:8c1c449d-d72c-40df-b2a8-21701f702aba"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:08 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT13.7692914S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1d56b6ca-66a6-4337-879a-95017af50070"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "938c1b3c-df88-4358-aa83-b3bec1b2ef69"
+ ],
+ "x-ms-client-request-id": [
+ "1d56b6ca-66a6-4337-879a-95017af50070",
+ "1d56b6ca-66a6-4337-879a-95017af50070"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11498"
+ ],
+ "x-ms-correlation-request-id": [
+ "938c1b3c-df88-4358-aa83-b3bec1b2ef69"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095309Z:938c1b3c-df88-4358-aa83-b3bec1b2ef69"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:08 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT14.0344992S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "db66e63b-db0b-43e7-993c-293efabb488a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "7dfe31e1-0079-42e2-996f-a39dfe3f838b"
+ ],
+ "x-ms-client-request-id": [
+ "db66e63b-db0b-43e7-993c-293efabb488a",
+ "db66e63b-db0b-43e7-993c-293efabb488a"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11497"
+ ],
+ "x-ms-correlation-request-id": [
+ "7dfe31e1-0079-42e2-996f-a39dfe3f838b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095310Z:7dfe31e1-0079-42e2-996f-a39dfe3f838b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:09 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT14.5516408S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c63ee905-00a5-45d3-8733-55b06b768419"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "5738e920-138e-41a3-b5bd-f407361e4a9e"
+ ],
+ "x-ms-client-request-id": [
+ "c63ee905-00a5-45d3-8733-55b06b768419",
+ "c63ee905-00a5-45d3-8733-55b06b768419"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11496"
+ ],
+ "x-ms-correlation-request-id": [
+ "5738e920-138e-41a3-b5bd-f407361e4a9e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095310Z:5738e920-138e-41a3-b5bd-f407361e4a9e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:09 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT14.9829355S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "14d24110-fc37-4338-a6f9-66a588168674"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "9c474c65-9299-4eb4-afc2-032ea53a8f7d"
+ ],
+ "x-ms-client-request-id": [
+ "14d24110-fc37-4338-a6f9-66a588168674",
+ "14d24110-fc37-4338-a6f9-66a588168674"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11495"
+ ],
+ "x-ms-correlation-request-id": [
+ "9c474c65-9299-4eb4-afc2-032ea53a8f7d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095310Z:9c474c65-9299-4eb4-afc2-032ea53a8f7d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:10 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT15.2485694S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a6370723-2dd3-4b42-90d7-7dcd5fb3147a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "28cc5195-215b-4ce3-b078-32aa43ec1fa6"
+ ],
+ "x-ms-client-request-id": [
+ "a6370723-2dd3-4b42-90d7-7dcd5fb3147a",
+ "a6370723-2dd3-4b42-90d7-7dcd5fb3147a"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11494"
+ ],
+ "x-ms-correlation-request-id": [
+ "28cc5195-215b-4ce3-b078-32aa43ec1fa6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095311Z:28cc5195-215b-4ce3-b078-32aa43ec1fa6"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:10 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT15.5237488S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a3a872d6-9a78-48c1-9a76-25562f75dda9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "6f911db9-4020-44ee-a82d-a20827d78624"
+ ],
+ "x-ms-client-request-id": [
+ "a3a872d6-9a78-48c1-9a76-25562f75dda9",
+ "a3a872d6-9a78-48c1-9a76-25562f75dda9"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11493"
+ ],
+ "x-ms-correlation-request-id": [
+ "6f911db9-4020-44ee-a82d-a20827d78624"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095311Z:6f911db9-4020-44ee-a82d-a20827d78624"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:10 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT15.7486971S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3f029c7b-3214-4bef-ae88-684ac0aa0985"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "4964dfb5-b0e1-43b9-aac7-ed4325b47c34"
+ ],
+ "x-ms-client-request-id": [
+ "3f029c7b-3214-4bef-ae88-684ac0aa0985",
+ "3f029c7b-3214-4bef-ae88-684ac0aa0985"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11492"
+ ],
+ "x-ms-correlation-request-id": [
+ "4964dfb5-b0e1-43b9-aac7-ed4325b47c34"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095311Z:4964dfb5-b0e1-43b9-aac7-ed4325b47c34"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:10 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT16.0034971S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6fcd9b7c-4f81-4b3d-a0f0-913007406c45"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "0e929e5e-cb95-4331-900d-9e38efefc1d8"
+ ],
+ "x-ms-client-request-id": [
+ "6fcd9b7c-4f81-4b3d-a0f0-913007406c45",
+ "6fcd9b7c-4f81-4b3d-a0f0-913007406c45"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11491"
+ ],
+ "x-ms-correlation-request-id": [
+ "0e929e5e-cb95-4331-900d-9e38efefc1d8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095311Z:0e929e5e-cb95-4331-900d-9e38efefc1d8"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:10 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT16.2379293S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7f95fca7-3db8-484a-9058-2608e9af709c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "139e83ed-86c0-43db-bd0e-180889682ece"
+ ],
+ "x-ms-client-request-id": [
+ "7f95fca7-3db8-484a-9058-2608e9af709c",
+ "7f95fca7-3db8-484a-9058-2608e9af709c"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11490"
+ ],
+ "x-ms-correlation-request-id": [
+ "139e83ed-86c0-43db-bd0e-180889682ece"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095312Z:139e83ed-86c0-43db-bd0e-180889682ece"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:11 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT16.5497526S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "faacd0d6-0c1c-4dbd-9d27-138ca3c28cdf"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "60649f78-8eeb-421a-9822-2beb798ce758"
+ ],
+ "x-ms-client-request-id": [
+ "faacd0d6-0c1c-4dbd-9d27-138ca3c28cdf",
+ "faacd0d6-0c1c-4dbd-9d27-138ca3c28cdf"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11489"
+ ],
+ "x-ms-correlation-request-id": [
+ "60649f78-8eeb-421a-9822-2beb798ce758"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095312Z:60649f78-8eeb-421a-9822-2beb798ce758"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:11 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT16.816034S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "33dee62f-df93-4098-ab95-802e4b0c6a11"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "ac3994de-4478-468e-94d0-1d5d4e261ed8"
+ ],
+ "x-ms-client-request-id": [
+ "33dee62f-df93-4098-ab95-802e4b0c6a11",
+ "33dee62f-df93-4098-ab95-802e4b0c6a11"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11488"
+ ],
+ "x-ms-correlation-request-id": [
+ "ac3994de-4478-468e-94d0-1d5d4e261ed8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095312Z:ac3994de-4478-468e-94d0-1d5d4e261ed8"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:11 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT17.1153726S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3fc1b50f-34d2-47d1-aa80-d5293c3d4fbd"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "39aaa071-5405-4c34-b7c0-8fe0a80e5fb6"
+ ],
+ "x-ms-client-request-id": [
+ "3fc1b50f-34d2-47d1-aa80-d5293c3d4fbd",
+ "3fc1b50f-34d2-47d1-aa80-d5293c3d4fbd"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11487"
+ ],
+ "x-ms-correlation-request-id": [
+ "39aaa071-5405-4c34-b7c0-8fe0a80e5fb6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095312Z:39aaa071-5405-4c34-b7c0-8fe0a80e5fb6"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:12 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT17.3472988S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e07a4ce4-b479-43e0-bf9f-14a9aafc96c8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c53089c6-4e13-4b5b-a145-f30be67fc188"
+ ],
+ "x-ms-client-request-id": [
+ "e07a4ce4-b479-43e0-bf9f-14a9aafc96c8",
+ "e07a4ce4-b479-43e0-bf9f-14a9aafc96c8"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11486"
+ ],
+ "x-ms-correlation-request-id": [
+ "c53089c6-4e13-4b5b-a145-f30be67fc188"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095313Z:c53089c6-4e13-4b5b-a145-f30be67fc188"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:12 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT17.6081952S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "31c9f0c9-e9e4-4f37-8e62-695c960975ef"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f18be7d3-cb88-496b-b2a9-26ea12e776c5"
+ ],
+ "x-ms-client-request-id": [
+ "31c9f0c9-e9e4-4f37-8e62-695c960975ef",
+ "31c9f0c9-e9e4-4f37-8e62-695c960975ef"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11485"
+ ],
+ "x-ms-correlation-request-id": [
+ "f18be7d3-cb88-496b-b2a9-26ea12e776c5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095313Z:f18be7d3-cb88-496b-b2a9-26ea12e776c5"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:12 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT17.967565S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5079d422-dd54-4368-bb76-79120ff13d7b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "756d99a3-b6da-41f6-ad7c-cfaff5576241"
+ ],
+ "x-ms-client-request-id": [
+ "5079d422-dd54-4368-bb76-79120ff13d7b",
+ "5079d422-dd54-4368-bb76-79120ff13d7b"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11484"
+ ],
+ "x-ms-correlation-request-id": [
+ "756d99a3-b6da-41f6-ad7c-cfaff5576241"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095313Z:756d99a3-b6da-41f6-ad7c-cfaff5576241"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:12 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT18.2069247S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b2eaa140-e409-4a31-8ed7-578481dd1497"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c6ff6401-ca20-4e00-9471-4138d25dda84"
+ ],
+ "x-ms-client-request-id": [
+ "b2eaa140-e409-4a31-8ed7-578481dd1497",
+ "b2eaa140-e409-4a31-8ed7-578481dd1497"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11483"
+ ],
+ "x-ms-correlation-request-id": [
+ "c6ff6401-ca20-4e00-9471-4138d25dda84"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095314Z:c6ff6401-ca20-4e00-9471-4138d25dda84"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:13 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT18.5217216S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9ee64e19-9aff-4b1f-9ddd-9f06ff333fb0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "fb98aa43-a6b9-49cd-9ae8-1031169a54a5"
+ ],
+ "x-ms-client-request-id": [
+ "9ee64e19-9aff-4b1f-9ddd-9f06ff333fb0",
+ "9ee64e19-9aff-4b1f-9ddd-9f06ff333fb0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11482"
+ ],
+ "x-ms-correlation-request-id": [
+ "fb98aa43-a6b9-49cd-9ae8-1031169a54a5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095314Z:fb98aa43-a6b9-49cd-9ae8-1031169a54a5"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:13 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT18.748873S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "37724689-ef9d-49ce-a10b-77fa6d3607a3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "ee09cbca-77b7-4422-b198-31154f3c2611"
+ ],
+ "x-ms-client-request-id": [
+ "37724689-ef9d-49ce-a10b-77fa6d3607a3",
+ "37724689-ef9d-49ce-a10b-77fa6d3607a3"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11481"
+ ],
+ "x-ms-correlation-request-id": [
+ "ee09cbca-77b7-4422-b198-31154f3c2611"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095314Z:ee09cbca-77b7-4422-b198-31154f3c2611"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:13 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT18.9988569S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1ede95bb-6880-4190-a42b-02f98477180a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "b3010499-1c28-416a-84f9-01874fd24ebe"
+ ],
+ "x-ms-client-request-id": [
+ "1ede95bb-6880-4190-a42b-02f98477180a",
+ "1ede95bb-6880-4190-a42b-02f98477180a"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11480"
+ ],
+ "x-ms-correlation-request-id": [
+ "b3010499-1c28-416a-84f9-01874fd24ebe"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095314Z:b3010499-1c28-416a-84f9-01874fd24ebe"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:14 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT19.3029978S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a8605067-7aac-4a2d-bea7-2465e9414268"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "5c357eb2-2b3d-4071-8a41-d81254f6b4f9"
+ ],
+ "x-ms-client-request-id": [
+ "a8605067-7aac-4a2d-bea7-2465e9414268",
+ "a8605067-7aac-4a2d-bea7-2465e9414268"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11479"
+ ],
+ "x-ms-correlation-request-id": [
+ "5c357eb2-2b3d-4071-8a41-d81254f6b4f9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095315Z:5c357eb2-2b3d-4071-8a41-d81254f6b4f9"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:14 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT19.6210834S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cd9478b4-2856-4373-9892-96fa657c723d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "933ebf33-3765-4d34-82f5-a1ae3298c9c8"
+ ],
+ "x-ms-client-request-id": [
+ "cd9478b4-2856-4373-9892-96fa657c723d",
+ "cd9478b4-2856-4373-9892-96fa657c723d"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11478"
+ ],
+ "x-ms-correlation-request-id": [
+ "933ebf33-3765-4d34-82f5-a1ae3298c9c8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095315Z:933ebf33-3765-4d34-82f5-a1ae3298c9c8"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:14 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT19.9280258S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "96c1290e-cee1-4138-bdfd-671bc8333d8e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "31a25556-3bcb-4806-8b5e-a9e82d1bf840"
+ ],
+ "x-ms-client-request-id": [
+ "96c1290e-cee1-4138-bdfd-671bc8333d8e",
+ "96c1290e-cee1-4138-bdfd-671bc8333d8e"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11477"
+ ],
+ "x-ms-correlation-request-id": [
+ "31a25556-3bcb-4806-8b5e-a9e82d1bf840"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095315Z:31a25556-3bcb-4806-8b5e-a9e82d1bf840"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:14 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT20.1523473S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "90498fa0-ed1b-4c84-868a-1987d9214e07"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "5f5c6c19-5fde-4a76-b51a-99a1c866500d"
+ ],
+ "x-ms-client-request-id": [
+ "90498fa0-ed1b-4c84-868a-1987d9214e07",
+ "90498fa0-ed1b-4c84-868a-1987d9214e07"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11476"
+ ],
+ "x-ms-correlation-request-id": [
+ "5f5c6c19-5fde-4a76-b51a-99a1c866500d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095316Z:5f5c6c19-5fde-4a76-b51a-99a1c866500d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:15 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT20.4280504S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b855ad8d-fa1e-4236-94f3-a5bb2886e5e7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "eac6f7c5-5f7c-4156-9052-e043c0962fae"
+ ],
+ "x-ms-client-request-id": [
+ "b855ad8d-fa1e-4236-94f3-a5bb2886e5e7",
+ "b855ad8d-fa1e-4236-94f3-a5bb2886e5e7"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11475"
+ ],
+ "x-ms-correlation-request-id": [
+ "eac6f7c5-5f7c-4156-9052-e043c0962fae"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095316Z:eac6f7c5-5f7c-4156-9052-e043c0962fae"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:15 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT20.6679864S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4f13c6de-b87c-40ae-a5a9-ad62af4d9b3a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "8560005e-26bf-4b39-857a-504b61bf1164"
+ ],
+ "x-ms-client-request-id": [
+ "4f13c6de-b87c-40ae-a5a9-ad62af4d9b3a",
+ "4f13c6de-b87c-40ae-a5a9-ad62af4d9b3a"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11474"
+ ],
+ "x-ms-correlation-request-id": [
+ "8560005e-26bf-4b39-857a-504b61bf1164"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095316Z:8560005e-26bf-4b39-857a-504b61bf1164"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:15 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT20.9905615S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1cce5817-d1bb-4857-a6d0-335adbc9104d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "8c9b9858-b5e7-47e6-b411-75b3733b759f"
+ ],
+ "x-ms-client-request-id": [
+ "1cce5817-d1bb-4857-a6d0-335adbc9104d",
+ "1cce5817-d1bb-4857-a6d0-335adbc9104d"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11473"
+ ],
+ "x-ms-correlation-request-id": [
+ "8c9b9858-b5e7-47e6-b411-75b3733b759f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095316Z:8c9b9858-b5e7-47e6-b411-75b3733b759f"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:16 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.2960967S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b4ddf3c2-d211-4eaa-a8fa-00373dfbc359"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c198edfe-3aee-48b0-b23c-a1edaebfcfc8"
+ ],
+ "x-ms-client-request-id": [
+ "b4ddf3c2-d211-4eaa-a8fa-00373dfbc359",
+ "b4ddf3c2-d211-4eaa-a8fa-00373dfbc359"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11472"
+ ],
+ "x-ms-correlation-request-id": [
+ "c198edfe-3aee-48b0-b23c-a1edaebfcfc8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095317Z:c198edfe-3aee-48b0-b23c-a1edaebfcfc8"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:16 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.558643S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0f564e70-aed4-4bea-b0e3-331cfa07af21"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "edfee578-0509-439b-8b26-9834d84d700e"
+ ],
+ "x-ms-client-request-id": [
+ "0f564e70-aed4-4bea-b0e3-331cfa07af21",
+ "0f564e70-aed4-4bea-b0e3-331cfa07af21"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11471"
+ ],
+ "x-ms-correlation-request-id": [
+ "edfee578-0509-439b-8b26-9834d84d700e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095317Z:edfee578-0509-439b-8b26-9834d84d700e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:16 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.8242784S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b1ab3035-c0a9-4085-ade0-fed7cb7dee13"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "51ff60b7-9023-4525-aa6d-1a758bcb6c38"
+ ],
+ "x-ms-client-request-id": [
+ "b1ab3035-c0a9-4085-ade0-fed7cb7dee13",
+ "b1ab3035-c0a9-4085-ade0-fed7cb7dee13"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11470"
+ ],
+ "x-ms-correlation-request-id": [
+ "51ff60b7-9023-4525-aa6d-1a758bcb6c38"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095317Z:51ff60b7-9023-4525-aa6d-1a758bcb6c38"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:16 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT22.2984327S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "67d60fc7-7d76-4e4f-83f9-a158063c7238"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "35a0b5c9-962e-48a6-90e3-123c7e0bf546"
+ ],
+ "x-ms-client-request-id": [
+ "67d60fc7-7d76-4e4f-83f9-a158063c7238",
+ "67d60fc7-7d76-4e4f-83f9-a158063c7238"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11469"
+ ],
+ "x-ms-correlation-request-id": [
+ "35a0b5c9-962e-48a6-90e3-123c7e0bf546"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095318Z:35a0b5c9-962e-48a6-90e3-123c7e0bf546"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:17 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT22.6057698S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "86484564-9b2c-4868-a33a-c2e84559a324"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "ba7c4f63-9cf9-4fe4-8ce1-f633dd989179"
+ ],
+ "x-ms-client-request-id": [
+ "86484564-9b2c-4868-a33a-c2e84559a324",
+ "86484564-9b2c-4868-a33a-c2e84559a324"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11468"
+ ],
+ "x-ms-correlation-request-id": [
+ "ba7c4f63-9cf9-4fe4-8ce1-f633dd989179"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095318Z:ba7c4f63-9cf9-4fe4-8ce1-f633dd989179"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:17 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT22.9547089S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "53dcfc6b-75ea-4273-9e45-97b479c613d9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "dfcab6fe-030f-4332-80fa-8ddd706cc50b"
+ ],
+ "x-ms-client-request-id": [
+ "53dcfc6b-75ea-4273-9e45-97b479c613d9",
+ "53dcfc6b-75ea-4273-9e45-97b479c613d9"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11467"
+ ],
+ "x-ms-correlation-request-id": [
+ "dfcab6fe-030f-4332-80fa-8ddd706cc50b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095318Z:dfcab6fe-030f-4332-80fa-8ddd706cc50b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:17 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT23.2515964S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "76b3c522-30d9-4680-ae8c-c48ed66f2ab2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "6a89b596-7901-4bd1-aa5e-441613c9f459"
+ ],
+ "x-ms-client-request-id": [
+ "76b3c522-30d9-4680-ae8c-c48ed66f2ab2",
+ "76b3c522-30d9-4680-ae8c-c48ed66f2ab2"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11466"
+ ],
+ "x-ms-correlation-request-id": [
+ "6a89b596-7901-4bd1-aa5e-441613c9f459"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095319Z:6a89b596-7901-4bd1-aa5e-441613c9f459"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:18 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT23.4962272S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6b312e88-9e45-4a0b-ba9a-0e6e3b7cbf79"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "8a75d2a7-7a65-4170-9e82-119a2345d9d8"
+ ],
+ "x-ms-client-request-id": [
+ "6b312e88-9e45-4a0b-ba9a-0e6e3b7cbf79",
+ "6b312e88-9e45-4a0b-ba9a-0e6e3b7cbf79"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11465"
+ ],
+ "x-ms-correlation-request-id": [
+ "8a75d2a7-7a65-4170-9e82-119a2345d9d8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095320Z:8a75d2a7-7a65-4170-9e82-119a2345d9d8"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:19 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT24.3731764S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "728ee5e7-9a41-414c-8dc0-9065f88fd57d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "04b44cc4-e983-4b3b-885d-8bffcbd7369f"
+ ],
+ "x-ms-client-request-id": [
+ "728ee5e7-9a41-414c-8dc0-9065f88fd57d",
+ "728ee5e7-9a41-414c-8dc0-9065f88fd57d"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11464"
+ ],
+ "x-ms-correlation-request-id": [
+ "04b44cc4-e983-4b3b-885d-8bffcbd7369f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095320Z:04b44cc4-e983-4b3b-885d-8bffcbd7369f"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:19 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT24.997167S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d5f2b0c4-359c-413c-afa8-95d2726842a2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "eabc3806-4e8e-4d14-bc8a-530e40b73505"
+ ],
+ "x-ms-client-request-id": [
+ "d5f2b0c4-359c-413c-afa8-95d2726842a2",
+ "d5f2b0c4-359c-413c-afa8-95d2726842a2"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11463"
+ ],
+ "x-ms-correlation-request-id": [
+ "eabc3806-4e8e-4d14-bc8a-530e40b73505"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095320Z:eabc3806-4e8e-4d14-bc8a-530e40b73505"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:19 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT25.2807311S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c39b8534-c894-4238-a300-48ab731d9d47"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "066b9985-1562-4b23-b849-a83f1febbcfc"
+ ],
+ "x-ms-client-request-id": [
+ "c39b8534-c894-4238-a300-48ab731d9d47",
+ "c39b8534-c894-4238-a300-48ab731d9d47"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11462"
+ ],
+ "x-ms-correlation-request-id": [
+ "066b9985-1562-4b23-b849-a83f1febbcfc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095321Z:066b9985-1562-4b23-b849-a83f1febbcfc"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:20 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT25.5919797S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4d2c8cd2-d1aa-4695-8f3f-e72bc71fa588"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "1c5700f1-050b-478f-b7d0-c73b01eaa039"
+ ],
+ "x-ms-client-request-id": [
+ "4d2c8cd2-d1aa-4695-8f3f-e72bc71fa588",
+ "4d2c8cd2-d1aa-4695-8f3f-e72bc71fa588"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11461"
+ ],
+ "x-ms-correlation-request-id": [
+ "1c5700f1-050b-478f-b7d0-c73b01eaa039"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095321Z:1c5700f1-050b-478f-b7d0-c73b01eaa039"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:20 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT25.8689376S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "82d5b820-3f7e-49a6-9abd-c8db5ad8d5a2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "80510699-a10d-48c4-bce8-0987a1a25d9e"
+ ],
+ "x-ms-client-request-id": [
+ "82d5b820-3f7e-49a6-9abd-c8db5ad8d5a2",
+ "82d5b820-3f7e-49a6-9abd-c8db5ad8d5a2"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11460"
+ ],
+ "x-ms-correlation-request-id": [
+ "80510699-a10d-48c4-bce8-0987a1a25d9e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095321Z:80510699-a10d-48c4-bce8-0987a1a25d9e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:20 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT26.1246123S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "054d7f1f-0fe8-4099-afa0-79cfbfc8cf2a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "57fafca3-9534-41a3-bd59-66d1411d2d73"
+ ],
+ "x-ms-client-request-id": [
+ "054d7f1f-0fe8-4099-afa0-79cfbfc8cf2a",
+ "054d7f1f-0fe8-4099-afa0-79cfbfc8cf2a"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11459"
+ ],
+ "x-ms-correlation-request-id": [
+ "57fafca3-9534-41a3-bd59-66d1411d2d73"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095322Z:57fafca3-9534-41a3-bd59-66d1411d2d73"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:21 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT26.3902461S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6c994943-c3aa-4346-b2c5-6c1876f96aed"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "b1cf3c15-4df8-480d-9700-ba75de5b06db"
+ ],
+ "x-ms-client-request-id": [
+ "6c994943-c3aa-4346-b2c5-6c1876f96aed",
+ "6c994943-c3aa-4346-b2c5-6c1876f96aed"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11458"
+ ],
+ "x-ms-correlation-request-id": [
+ "b1cf3c15-4df8-480d-9700-ba75de5b06db"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095322Z:b1cf3c15-4df8-480d-9700-ba75de5b06db"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:21 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT26.6871135S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "eab811c2-25a9-4291-96d8-c090bd7a8c57"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "6343e21e-8f57-40be-892f-484bbebcbfdb"
+ ],
+ "x-ms-client-request-id": [
+ "eab811c2-25a9-4291-96d8-c090bd7a8c57",
+ "eab811c2-25a9-4291-96d8-c090bd7a8c57"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11457"
+ ],
+ "x-ms-correlation-request-id": [
+ "6343e21e-8f57-40be-892f-484bbebcbfdb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095322Z:6343e21e-8f57-40be-892f-484bbebcbfdb"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:21 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT26.9687208S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6ea81558-5c00-48b2-8468-edebc2df7687"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "98814df0-6b6d-41f8-b062-0c2e84308776"
+ ],
+ "x-ms-client-request-id": [
+ "6ea81558-5c00-48b2-8468-edebc2df7687",
+ "6ea81558-5c00-48b2-8468-edebc2df7687"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11456"
+ ],
+ "x-ms-correlation-request-id": [
+ "98814df0-6b6d-41f8-b062-0c2e84308776"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095322Z:98814df0-6b6d-41f8-b062-0c2e84308776"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:21 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT27.2014359S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5d2c232b-a6cd-40b7-a9b4-bfbb90d84b94"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "eb2b406d-095c-484a-af9b-e700ad566572"
+ ],
+ "x-ms-client-request-id": [
+ "5d2c232b-a6cd-40b7-a9b4-bfbb90d84b94",
+ "5d2c232b-a6cd-40b7-a9b4-bfbb90d84b94"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11455"
+ ],
+ "x-ms-correlation-request-id": [
+ "eb2b406d-095c-484a-af9b-e700ad566572"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095323Z:eb2b406d-095c-484a-af9b-e700ad566572"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:22 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT27.4531112S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "66b23507-b1bd-4941-a704-b68cd885c934"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "af9d8221-1a6d-4b84-a73c-80ed3482c33f"
+ ],
+ "x-ms-client-request-id": [
+ "66b23507-b1bd-4941-a704-b68cd885c934",
+ "66b23507-b1bd-4941-a704-b68cd885c934"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11454"
+ ],
+ "x-ms-correlation-request-id": [
+ "af9d8221-1a6d-4b84-a73c-80ed3482c33f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095323Z:af9d8221-1a6d-4b84-a73c-80ed3482c33f"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:22 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT27.8483052S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "90ce6522-d23b-470b-901f-087dfad66255"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "46838020-1c10-4e95-af7a-4b47129b7508"
+ ],
+ "x-ms-client-request-id": [
+ "90ce6522-d23b-470b-901f-087dfad66255",
+ "90ce6522-d23b-470b-901f-087dfad66255"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11453"
+ ],
+ "x-ms-correlation-request-id": [
+ "46838020-1c10-4e95-af7a-4b47129b7508"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095323Z:46838020-1c10-4e95-af7a-4b47129b7508"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:22 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT28.0957685S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "326d33ee-9024-4695-8aab-13e474aac138"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "4016a630-5ae2-4260-b991-4e4114d07b88"
+ ],
+ "x-ms-client-request-id": [
+ "326d33ee-9024-4695-8aab-13e474aac138",
+ "326d33ee-9024-4695-8aab-13e474aac138"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11452"
+ ],
+ "x-ms-correlation-request-id": [
+ "4016a630-5ae2-4260-b991-4e4114d07b88"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095324Z:4016a630-5ae2-4260-b991-4e4114d07b88"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:23 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT28.3770398S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "97744de6-4522-4bed-a881-42179f0d8728"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "ccbdd7c1-13b0-488c-825f-56580ae6e714"
+ ],
+ "x-ms-client-request-id": [
+ "97744de6-4522-4bed-a881-42179f0d8728",
+ "97744de6-4522-4bed-a881-42179f0d8728"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11451"
+ ],
+ "x-ms-correlation-request-id": [
+ "ccbdd7c1-13b0-488c-825f-56580ae6e714"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095324Z:ccbdd7c1-13b0-488c-825f-56580ae6e714"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:23 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT28.6175564S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f3e0121d-5539-4bf1-8dde-5240a33ea28f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "98ae51fd-2292-43bd-b61a-ef4ce41cdc9d"
+ ],
+ "x-ms-client-request-id": [
+ "f3e0121d-5539-4bf1-8dde-5240a33ea28f",
+ "f3e0121d-5539-4bf1-8dde-5240a33ea28f"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11450"
+ ],
+ "x-ms-correlation-request-id": [
+ "98ae51fd-2292-43bd-b61a-ef4ce41cdc9d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095324Z:98ae51fd-2292-43bd-b61a-ef4ce41cdc9d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:23 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT28.8597075S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5bebac00-c352-44bd-8525-cf4483bab3b6"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "4a932e95-e047-42ef-8946-33e90e984840"
+ ],
+ "x-ms-client-request-id": [
+ "5bebac00-c352-44bd-8525-cf4483bab3b6",
+ "5bebac00-c352-44bd-8525-cf4483bab3b6"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11449"
+ ],
+ "x-ms-correlation-request-id": [
+ "4a932e95-e047-42ef-8946-33e90e984840"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095324Z:4a932e95-e047-42ef-8946-33e90e984840"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:23 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT29.1565938S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9d4aec87-4a42-4c4c-9087-0a4214b1e950"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c94cff60-0fb7-46c3-a04f-f1c2613c85c3"
+ ],
+ "x-ms-client-request-id": [
+ "9d4aec87-4a42-4c4c-9087-0a4214b1e950",
+ "9d4aec87-4a42-4c4c-9087-0a4214b1e950"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11448"
+ ],
+ "x-ms-correlation-request-id": [
+ "c94cff60-0fb7-46c3-a04f-f1c2613c85c3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095325Z:c94cff60-0fb7-46c3-a04f-f1c2613c85c3"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:25 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT29.4066028S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "056d88d5-a3a5-4383-bd69-f70380b9efe9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "23b93ecd-de0d-44d9-ab0d-ca0e09ee899a"
+ ],
+ "x-ms-client-request-id": [
+ "056d88d5-a3a5-4383-bd69-f70380b9efe9",
+ "056d88d5-a3a5-4383-bd69-f70380b9efe9"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11447"
+ ],
+ "x-ms-correlation-request-id": [
+ "23b93ecd-de0d-44d9-ab0d-ca0e09ee899a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095325Z:23b93ecd-de0d-44d9-ab0d-ca0e09ee899a"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:25 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT29.6566157S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f6e34f12-89d4-49a7-a0a1-065defa4cdc4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "5915b90e-47ef-4296-b35a-b89e844a143b"
+ ],
+ "x-ms-client-request-id": [
+ "f6e34f12-89d4-49a7-a0a1-065defa4cdc4",
+ "f6e34f12-89d4-49a7-a0a1-065defa4cdc4"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11446"
+ ],
+ "x-ms-correlation-request-id": [
+ "5915b90e-47ef-4296-b35a-b89e844a143b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095325Z:5915b90e-47ef-4296-b35a-b89e844a143b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:25 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT29.9574584S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3fcd7687-fe1a-48a2-aef9-cde3b2386ad0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "cb04a6c1-a973-4583-8969-ef49024465c3"
+ ],
+ "x-ms-client-request-id": [
+ "3fcd7687-fe1a-48a2-aef9-cde3b2386ad0",
+ "3fcd7687-fe1a-48a2-aef9-cde3b2386ad0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11445"
+ ],
+ "x-ms-correlation-request-id": [
+ "cb04a6c1-a973-4583-8969-ef49024465c3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095326Z:cb04a6c1-a973-4583-8969-ef49024465c3"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:26 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT30.9117613S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1446bfd2-49ac-406b-98f2-80b8effcbbca"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "ee1ce2a6-1dae-41df-a2ab-c31bb4cb0281"
+ ],
+ "x-ms-client-request-id": [
+ "1446bfd2-49ac-406b-98f2-80b8effcbbca",
+ "1446bfd2-49ac-406b-98f2-80b8effcbbca"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11444"
+ ],
+ "x-ms-correlation-request-id": [
+ "ee1ce2a6-1dae-41df-a2ab-c31bb4cb0281"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095326Z:ee1ce2a6-1dae-41df-a2ab-c31bb4cb0281"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:26 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT31.1791127S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e6d55980-5b0b-4d4c-bc57-0c8104ec9373"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "5aeda19d-4853-408c-a6dd-3170d1e42b0a"
+ ],
+ "x-ms-client-request-id": [
+ "e6d55980-5b0b-4d4c-bc57-0c8104ec9373",
+ "e6d55980-5b0b-4d4c-bc57-0c8104ec9373"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11443"
+ ],
+ "x-ms-correlation-request-id": [
+ "5aeda19d-4853-408c-a6dd-3170d1e42b0a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095327Z:5aeda19d-4853-408c-a6dd-3170d1e42b0a"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:27 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT31.4134969S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d2468b53-095b-496c-a4b8-fcf711573f76"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "56897d2b-b805-4e97-9d0b-a65e242c509b"
+ ],
+ "x-ms-client-request-id": [
+ "d2468b53-095b-496c-a4b8-fcf711573f76",
+ "d2468b53-095b-496c-a4b8-fcf711573f76"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11442"
+ ],
+ "x-ms-correlation-request-id": [
+ "56897d2b-b805-4e97-9d0b-a65e242c509b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095327Z:56897d2b-b805-4e97-9d0b-a65e242c509b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:27 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT31.6617899S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4dc23f4a-f14a-4c69-87ec-bbaa7f9cf268"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "abc235d3-037d-4cfa-80e1-853474f70751"
+ ],
+ "x-ms-client-request-id": [
+ "4dc23f4a-f14a-4c69-87ec-bbaa7f9cf268",
+ "4dc23f4a-f14a-4c69-87ec-bbaa7f9cf268"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11441"
+ ],
+ "x-ms-correlation-request-id": [
+ "abc235d3-037d-4cfa-80e1-853474f70751"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095327Z:abc235d3-037d-4cfa-80e1-853474f70751"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:27 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT32.0287517S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "63ddaf66-4b8d-42ab-a4b4-c64dbc989b26"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "b0b21fe9-10a2-45ba-ad91-578e69e9bd61"
+ ],
+ "x-ms-client-request-id": [
+ "63ddaf66-4b8d-42ab-a4b4-c64dbc989b26",
+ "63ddaf66-4b8d-42ab-a4b4-c64dbc989b26"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11440"
+ ],
+ "x-ms-correlation-request-id": [
+ "b0b21fe9-10a2-45ba-ad91-578e69e9bd61"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095327Z:b0b21fe9-10a2-45ba-ad91-578e69e9bd61"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:27 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT32.3413135S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "afb5fa36-69d2-47a1-9686-b10a7b44a12b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "84e33b58-84e3-43e4-81c4-9d79e8acce8e"
+ ],
+ "x-ms-client-request-id": [
+ "afb5fa36-69d2-47a1-9686-b10a7b44a12b",
+ "afb5fa36-69d2-47a1-9686-b10a7b44a12b"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11439"
+ ],
+ "x-ms-correlation-request-id": [
+ "84e33b58-84e3-43e4-81c4-9d79e8acce8e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095328Z:84e33b58-84e3-43e4-81c4-9d79e8acce8e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:28 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT32.6381996S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ff16902a-4bff-4361-876f-7f29631d7806"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c69d4498-e4d0-46d5-b3a5-705cf56f5926"
+ ],
+ "x-ms-client-request-id": [
+ "ff16902a-4bff-4361-876f-7f29631d7806",
+ "ff16902a-4bff-4361-876f-7f29631d7806"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11438"
+ ],
+ "x-ms-correlation-request-id": [
+ "c69d4498-e4d0-46d5-b3a5-705cf56f5926"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095328Z:c69d4498-e4d0-46d5-b3a5-705cf56f5926"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:28 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT32.8975505S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "942c2ccc-019a-4cb3-95e9-3af46d5f7c36"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "d015f6db-b52d-4523-8dfb-65fe7375ae4d"
+ ],
+ "x-ms-client-request-id": [
+ "942c2ccc-019a-4cb3-95e9-3af46d5f7c36",
+ "942c2ccc-019a-4cb3-95e9-3af46d5f7c36"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11437"
+ ],
+ "x-ms-correlation-request-id": [
+ "d015f6db-b52d-4523-8dfb-65fe7375ae4d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095328Z:d015f6db-b52d-4523-8dfb-65fe7375ae4d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:28 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT33.2256815S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3bb5d500-4001-400f-b7b1-1ab858733890"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "3c1f3603-6de8-426b-b038-6dd9c4d1feb8"
+ ],
+ "x-ms-client-request-id": [
+ "3bb5d500-4001-400f-b7b1-1ab858733890",
+ "3bb5d500-4001-400f-b7b1-1ab858733890"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11436"
+ ],
+ "x-ms-correlation-request-id": [
+ "3c1f3603-6de8-426b-b038-6dd9c4d1feb8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095329Z:3c1f3603-6de8-426b-b038-6dd9c4d1feb8"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:29 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT33.5538188S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1854e00c-40c8-4546-8568-e62c7ea515f7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f26eb96f-7000-44e5-acbb-3f710e58328d"
+ ],
+ "x-ms-client-request-id": [
+ "1854e00c-40c8-4546-8568-e62c7ea515f7",
+ "1854e00c-40c8-4546-8568-e62c7ea515f7"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11435"
+ ],
+ "x-ms-correlation-request-id": [
+ "f26eb96f-7000-44e5-acbb-3f710e58328d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095329Z:f26eb96f-7000-44e5-acbb-3f710e58328d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:29 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT34.2257197S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "230f6769-0780-4666-9173-25fdfeec8187"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "96d0aa88-bff6-418c-ba15-5b1c0f6c00cc"
+ ],
+ "x-ms-client-request-id": [
+ "230f6769-0780-4666-9173-25fdfeec8187",
+ "230f6769-0780-4666-9173-25fdfeec8187"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11434"
+ ],
+ "x-ms-correlation-request-id": [
+ "96d0aa88-bff6-418c-ba15-5b1c0f6c00cc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095330Z:96d0aa88-bff6-418c-ba15-5b1c0f6c00cc"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:30 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT34.4984643S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "24770d0c-b084-4e52-a8fc-7d38736b5b49"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "872056f4-152e-4010-83de-37ae7459a5fb"
+ ],
+ "x-ms-client-request-id": [
+ "24770d0c-b084-4e52-a8fc-7d38736b5b49",
+ "24770d0c-b084-4e52-a8fc-7d38736b5b49"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11433"
+ ],
+ "x-ms-correlation-request-id": [
+ "872056f4-152e-4010-83de-37ae7459a5fb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095330Z:872056f4-152e-4010-83de-37ae7459a5fb"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:30 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT34.7797243S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "96d92873-4fbf-4e45-bafb-492e874056d6"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "29118e01-7ba0-41da-9015-06e1a91b414b"
+ ],
+ "x-ms-client-request-id": [
+ "96d92873-4fbf-4e45-bafb-492e874056d6",
+ "96d92873-4fbf-4e45-bafb-492e874056d6"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11432"
+ ],
+ "x-ms-correlation-request-id": [
+ "29118e01-7ba0-41da-9015-06e1a91b414b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095330Z:29118e01-7ba0-41da-9015-06e1a91b414b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:30 GMT"
+ ],
+ "Content-Length": [
+ "1102"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT35.1788S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "73bb43c1-665f-4456-bc5a-6748df380fa5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "5bd2d1d7-8002-4abd-befe-2d351a9706aa"
+ ],
+ "x-ms-client-request-id": [
+ "73bb43c1-665f-4456-bc5a-6748df380fa5",
+ "73bb43c1-665f-4456-bc5a-6748df380fa5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11431"
+ ],
+ "x-ms-correlation-request-id": [
+ "5bd2d1d7-8002-4abd-befe-2d351a9706aa"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095331Z:5bd2d1d7-8002-4abd-befe-2d351a9706aa"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:31 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT35.5146048S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lMzFkODJjNS00NjIyLTRmNTYtYjJmNy0xYTIyZjk5N2Y2MzM/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d2505403-a7e0-46a6-98b0-585709f3819f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "95921983-852e-4391-9d2f-2c01e3360e27"
+ ],
+ "x-ms-client-request-id": [
+ "d2505403-a7e0-46a6-98b0-585709f3819f",
+ "d2505403-a7e0-46a6-98b0-585709f3819f"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11430"
+ ],
+ "x-ms-correlation-request-id": [
+ "95921983-852e-4391-9d2f-2c01e3360e27"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095331Z:95921983-852e-4391-9d2f-2c01e3360e27"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:53:31 GMT"
+ ],
+ "Content-Length": [
+ "1195"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"name\": \"e31d82c5-4622-4f56-b2f7-1a22f997f633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT33.8580852S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"3/19/2020 9:51:40 AM\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"1\",\r\n \"Number Of Restored Files\": \"1\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2020-03-19T09:52:55.5832083Z\",\r\n \"endTime\": \"2020-03-19T09:53:29.4412935Z\",\r\n \"activityId\": \"82fe925e-03dc-4b9e-8142-4fadbf254364\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2bf71811-8f80-47f6-b55e-0afaa251473c?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYmY3MTgxMS04ZjgwLTQ3ZjYtYjU1ZS0wYWZhYTI1MTQ3M2M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2235b6b4-007d-4dfa-b30f-12e42c8ccd7d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "a8876d17-3f94-4b9d-aa3c-fd26ff9ce068"
+ ],
+ "x-ms-client-request-id": [
+ "2235b6b4-007d-4dfa-b30f-12e42c8ccd7d",
+ "2235b6b4-007d-4dfa-b30f-12e42c8ccd7d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11429"
+ ],
+ "x-ms-correlation-request-id": [
+ "a8876d17-3f94-4b9d-aa3c-fd26ff9ce068"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095502Z:a8876d17-3f94-4b9d-aa3c-fd26ff9ce068"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:01 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"2bf71811-8f80-47f6-b55e-0afaa251473c\",\r\n \"name\": \"2bf71811-8f80-47f6-b55e-0afaa251473c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2bf71811-8f80-47f6-b55e-0afaa251473c?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYmY3MTgxMS04ZjgwLTQ3ZjYtYjU1ZS0wYWZhYTI1MTQ3M2M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ad169255-89dd-45f0-87db-72433753adc5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "692d2927-55ee-4079-8792-15dd325c88d1"
+ ],
+ "x-ms-client-request-id": [
+ "ad169255-89dd-45f0-87db-72433753adc5",
+ "ad169255-89dd-45f0-87db-72433753adc5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11428"
+ ],
+ "x-ms-correlation-request-id": [
+ "692d2927-55ee-4079-8792-15dd325c88d1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095502Z:692d2927-55ee-4079-8792-15dd325c88d1"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:02 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"2bf71811-8f80-47f6-b55e-0afaa251473c\",\r\n \"name\": \"2bf71811-8f80-47f6-b55e-0afaa251473c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2bf71811-8f80-47f6-b55e-0afaa251473c?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYmY3MTgxMS04ZjgwLTQ3ZjYtYjU1ZS0wYWZhYTI1MTQ3M2M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "48e4d2ad-6986-49f1-bd01-47f413cd4c17"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "eee3a1aa-3702-4a6e-94ed-282dda2bfd21"
+ ],
+ "x-ms-client-request-id": [
+ "48e4d2ad-6986-49f1-bd01-47f413cd4c17",
+ "48e4d2ad-6986-49f1-bd01-47f413cd4c17"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11427"
+ ],
+ "x-ms-correlation-request-id": [
+ "eee3a1aa-3702-4a6e-94ed-282dda2bfd21"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095502Z:eee3a1aa-3702-4a6e-94ed-282dda2bfd21"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:02 GMT"
+ ],
+ "Content-Length": [
+ "304"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"2bf71811-8f80-47f6-b55e-0afaa251473c\",\r\n \"name\": \"2bf71811-8f80-47f6-b55e-0afaa251473c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"endTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2bf71811-8f80-47f6-b55e-0afaa251473c?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYmY3MTgxMS04ZjgwLTQ3ZjYtYjU1ZS0wYWZhYTI1MTQ3M2M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d81cb4d2-b82f-4091-9103-acfdd54e6eed"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "25a51f77-b4cf-4f86-87bf-021bed4fc7b0"
+ ],
+ "x-ms-client-request-id": [
+ "d81cb4d2-b82f-4091-9103-acfdd54e6eed",
+ "d81cb4d2-b82f-4091-9103-acfdd54e6eed"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11426"
+ ],
+ "x-ms-correlation-request-id": [
+ "25a51f77-b4cf-4f86-87bf-021bed4fc7b0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095503Z:25a51f77-b4cf-4f86-87bf-021bed4fc7b0"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:03 GMT"
+ ],
+ "Content-Length": [
+ "304"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"2bf71811-8f80-47f6-b55e-0afaa251473c\",\r\n \"name\": \"2bf71811-8f80-47f6-b55e-0afaa251473c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"endTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b4d6ab3c-e2a6-4dc3-b6ee-4e7f0f13f4cd"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "eaee5f5d-b0dd-4031-96d1-e8293c14dc27"
+ ],
+ "x-ms-client-request-id": [
+ "b4d6ab3c-e2a6-4dc3-b6ee-4e7f0f13f4cd",
+ "b4d6ab3c-e2a6-4dc3-b6ee-4e7f0f13f4cd"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11425"
+ ],
+ "x-ms-correlation-request-id": [
+ "eaee5f5d-b0dd-4031-96d1-e8293c14dc27"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095503Z:eaee5f5d-b0dd-4031-96d1-e8293c14dc27"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:03 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT2.2953578S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "07cee218-39fc-497d-8c1e-256d8e22f99e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "9fdd9fe7-f44b-4b92-b3a3-16fa926c842e"
+ ],
+ "x-ms-client-request-id": [
+ "07cee218-39fc-497d-8c1e-256d8e22f99e",
+ "07cee218-39fc-497d-8c1e-256d8e22f99e"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11424"
+ ],
+ "x-ms-correlation-request-id": [
+ "9fdd9fe7-f44b-4b92-b3a3-16fa926c842e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095504Z:9fdd9fe7-f44b-4b92-b3a3-16fa926c842e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:04 GMT"
+ ],
+ "Content-Length": [
+ "1103"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT2.607874S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "965468e2-7b3c-4921-bd98-80e6d70070ed"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "00b01bb8-0905-4492-90f9-912059266562"
+ ],
+ "x-ms-client-request-id": [
+ "965468e2-7b3c-4921-bd98-80e6d70070ed",
+ "965468e2-7b3c-4921-bd98-80e6d70070ed"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11423"
+ ],
+ "x-ms-correlation-request-id": [
+ "00b01bb8-0905-4492-90f9-912059266562"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095504Z:00b01bb8-0905-4492-90f9-912059266562"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:04 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT2.9132177S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9140c8c8-8283-4018-b32f-a77b3472658e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "dd3f7739-415a-4928-a542-78890ef32b04"
+ ],
+ "x-ms-client-request-id": [
+ "9140c8c8-8283-4018-b32f-a77b3472658e",
+ "9140c8c8-8283-4018-b32f-a77b3472658e"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11422"
+ ],
+ "x-ms-correlation-request-id": [
+ "dd3f7739-415a-4928-a542-78890ef32b04"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095504Z:dd3f7739-415a-4928-a542-78890ef32b04"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:04 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT3.1543823S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2d00a2e7-320a-4a0f-96b7-d85e9bc26db7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "71e2216d-33ee-4b2c-8e47-678a18d66ddc"
+ ],
+ "x-ms-client-request-id": [
+ "2d00a2e7-320a-4a0f-96b7-d85e9bc26db7",
+ "2d00a2e7-320a-4a0f-96b7-d85e9bc26db7"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11421"
+ ],
+ "x-ms-correlation-request-id": [
+ "71e2216d-33ee-4b2c-8e47-678a18d66ddc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095504Z:71e2216d-33ee-4b2c-8e47-678a18d66ddc"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:04 GMT"
+ ],
+ "Content-Length": [
+ "1103"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT3.383712S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a3a437d4-a14f-4dcb-be9a-fd1455dd9643"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "0cac4acf-7bb6-4781-a133-b0d176a4c5c7"
+ ],
+ "x-ms-client-request-id": [
+ "a3a437d4-a14f-4dcb-be9a-fd1455dd9643",
+ "a3a437d4-a14f-4dcb-be9a-fd1455dd9643"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11420"
+ ],
+ "x-ms-correlation-request-id": [
+ "0cac4acf-7bb6-4781-a133-b0d176a4c5c7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095505Z:0cac4acf-7bb6-4781-a133-b0d176a4c5c7"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:05 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT3.6320887S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "716f76fe-0842-4da4-b6c9-5c8647139cf4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "70c472a5-5ba1-4f06-bb75-ea4c7b94ca6d"
+ ],
+ "x-ms-client-request-id": [
+ "716f76fe-0842-4da4-b6c9-5c8647139cf4",
+ "716f76fe-0842-4da4-b6c9-5c8647139cf4"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11419"
+ ],
+ "x-ms-correlation-request-id": [
+ "70c472a5-5ba1-4f06-bb75-ea4c7b94ca6d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095505Z:70c472a5-5ba1-4f06-bb75-ea4c7b94ca6d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:05 GMT"
+ ],
+ "Content-Length": [
+ "1103"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT3.849933S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8d32043d-c026-4098-a06a-9481f21c7641"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c6c30b87-dc1d-45ff-8743-56690ed8032c"
+ ],
+ "x-ms-client-request-id": [
+ "8d32043d-c026-4098-a06a-9481f21c7641",
+ "8d32043d-c026-4098-a06a-9481f21c7641"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11418"
+ ],
+ "x-ms-correlation-request-id": [
+ "c6c30b87-dc1d-45ff-8743-56690ed8032c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095505Z:c6c30b87-dc1d-45ff-8743-56690ed8032c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:05 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT4.1468218S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c7b4808d-2cc1-4262-b270-6ada880f3103"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "32479665-1520-4d17-ae83-4180e0e9ea7e"
+ ],
+ "x-ms-client-request-id": [
+ "c7b4808d-2cc1-4262-b270-6ada880f3103",
+ "c7b4808d-2cc1-4262-b270-6ada880f3103"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11417"
+ ],
+ "x-ms-correlation-request-id": [
+ "32479665-1520-4d17-ae83-4180e0e9ea7e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095506Z:32479665-1520-4d17-ae83-4180e0e9ea7e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:05 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT4.4071071S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "87489d6d-f931-4d62-bb5a-dc24cb74bc28"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "85b997e7-4eb0-4dd1-a97f-12ff3a4b8644"
+ ],
+ "x-ms-client-request-id": [
+ "87489d6d-f931-4d62-bb5a-dc24cb74bc28",
+ "87489d6d-f931-4d62-bb5a-dc24cb74bc28"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11416"
+ ],
+ "x-ms-correlation-request-id": [
+ "85b997e7-4eb0-4dd1-a97f-12ff3a4b8644"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095506Z:85b997e7-4eb0-4dd1-a97f-12ff3a4b8644"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:06 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT4.9315079S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bb9502f4-13a2-4179-9869-888c80b4a0ce"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "45dea5f6-cbfa-4073-a532-1e195e675d2c"
+ ],
+ "x-ms-client-request-id": [
+ "bb9502f4-13a2-4179-9869-888c80b4a0ce",
+ "bb9502f4-13a2-4179-9869-888c80b4a0ce"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11415"
+ ],
+ "x-ms-correlation-request-id": [
+ "45dea5f6-cbfa-4073-a532-1e195e675d2c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095506Z:45dea5f6-cbfa-4073-a532-1e195e675d2c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:06 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT5.3702136S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d4867d2b-89e0-4c5e-ab9b-5cfd123b86ce"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "49ec2137-3fe5-437b-b55d-ea71b2623d1e"
+ ],
+ "x-ms-client-request-id": [
+ "d4867d2b-89e0-4c5e-ab9b-5cfd123b86ce",
+ "d4867d2b-89e0-4c5e-ab9b-5cfd123b86ce"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11414"
+ ],
+ "x-ms-correlation-request-id": [
+ "49ec2137-3fe5-437b-b55d-ea71b2623d1e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095507Z:49ec2137-3fe5-437b-b55d-ea71b2623d1e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:07 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT5.6625121S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3e865088-0f79-4436-9dd1-7a772ff8cc43"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e7153a80-68f8-45f6-be21-531da71f70b7"
+ ],
+ "x-ms-client-request-id": [
+ "3e865088-0f79-4436-9dd1-7a772ff8cc43",
+ "3e865088-0f79-4436-9dd1-7a772ff8cc43"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11413"
+ ],
+ "x-ms-correlation-request-id": [
+ "e7153a80-68f8-45f6-be21-531da71f70b7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095507Z:e7153a80-68f8-45f6-be21-531da71f70b7"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:07 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT5.9171073S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "85aaaf23-3ed3-43ea-8072-4eb2ebfe2e3e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c9f6f595-4598-4f75-a0e5-0eb2ffd5acb5"
+ ],
+ "x-ms-client-request-id": [
+ "85aaaf23-3ed3-43ea-8072-4eb2ebfe2e3e",
+ "85aaaf23-3ed3-43ea-8072-4eb2ebfe2e3e"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11412"
+ ],
+ "x-ms-correlation-request-id": [
+ "c9f6f595-4598-4f75-a0e5-0eb2ffd5acb5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095507Z:c9f6f595-4598-4f75-a0e5-0eb2ffd5acb5"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:07 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT6.2260159S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a1a92b6a-cc46-4883-89ea-9201367309db"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "412d82ad-ec1b-4d28-b147-a0e4f29e7a92"
+ ],
+ "x-ms-client-request-id": [
+ "a1a92b6a-cc46-4883-89ea-9201367309db",
+ "a1a92b6a-cc46-4883-89ea-9201367309db"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11411"
+ ],
+ "x-ms-correlation-request-id": [
+ "412d82ad-ec1b-4d28-b147-a0e4f29e7a92"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095508Z:412d82ad-ec1b-4d28-b147-a0e4f29e7a92"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:07 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT6.4750364S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "02ca3ba6-f2fe-4cb9-9f77-3ad6ca0b33b2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "915feb59-ff0d-4cbd-97bc-cc1d5b1d779d"
+ ],
+ "x-ms-client-request-id": [
+ "02ca3ba6-f2fe-4cb9-9f77-3ad6ca0b33b2",
+ "02ca3ba6-f2fe-4cb9-9f77-3ad6ca0b33b2"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11410"
+ ],
+ "x-ms-correlation-request-id": [
+ "915feb59-ff0d-4cbd-97bc-cc1d5b1d779d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095508Z:915feb59-ff0d-4cbd-97bc-cc1d5b1d779d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:08 GMT"
+ ],
+ "Content-Length": [
+ "1103"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT6.948398S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5843796b-b2f8-4b61-aba0-573f86d1fc15"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "302d1b57-0bb3-489a-97ec-6e33b399f632"
+ ],
+ "x-ms-client-request-id": [
+ "5843796b-b2f8-4b61-aba0-573f86d1fc15",
+ "5843796b-b2f8-4b61-aba0-573f86d1fc15"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11409"
+ ],
+ "x-ms-correlation-request-id": [
+ "302d1b57-0bb3-489a-97ec-6e33b399f632"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095509Z:302d1b57-0bb3-489a-97ec-6e33b399f632"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:09 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT7.7308197S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a26c6fe6-2c13-4c78-ba8e-b8208dc4b2e0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "90a3cc46-9e10-40ee-8aee-57b0ea77cecc"
+ ],
+ "x-ms-client-request-id": [
+ "a26c6fe6-2c13-4c78-ba8e-b8208dc4b2e0",
+ "a26c6fe6-2c13-4c78-ba8e-b8208dc4b2e0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11408"
+ ],
+ "x-ms-correlation-request-id": [
+ "90a3cc46-9e10-40ee-8aee-57b0ea77cecc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095510Z:90a3cc46-9e10-40ee-8aee-57b0ea77cecc"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:09 GMT"
+ ],
+ "Content-Length": [
+ "1103"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT8.445904S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4cfb145c-6659-4b07-b481-42efe9d2ada2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "b0b4a976-eaf5-4ac9-9cb7-e79fd9f36caf"
+ ],
+ "x-ms-client-request-id": [
+ "4cfb145c-6659-4b07-b481-42efe9d2ada2",
+ "4cfb145c-6659-4b07-b481-42efe9d2ada2"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11407"
+ ],
+ "x-ms-correlation-request-id": [
+ "b0b4a976-eaf5-4ac9-9cb7-e79fd9f36caf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095510Z:b0b4a976-eaf5-4ac9-9cb7-e79fd9f36caf"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:10 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT8.6792226S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "014fecb5-d23a-4547-af4d-6b29f11db2bb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "6ddd4fac-4e58-4cba-ae6e-cb21c3ceb6d1"
+ ],
+ "x-ms-client-request-id": [
+ "014fecb5-d23a-4547-af4d-6b29f11db2bb",
+ "014fecb5-d23a-4547-af4d-6b29f11db2bb"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11406"
+ ],
+ "x-ms-correlation-request-id": [
+ "6ddd4fac-4e58-4cba-ae6e-cb21c3ceb6d1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095510Z:6ddd4fac-4e58-4cba-ae6e-cb21c3ceb6d1"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:10 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT8.9646663S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "72703ba6-50b3-4164-8446-ae16d10afbd3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "a180fb4d-4aa2-4287-9c5e-17237d110386"
+ ],
+ "x-ms-client-request-id": [
+ "72703ba6-50b3-4164-8446-ae16d10afbd3",
+ "72703ba6-50b3-4164-8446-ae16d10afbd3"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11405"
+ ],
+ "x-ms-correlation-request-id": [
+ "a180fb4d-4aa2-4287-9c5e-17237d110386"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095510Z:a180fb4d-4aa2-4287-9c5e-17237d110386"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:10 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT9.2104918S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "647163df-eb6b-4b43-b7f1-e34e08f20a8c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "1024e5eb-57c1-4bdb-8d97-99c9b78eac94"
+ ],
+ "x-ms-client-request-id": [
+ "647163df-eb6b-4b43-b7f1-e34e08f20a8c",
+ "647163df-eb6b-4b43-b7f1-e34e08f20a8c"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11404"
+ ],
+ "x-ms-correlation-request-id": [
+ "1024e5eb-57c1-4bdb-8d97-99c9b78eac94"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095511Z:1024e5eb-57c1-4bdb-8d97-99c9b78eac94"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:10 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT9.5438645S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8738aea3-cc88-480e-b405-0b90ca412592"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f6cfb92e-c9d4-4a1a-9912-755ab20096fb"
+ ],
+ "x-ms-client-request-id": [
+ "8738aea3-cc88-480e-b405-0b90ca412592",
+ "8738aea3-cc88-480e-b405-0b90ca412592"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11403"
+ ],
+ "x-ms-correlation-request-id": [
+ "f6cfb92e-c9d4-4a1a-9912-755ab20096fb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095511Z:f6cfb92e-c9d4-4a1a-9912-755ab20096fb"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:11 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT10.108614S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d162cc0b-c0f1-409f-a637-b0a7aa64e8e1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f7cbbd3b-54e8-417b-b21e-75cba72d1939"
+ ],
+ "x-ms-client-request-id": [
+ "d162cc0b-c0f1-409f-a637-b0a7aa64e8e1",
+ "d162cc0b-c0f1-409f-a637-b0a7aa64e8e1"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11402"
+ ],
+ "x-ms-correlation-request-id": [
+ "f7cbbd3b-54e8-417b-b21e-75cba72d1939"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095512Z:f7cbbd3b-54e8-417b-b21e-75cba72d1939"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:11 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT10.5632846S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a17aa11f-c986-4b67-9240-0d3862eb8a65"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "4c55e045-e248-432f-919d-35c84ebb20a6"
+ ],
+ "x-ms-client-request-id": [
+ "a17aa11f-c986-4b67-9240-0d3862eb8a65",
+ "a17aa11f-c986-4b67-9240-0d3862eb8a65"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11401"
+ ],
+ "x-ms-correlation-request-id": [
+ "4c55e045-e248-432f-919d-35c84ebb20a6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095512Z:4c55e045-e248-432f-919d-35c84ebb20a6"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:12 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT10.8009878S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5fd1515b-9f56-4d63-ba3d-a75388a44980"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "59684006-65fd-4640-a3fc-007d9049c125"
+ ],
+ "x-ms-client-request-id": [
+ "5fd1515b-9f56-4d63-ba3d-a75388a44980",
+ "5fd1515b-9f56-4d63-ba3d-a75388a44980"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11400"
+ ],
+ "x-ms-correlation-request-id": [
+ "59684006-65fd-4640-a3fc-007d9049c125"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095512Z:59684006-65fd-4640-a3fc-007d9049c125"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:12 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT11.0526218S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5d99ebf7-3feb-46ea-b710-8de092c494e6"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "b4f5e593-83b6-4c3b-ab66-8ae170bdd1d8"
+ ],
+ "x-ms-client-request-id": [
+ "5d99ebf7-3feb-46ea-b710-8de092c494e6",
+ "5d99ebf7-3feb-46ea-b710-8de092c494e6"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11399"
+ ],
+ "x-ms-correlation-request-id": [
+ "b4f5e593-83b6-4c3b-ab66-8ae170bdd1d8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095512Z:b4f5e593-83b6-4c3b-ab66-8ae170bdd1d8"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:12 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT11.3382836S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a2eb9476-879f-4b41-bc1f-dca5911d9d62"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "2979328e-736d-418d-8a03-877f45c9c738"
+ ],
+ "x-ms-client-request-id": [
+ "a2eb9476-879f-4b41-bc1f-dca5911d9d62",
+ "a2eb9476-879f-4b41-bc1f-dca5911d9d62"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11398"
+ ],
+ "x-ms-correlation-request-id": [
+ "2979328e-736d-418d-8a03-877f45c9c738"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095513Z:2979328e-736d-418d-8a03-877f45c9c738"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:13 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT11.7209507S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2bd133db-8e83-474d-b6ab-bc9235ee8c5c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "6176807b-6b9f-455c-a4be-01619976df3b"
+ ],
+ "x-ms-client-request-id": [
+ "2bd133db-8e83-474d-b6ab-bc9235ee8c5c",
+ "2bd133db-8e83-474d-b6ab-bc9235ee8c5c"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11397"
+ ],
+ "x-ms-correlation-request-id": [
+ "6176807b-6b9f-455c-a4be-01619976df3b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095513Z:6176807b-6b9f-455c-a4be-01619976df3b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:13 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT12.2284689S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "aba7f48c-1269-4ebf-8200-d13b8c5afd5c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "7a022e04-ef93-435a-9de0-bc8eaf59351d"
+ ],
+ "x-ms-client-request-id": [
+ "aba7f48c-1269-4ebf-8200-d13b8c5afd5c",
+ "aba7f48c-1269-4ebf-8200-d13b8c5afd5c"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11396"
+ ],
+ "x-ms-correlation-request-id": [
+ "7a022e04-ef93-435a-9de0-bc8eaf59351d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095514Z:7a022e04-ef93-435a-9de0-bc8eaf59351d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:13 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT12.6016626S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "03de3b2d-f943-4b38-9fc5-fdf5055e3fe2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "55994cba-7aea-4385-9796-ce0550a5b532"
+ ],
+ "x-ms-client-request-id": [
+ "03de3b2d-f943-4b38-9fc5-fdf5055e3fe2",
+ "03de3b2d-f943-4b38-9fc5-fdf5055e3fe2"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11395"
+ ],
+ "x-ms-correlation-request-id": [
+ "55994cba-7aea-4385-9796-ce0550a5b532"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095514Z:55994cba-7aea-4385-9796-ce0550a5b532"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:14 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT12.8520531S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "877ecb9f-8393-4d60-bdd2-4df29723c1a1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f95c2091-dabd-45a8-b534-bdd514fbe777"
+ ],
+ "x-ms-client-request-id": [
+ "877ecb9f-8393-4d60-bdd2-4df29723c1a1",
+ "877ecb9f-8393-4d60-bdd2-4df29723c1a1"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11394"
+ ],
+ "x-ms-correlation-request-id": [
+ "f95c2091-dabd-45a8-b534-bdd514fbe777"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095514Z:f95c2091-dabd-45a8-b534-bdd514fbe777"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:14 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT13.0876217S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "05a4db03-cbd1-4afd-987a-9176ceb20b45"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c3646ef2-c940-465d-9f60-fe85859ba44d"
+ ],
+ "x-ms-client-request-id": [
+ "05a4db03-cbd1-4afd-987a-9176ceb20b45",
+ "05a4db03-cbd1-4afd-987a-9176ceb20b45"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11393"
+ ],
+ "x-ms-correlation-request-id": [
+ "c3646ef2-c940-465d-9f60-fe85859ba44d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095514Z:c3646ef2-c940-465d-9f60-fe85859ba44d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:14 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT13.3457534S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5b2060ec-d5e7-4aaf-bbf9-4ec2b65483a8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "4446b74d-c1a0-432f-8369-7f0e3b25df1d"
+ ],
+ "x-ms-client-request-id": [
+ "5b2060ec-d5e7-4aaf-bbf9-4ec2b65483a8",
+ "5b2060ec-d5e7-4aaf-bbf9-4ec2b65483a8"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11392"
+ ],
+ "x-ms-correlation-request-id": [
+ "4446b74d-c1a0-432f-8369-7f0e3b25df1d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095515Z:4446b74d-c1a0-432f-8369-7f0e3b25df1d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:14 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT13.6020851S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5b282ec6-f35e-41d0-bea4-41b8b12886ab"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "dd10687c-16fc-488d-9b72-17d051474c63"
+ ],
+ "x-ms-client-request-id": [
+ "5b282ec6-f35e-41d0-bea4-41b8b12886ab",
+ "5b282ec6-f35e-41d0-bea4-41b8b12886ab"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11391"
+ ],
+ "x-ms-correlation-request-id": [
+ "dd10687c-16fc-488d-9b72-17d051474c63"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095515Z:dd10687c-16fc-488d-9b72-17d051474c63"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:15 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT14.2595242S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ad84d1e4-2945-485d-9c41-b9427a978ac1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "ff55b2d0-0fd8-44cf-91dd-db02dbeefde0"
+ ],
+ "x-ms-client-request-id": [
+ "ad84d1e4-2945-485d-9c41-b9427a978ac1",
+ "ad84d1e4-2945-485d-9c41-b9427a978ac1"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11390"
+ ],
+ "x-ms-correlation-request-id": [
+ "ff55b2d0-0fd8-44cf-91dd-db02dbeefde0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095516Z:ff55b2d0-0fd8-44cf-91dd-db02dbeefde0"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:15 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT14.6056481S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "428a6454-4bf0-47be-91ab-b7a460d8610d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e3bac3df-750f-4da9-b32e-27be70208c5d"
+ ],
+ "x-ms-client-request-id": [
+ "428a6454-4bf0-47be-91ab-b7a460d8610d",
+ "428a6454-4bf0-47be-91ab-b7a460d8610d"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11389"
+ ],
+ "x-ms-correlation-request-id": [
+ "e3bac3df-750f-4da9-b32e-27be70208c5d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095516Z:e3bac3df-750f-4da9-b32e-27be70208c5d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:16 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT14.8858813S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "79350d5a-e098-41b5-896b-5d8de7a0236c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "36f8ca00-e14a-485c-8697-61e9a86d8317"
+ ],
+ "x-ms-client-request-id": [
+ "79350d5a-e098-41b5-896b-5d8de7a0236c",
+ "79350d5a-e098-41b5-896b-5d8de7a0236c"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11388"
+ ],
+ "x-ms-correlation-request-id": [
+ "36f8ca00-e14a-485c-8697-61e9a86d8317"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095516Z:36f8ca00-e14a-485c-8697-61e9a86d8317"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:16 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT15.1210399S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fbe2ab27-01ef-4955-88ff-68450daf8640"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c68e9a70-c835-4261-a8a7-0ba4e71082e2"
+ ],
+ "x-ms-client-request-id": [
+ "fbe2ab27-01ef-4955-88ff-68450daf8640",
+ "fbe2ab27-01ef-4955-88ff-68450daf8640"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11387"
+ ],
+ "x-ms-correlation-request-id": [
+ "c68e9a70-c835-4261-a8a7-0ba4e71082e2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095516Z:c68e9a70-c835-4261-a8a7-0ba4e71082e2"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:16 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT15.3639383S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fdd8b7c1-19c3-4baa-9438-b35afb0fb9a3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "0a33a47e-4456-462c-86cc-a03f79051003"
+ ],
+ "x-ms-client-request-id": [
+ "fdd8b7c1-19c3-4baa-9438-b35afb0fb9a3",
+ "fdd8b7c1-19c3-4baa-9438-b35afb0fb9a3"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11386"
+ ],
+ "x-ms-correlation-request-id": [
+ "0a33a47e-4456-462c-86cc-a03f79051003"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095517Z:0a33a47e-4456-462c-86cc-a03f79051003"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:17 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT15.7230942S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6686aa0c-a456-447f-acd5-a702ff1f6df5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "1ee57492-9808-42b2-aa6a-63ff178211f0"
+ ],
+ "x-ms-client-request-id": [
+ "6686aa0c-a456-447f-acd5-a702ff1f6df5",
+ "6686aa0c-a456-447f-acd5-a702ff1f6df5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11385"
+ ],
+ "x-ms-correlation-request-id": [
+ "1ee57492-9808-42b2-aa6a-63ff178211f0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095517Z:1ee57492-9808-42b2-aa6a-63ff178211f0"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:17 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT16.3220469S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0a04c05f-dcc4-42f8-b700-99c237206562"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c4150de4-01cc-4f37-971f-8f1ba2533e59"
+ ],
+ "x-ms-client-request-id": [
+ "0a04c05f-dcc4-42f8-b700-99c237206562",
+ "0a04c05f-dcc4-42f8-b700-99c237206562"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11384"
+ ],
+ "x-ms-correlation-request-id": [
+ "c4150de4-01cc-4f37-971f-8f1ba2533e59"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095518Z:c4150de4-01cc-4f37-971f-8f1ba2533e59"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:18 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT16.7706844S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e24a821c-bdeb-4bf4-b832-c9ba4142f457"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "6fc3c5b3-95ec-4f6b-babc-4b5dc9d363f5"
+ ],
+ "x-ms-client-request-id": [
+ "e24a821c-bdeb-4bf4-b832-c9ba4142f457",
+ "e24a821c-bdeb-4bf4-b832-c9ba4142f457"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11383"
+ ],
+ "x-ms-correlation-request-id": [
+ "6fc3c5b3-95ec-4f6b-babc-4b5dc9d363f5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095518Z:6fc3c5b3-95ec-4f6b-babc-4b5dc9d363f5"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:18 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT17.0050627S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "de905a3b-2e7d-4dfd-a5be-51e854e15d71"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "98bf707e-654f-4d45-b98e-9b0aef64cfc0"
+ ],
+ "x-ms-client-request-id": [
+ "de905a3b-2e7d-4dfd-a5be-51e854e15d71",
+ "de905a3b-2e7d-4dfd-a5be-51e854e15d71"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11382"
+ ],
+ "x-ms-correlation-request-id": [
+ "98bf707e-654f-4d45-b98e-9b0aef64cfc0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095518Z:98bf707e-654f-4d45-b98e-9b0aef64cfc0"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:18 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT17.2700182S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "21398186-4f71-43bc-9e24-77ad53257f2a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "1abea875-d02f-4d2f-b99c-4ef81c06cfd9"
+ ],
+ "x-ms-client-request-id": [
+ "21398186-4f71-43bc-9e24-77ad53257f2a",
+ "21398186-4f71-43bc-9e24-77ad53257f2a"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11381"
+ ],
+ "x-ms-correlation-request-id": [
+ "1abea875-d02f-4d2f-b99c-4ef81c06cfd9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095519Z:1abea875-d02f-4d2f-b99c-4ef81c06cfd9"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:18 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT17.5675794S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "357b7651-bfc2-44e2-822b-625b6eaac46b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "5c3c0ed0-0541-4aae-90b4-5d4dbec88887"
+ ],
+ "x-ms-client-request-id": [
+ "357b7651-bfc2-44e2-822b-625b6eaac46b",
+ "357b7651-bfc2-44e2-822b-625b6eaac46b"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11380"
+ ],
+ "x-ms-correlation-request-id": [
+ "5c3c0ed0-0541-4aae-90b4-5d4dbec88887"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095519Z:5c3c0ed0-0541-4aae-90b4-5d4dbec88887"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:19 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT17.8800914S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d11ed108-1d50-4c38-93d8-8e8e5717bb06"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "16bfac44-61d1-4128-aa78-3a3b47f606de"
+ ],
+ "x-ms-client-request-id": [
+ "d11ed108-1d50-4c38-93d8-8e8e5717bb06",
+ "d11ed108-1d50-4c38-93d8-8e8e5717bb06"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11379"
+ ],
+ "x-ms-correlation-request-id": [
+ "16bfac44-61d1-4128-aa78-3a3b47f606de"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095520Z:16bfac44-61d1-4128-aa78-3a3b47f606de"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:19 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT18.4738636S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "972bc907-eeb5-4eb8-b11c-78330f77beed"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "0d5af63d-06ff-4858-98e1-f997b32417b0"
+ ],
+ "x-ms-client-request-id": [
+ "972bc907-eeb5-4eb8-b11c-78330f77beed",
+ "972bc907-eeb5-4eb8-b11c-78330f77beed"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11378"
+ ],
+ "x-ms-correlation-request-id": [
+ "0d5af63d-06ff-4858-98e1-f997b32417b0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095520Z:0d5af63d-06ff-4858-98e1-f997b32417b0"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:20 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT18.9895021S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f6a68f0b-4353-48ac-a840-7ac6b0ce5db0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "59ea0825-6a6c-433a-b500-18df9c572210"
+ ],
+ "x-ms-client-request-id": [
+ "f6a68f0b-4353-48ac-a840-7ac6b0ce5db0",
+ "f6a68f0b-4353-48ac-a840-7ac6b0ce5db0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11377"
+ ],
+ "x-ms-correlation-request-id": [
+ "59ea0825-6a6c-433a-b500-18df9c572210"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095520Z:59ea0825-6a6c-433a-b500-18df9c572210"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:20 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT19.3081325S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "312b3f4b-b304-4e15-a598-0b58c663b763"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "d45f36c6-ea01-4d94-8914-5d324cc2f4bc"
+ ],
+ "x-ms-client-request-id": [
+ "312b3f4b-b304-4e15-a598-0b58c663b763",
+ "312b3f4b-b304-4e15-a598-0b58c663b763"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11376"
+ ],
+ "x-ms-correlation-request-id": [
+ "d45f36c6-ea01-4d94-8914-5d324cc2f4bc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095521Z:d45f36c6-ea01-4d94-8914-5d324cc2f4bc"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:20 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT19.5436415S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "242ac5b6-7c0d-4fa2-b70e-849c3b6048df"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "9450b9cc-76b7-45bb-929f-060b35c85cb6"
+ ],
+ "x-ms-client-request-id": [
+ "242ac5b6-7c0d-4fa2-b70e-849c3b6048df",
+ "242ac5b6-7c0d-4fa2-b70e-849c3b6048df"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11375"
+ ],
+ "x-ms-correlation-request-id": [
+ "9450b9cc-76b7-45bb-929f-060b35c85cb6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095521Z:9450b9cc-76b7-45bb-929f-060b35c85cb6"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:21 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT19.9895929S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6860a4e5-4bd5-42f0-942e-78404a311b12"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "85ffbc35-7767-4951-b44f-8e767c0f8e8b"
+ ],
+ "x-ms-client-request-id": [
+ "6860a4e5-4bd5-42f0-942e-78404a311b12",
+ "6860a4e5-4bd5-42f0-942e-78404a311b12"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11374"
+ ],
+ "x-ms-correlation-request-id": [
+ "85ffbc35-7767-4951-b44f-8e767c0f8e8b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095521Z:85ffbc35-7767-4951-b44f-8e767c0f8e8b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:21 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT20.2467807S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "38ee74f2-c5cc-4666-9aff-0b855f1faa1e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "4ca2a74f-7263-466c-b8ab-92005d6a7ca1"
+ ],
+ "x-ms-client-request-id": [
+ "38ee74f2-c5cc-4666-9aff-0b855f1faa1e",
+ "38ee74f2-c5cc-4666-9aff-0b855f1faa1e"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11373"
+ ],
+ "x-ms-correlation-request-id": [
+ "4ca2a74f-7263-466c-b8ab-92005d6a7ca1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095522Z:4ca2a74f-7263-466c-b8ab-92005d6a7ca1"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:21 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT20.5677227S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "41eb6e00-b289-4012-94fc-7aaffc04e746"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "b4c134d7-fedc-47fd-9dac-989daf26c134"
+ ],
+ "x-ms-client-request-id": [
+ "41eb6e00-b289-4012-94fc-7aaffc04e746",
+ "41eb6e00-b289-4012-94fc-7aaffc04e746"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11372"
+ ],
+ "x-ms-correlation-request-id": [
+ "b4c134d7-fedc-47fd-9dac-989daf26c134"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095522Z:b4c134d7-fedc-47fd-9dac-989daf26c134"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:22 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.0677369S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2fae183c-fcc4-4043-9208-582caf9fdbee"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "2d4fc02f-3c94-40c5-bb7a-455bf62696c6"
+ ],
+ "x-ms-client-request-id": [
+ "2fae183c-fcc4-4043-9208-582caf9fdbee",
+ "2fae183c-fcc4-4043-9208-582caf9fdbee"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11371"
+ ],
+ "x-ms-correlation-request-id": [
+ "2d4fc02f-3c94-40c5-bb7a-455bf62696c6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095523Z:2d4fc02f-3c94-40c5-bb7a-455bf62696c6"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:22 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.4466827S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7053cef6-116b-474b-b774-0e4ee2806590"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "86e5a7eb-d7de-4ed2-b97f-0a98171fbfca"
+ ],
+ "x-ms-client-request-id": [
+ "7053cef6-116b-474b-b774-0e4ee2806590",
+ "7053cef6-116b-474b-b774-0e4ee2806590"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11370"
+ ],
+ "x-ms-correlation-request-id": [
+ "86e5a7eb-d7de-4ed2-b97f-0a98171fbfca"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095523Z:86e5a7eb-d7de-4ed2-b97f-0a98171fbfca"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:23 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.6810687S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "611f668e-4183-4a33-be40-3dd08b53d8d0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "b0b527ca-ca20-4404-a14f-fd5ebdc0c7b7"
+ ],
+ "x-ms-client-request-id": [
+ "611f668e-4183-4a33-be40-3dd08b53d8d0",
+ "611f668e-4183-4a33-be40-3dd08b53d8d0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11369"
+ ],
+ "x-ms-correlation-request-id": [
+ "b0b527ca-ca20-4404-a14f-fd5ebdc0c7b7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095523Z:b0b527ca-ca20-4404-a14f-fd5ebdc0c7b7"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:23 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.9310764S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "597c7105-cc85-4172-9fdb-70588b9a4c00"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "4e0c0ec6-4374-4828-b915-5aa4934661eb"
+ ],
+ "x-ms-client-request-id": [
+ "597c7105-cc85-4172-9fdb-70588b9a4c00",
+ "597c7105-cc85-4172-9fdb-70588b9a4c00"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11368"
+ ],
+ "x-ms-correlation-request-id": [
+ "4e0c0ec6-4374-4828-b915-5aa4934661eb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095523Z:4e0c0ec6-4374-4828-b915-5aa4934661eb"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:23 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT22.1498814S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a429649f-c50e-4eef-bcfc-7a3b9a35762b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "72badf3a-f0e2-4789-9da3-3570ee1f8ffc"
+ ],
+ "x-ms-client-request-id": [
+ "a429649f-c50e-4eef-bcfc-7a3b9a35762b",
+ "a429649f-c50e-4eef-bcfc-7a3b9a35762b"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11367"
+ ],
+ "x-ms-correlation-request-id": [
+ "72badf3a-f0e2-4789-9da3-3570ee1f8ffc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095524Z:72badf3a-f0e2-4789-9da3-3570ee1f8ffc"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:23 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT22.4423402S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "033e34d6-c4af-4636-9753-005fa7413ce2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "774680a4-e5a8-493e-b745-ec355791c5dd"
+ ],
+ "x-ms-client-request-id": [
+ "033e34d6-c4af-4636-9753-005fa7413ce2",
+ "033e34d6-c4af-4636-9753-005fa7413ce2"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11366"
+ ],
+ "x-ms-correlation-request-id": [
+ "774680a4-e5a8-493e-b745-ec355791c5dd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095524Z:774680a4-e5a8-493e-b745-ec355791c5dd"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:24 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT22.7592399S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c72a02ad-8f28-4f13-889b-a16c3008f75c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "28ea29f3-6807-41cf-b77c-1c25f756d7f9"
+ ],
+ "x-ms-client-request-id": [
+ "c72a02ad-8f28-4f13-889b-a16c3008f75c",
+ "c72a02ad-8f28-4f13-889b-a16c3008f75c"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11365"
+ ],
+ "x-ms-correlation-request-id": [
+ "28ea29f3-6807-41cf-b77c-1c25f756d7f9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095524Z:28ea29f3-6807-41cf-b77c-1c25f756d7f9"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:24 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT23.2246405S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "265f2f6c-0b3e-4236-b75f-f3e283644d3d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "b1150587-df8f-4c77-8c3d-a1f0ea928fee"
+ ],
+ "x-ms-client-request-id": [
+ "265f2f6c-0b3e-4236-b75f-f3e283644d3d",
+ "265f2f6c-0b3e-4236-b75f-f3e283644d3d"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11364"
+ ],
+ "x-ms-correlation-request-id": [
+ "b1150587-df8f-4c77-8c3d-a1f0ea928fee"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095525Z:b1150587-df8f-4c77-8c3d-a1f0ea928fee"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:24 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT23.5375907S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7644ef5c-c6c3-4006-a9df-745613f68f91"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "1df4a297-2140-4934-b128-33b902ee2fbd"
+ ],
+ "x-ms-client-request-id": [
+ "7644ef5c-c6c3-4006-a9df-745613f68f91",
+ "7644ef5c-c6c3-4006-a9df-745613f68f91"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11363"
+ ],
+ "x-ms-correlation-request-id": [
+ "1df4a297-2140-4934-b128-33b902ee2fbd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095525Z:1df4a297-2140-4934-b128-33b902ee2fbd"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:25 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT23.7958462S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3a4463c1-3c23-4e94-83be-3541aaf01055"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "b70245bb-25cd-4471-9157-88a426f25637"
+ ],
+ "x-ms-client-request-id": [
+ "3a4463c1-3c23-4e94-83be-3541aaf01055",
+ "3a4463c1-3c23-4e94-83be-3541aaf01055"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11362"
+ ],
+ "x-ms-correlation-request-id": [
+ "b70245bb-25cd-4471-9157-88a426f25637"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095525Z:b70245bb-25cd-4471-9157-88a426f25637"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:25 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT24.123987S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b4fd5d03-52a8-4aac-bc48-84875d5d2d31"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "05bc5757-cde9-4ac5-8fff-fa6fa2dc54a8"
+ ],
+ "x-ms-client-request-id": [
+ "b4fd5d03-52a8-4aac-bc48-84875d5d2d31",
+ "b4fd5d03-52a8-4aac-bc48-84875d5d2d31"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11361"
+ ],
+ "x-ms-correlation-request-id": [
+ "05bc5757-cde9-4ac5-8fff-fa6fa2dc54a8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095526Z:05bc5757-cde9-4ac5-8fff-fa6fa2dc54a8"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:25 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT24.5401233S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "40948f25-f863-4ba9-88fb-57b5f0590d5e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c5e43ba5-90a4-450d-ac49-52d03b365f46"
+ ],
+ "x-ms-client-request-id": [
+ "40948f25-f863-4ba9-88fb-57b5f0590d5e",
+ "40948f25-f863-4ba9-88fb-57b5f0590d5e"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11360"
+ ],
+ "x-ms-correlation-request-id": [
+ "c5e43ba5-90a4-450d-ac49-52d03b365f46"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095526Z:c5e43ba5-90a4-450d-ac49-52d03b365f46"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:26 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT25.2991343S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ce270450-d6bd-44a6-8fc5-0fa9eaef4e28"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "2c86de7f-5431-4a4b-ac01-e2ece65d6e86"
+ ],
+ "x-ms-client-request-id": [
+ "ce270450-d6bd-44a6-8fc5-0fa9eaef4e28",
+ "ce270450-d6bd-44a6-8fc5-0fa9eaef4e28"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11359"
+ ],
+ "x-ms-correlation-request-id": [
+ "2c86de7f-5431-4a4b-ac01-e2ece65d6e86"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095527Z:2c86de7f-5431-4a4b-ac01-e2ece65d6e86"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:27 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT25.819259S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3f0d4f5d-f5f1-4211-bfcb-3d55679e04fb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "027aeadf-b5be-4b02-ab82-d07c348ff4c7"
+ ],
+ "x-ms-client-request-id": [
+ "3f0d4f5d-f5f1-4211-bfcb-3d55679e04fb",
+ "3f0d4f5d-f5f1-4211-bfcb-3d55679e04fb"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11358"
+ ],
+ "x-ms-correlation-request-id": [
+ "027aeadf-b5be-4b02-ab82-d07c348ff4c7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095527Z:027aeadf-b5be-4b02-ab82-d07c348ff4c7"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:27 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT26.1317656S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4d20085e-4ef6-4dec-ac06-796f0a852991"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "28ee5f70-51e2-439d-aebb-7f732353629e"
+ ],
+ "x-ms-client-request-id": [
+ "4d20085e-4ef6-4dec-ac06-796f0a852991",
+ "4d20085e-4ef6-4dec-ac06-796f0a852991"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11357"
+ ],
+ "x-ms-correlation-request-id": [
+ "28ee5f70-51e2-439d-aebb-7f732353629e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095528Z:28ee5f70-51e2-439d-aebb-7f732353629e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:27 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT26.5693054S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f2853329-14e6-47e0-8764-7a3810a94641"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e92e02fa-589b-41fe-96cf-0c7996dded93"
+ ],
+ "x-ms-client-request-id": [
+ "f2853329-14e6-47e0-8764-7a3810a94641",
+ "f2853329-14e6-47e0-8764-7a3810a94641"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11356"
+ ],
+ "x-ms-correlation-request-id": [
+ "e92e02fa-589b-41fe-96cf-0c7996dded93"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095528Z:e92e02fa-589b-41fe-96cf-0c7996dded93"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:28 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT26.9094152S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b76fc059-0aa6-4dc2-86c5-dd7220acbaca"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "32555dd8-86ea-480c-83cd-2975b362e937"
+ ],
+ "x-ms-client-request-id": [
+ "b76fc059-0aa6-4dc2-86c5-dd7220acbaca",
+ "b76fc059-0aa6-4dc2-86c5-dd7220acbaca"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11355"
+ ],
+ "x-ms-correlation-request-id": [
+ "32555dd8-86ea-480c-83cd-2975b362e937"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095528Z:32555dd8-86ea-480c-83cd-2975b362e937"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:28 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT27.2724708S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "85a9073c-4a0a-4b02-8b82-04aa79b00d5d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "8a6c9450-f92c-4c5c-92eb-1d53b72b817b"
+ ],
+ "x-ms-client-request-id": [
+ "85a9073c-4a0a-4b02-8b82-04aa79b00d5d",
+ "85a9073c-4a0a-4b02-8b82-04aa79b00d5d"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11354"
+ ],
+ "x-ms-correlation-request-id": [
+ "8a6c9450-f92c-4c5c-92eb-1d53b72b817b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095529Z:8a6c9450-f92c-4c5c-92eb-1d53b72b817b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:28 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT27.518811S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "eb0e69b6-d36e-4cdb-a32e-b4f78b14e960"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "4224caa8-8f63-475a-b0ac-fb8e6de5e3f4"
+ ],
+ "x-ms-client-request-id": [
+ "eb0e69b6-d36e-4cdb-a32e-b4f78b14e960",
+ "eb0e69b6-d36e-4cdb-a32e-b4f78b14e960"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11353"
+ ],
+ "x-ms-correlation-request-id": [
+ "4224caa8-8f63-475a-b0ac-fb8e6de5e3f4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095529Z:4224caa8-8f63-475a-b0ac-fb8e6de5e3f4"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:29 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT27.8037424S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "dcf90d35-f8b2-4b5e-806a-f8b8072bd41e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "d653e1aa-5f6b-491d-9ca6-ac4964313079"
+ ],
+ "x-ms-client-request-id": [
+ "dcf90d35-f8b2-4b5e-806a-f8b8072bd41e",
+ "dcf90d35-f8b2-4b5e-806a-f8b8072bd41e"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11352"
+ ],
+ "x-ms-correlation-request-id": [
+ "d653e1aa-5f6b-491d-9ca6-ac4964313079"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095529Z:d653e1aa-5f6b-491d-9ca6-ac4964313079"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:29 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT28.0671777S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "972e237c-0379-46fe-bb94-343a9d4da088"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "14faef01-1535-4bcc-a52c-aa82b83b5a59"
+ ],
+ "x-ms-client-request-id": [
+ "972e237c-0379-46fe-bb94-343a9d4da088",
+ "972e237c-0379-46fe-bb94-343a9d4da088"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11351"
+ ],
+ "x-ms-correlation-request-id": [
+ "14faef01-1535-4bcc-a52c-aa82b83b5a59"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095529Z:14faef01-1535-4bcc-a52c-aa82b83b5a59"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:29 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT28.3000897S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cf7a5044-4f35-493b-a11d-c67389eb5d0f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "1630efe9-c028-47b2-a2e4-ad4cdb5cbba1"
+ ],
+ "x-ms-client-request-id": [
+ "cf7a5044-4f35-493b-a11d-c67389eb5d0f",
+ "cf7a5044-4f35-493b-a11d-c67389eb5d0f"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11350"
+ ],
+ "x-ms-correlation-request-id": [
+ "1630efe9-c028-47b2-a2e4-ad4cdb5cbba1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095530Z:1630efe9-c028-47b2-a2e4-ad4cdb5cbba1"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:29 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT28.5188474S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0b95cffb-24d4-442e-99cc-cd1db3e6054b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "a0d6c1b6-05f7-44b3-aa81-99c6dbb80af5"
+ ],
+ "x-ms-client-request-id": [
+ "0b95cffb-24d4-442e-99cc-cd1db3e6054b",
+ "0b95cffb-24d4-442e-99cc-cd1db3e6054b"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11349"
+ ],
+ "x-ms-correlation-request-id": [
+ "a0d6c1b6-05f7-44b3-aa81-99c6dbb80af5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095530Z:a0d6c1b6-05f7-44b3-aa81-99c6dbb80af5"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:30 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT28.8641592S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e4c5fe27-8817-41de-b622-332bfd231571"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "5d70678d-0c56-438f-8af2-a51ae05ab3ee"
+ ],
+ "x-ms-client-request-id": [
+ "e4c5fe27-8817-41de-b622-332bfd231571",
+ "e4c5fe27-8817-41de-b622-332bfd231571"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11348"
+ ],
+ "x-ms-correlation-request-id": [
+ "5d70678d-0c56-438f-8af2-a51ae05ab3ee"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095531Z:5d70678d-0c56-438f-8af2-a51ae05ab3ee"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:30 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT29.426695S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a76dcae2-7d8c-4b36-b24a-781334b103e0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "0cedae97-5b87-4add-91cb-989817ce37e3"
+ ],
+ "x-ms-client-request-id": [
+ "a76dcae2-7d8c-4b36-b24a-781334b103e0",
+ "a76dcae2-7d8c-4b36-b24a-781334b103e0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11347"
+ ],
+ "x-ms-correlation-request-id": [
+ "0cedae97-5b87-4add-91cb-989817ce37e3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095531Z:0cedae97-5b87-4add-91cb-989817ce37e3"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:31 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT29.8799084S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e93c377f-6f61-4847-83bb-794ec625eaa4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e803c38f-a771-4f7f-bec9-4d5561846aa3"
+ ],
+ "x-ms-client-request-id": [
+ "e93c377f-6f61-4847-83bb-794ec625eaa4",
+ "e93c377f-6f61-4847-83bb-794ec625eaa4"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11346"
+ ],
+ "x-ms-correlation-request-id": [
+ "e803c38f-a771-4f7f-bec9-4d5561846aa3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095531Z:e803c38f-a771-4f7f-bec9-4d5561846aa3"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:31 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT30.1143056S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "70f99ce2-72d7-4b1a-a0e5-887d15b6783e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "aff88938-3882-4b84-9ef5-3cd66c5d3959"
+ ],
+ "x-ms-client-request-id": [
+ "70f99ce2-72d7-4b1a-a0e5-887d15b6783e",
+ "70f99ce2-72d7-4b1a-a0e5-887d15b6783e"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11345"
+ ],
+ "x-ms-correlation-request-id": [
+ "aff88938-3882-4b84-9ef5-3cd66c5d3959"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095531Z:aff88938-3882-4b84-9ef5-3cd66c5d3959"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:31 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT30.3552692S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "26b5e3ba-ad01-4d96-84e4-d210c8ddaa9b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "1b437aae-049e-4d45-8d6c-dd80f21d5078"
+ ],
+ "x-ms-client-request-id": [
+ "26b5e3ba-ad01-4d96-84e4-d210c8ddaa9b",
+ "26b5e3ba-ad01-4d96-84e4-d210c8ddaa9b"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11344"
+ ],
+ "x-ms-correlation-request-id": [
+ "1b437aae-049e-4d45-8d6c-dd80f21d5078"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095532Z:1b437aae-049e-4d45-8d6c-dd80f21d5078"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:31 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT30.6619687S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3e79fed1-a5f3-477b-882e-392e9a215488"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e696178c-3ddc-4f0a-92d2-4414777cef9e"
+ ],
+ "x-ms-client-request-id": [
+ "3e79fed1-a5f3-477b-882e-392e9a215488",
+ "3e79fed1-a5f3-477b-882e-392e9a215488"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11343"
+ ],
+ "x-ms-correlation-request-id": [
+ "e696178c-3ddc-4f0a-92d2-4414777cef9e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095532Z:e696178c-3ddc-4f0a-92d2-4414777cef9e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:32 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT31.2557308S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "968c3bc5-b797-4c1f-9e4e-f2e042b5ce30"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "37e50c8b-750a-4067-a096-0113d4a5298f"
+ ],
+ "x-ms-client-request-id": [
+ "968c3bc5-b797-4c1f-9e4e-f2e042b5ce30",
+ "968c3bc5-b797-4c1f-9e4e-f2e042b5ce30"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11342"
+ ],
+ "x-ms-correlation-request-id": [
+ "37e50c8b-750a-4067-a096-0113d4a5298f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095533Z:37e50c8b-750a-4067-a096-0113d4a5298f"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:33 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT32.0526402S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a4fb41a1-6e31-4481-bed9-f739a0dbbe18"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "53e42609-9f21-4937-a3ca-24a822112b4e"
+ ],
+ "x-ms-client-request-id": [
+ "a4fb41a1-6e31-4481-bed9-f739a0dbbe18",
+ "a4fb41a1-6e31-4481-bed9-f739a0dbbe18"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11341"
+ ],
+ "x-ms-correlation-request-id": [
+ "53e42609-9f21-4937-a3ca-24a822112b4e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095533Z:53e42609-9f21-4937-a3ca-24a822112b4e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:33 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT32.3282907S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e057fc37-5d49-4819-aa6a-27768a586d7f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "8cbd7e03-e346-43af-a37c-1df27fea0b8b"
+ ],
+ "x-ms-client-request-id": [
+ "e057fc37-5d49-4819-aa6a-27768a586d7f",
+ "e057fc37-5d49-4819-aa6a-27768a586d7f"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11340"
+ ],
+ "x-ms-correlation-request-id": [
+ "8cbd7e03-e346-43af-a37c-1df27fea0b8b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095534Z:8cbd7e03-e346-43af-a37c-1df27fea0b8b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:33 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT32.5629595S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "58f3f206-ae2e-4594-8756-46cb01c41481"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f3bf8a95-8cea-43db-82e1-e385b0b4abf2"
+ ],
+ "x-ms-client-request-id": [
+ "58f3f206-ae2e-4594-8756-46cb01c41481",
+ "58f3f206-ae2e-4594-8756-46cb01c41481"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11339"
+ ],
+ "x-ms-correlation-request-id": [
+ "f3bf8a95-8cea-43db-82e1-e385b0b4abf2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095534Z:f3bf8a95-8cea-43db-82e1-e385b0b4abf2"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:34 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT32.8923432S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1c0114ea-a4b8-43b2-8c0a-1cdee64caeab"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "d4248b42-abb8-4991-9f73-d27c6f956f33"
+ ],
+ "x-ms-client-request-id": [
+ "1c0114ea-a4b8-43b2-8c0a-1cdee64caeab",
+ "1c0114ea-a4b8-43b2-8c0a-1cdee64caeab"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11338"
+ ],
+ "x-ms-correlation-request-id": [
+ "d4248b42-abb8-4991-9f73-d27c6f956f33"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095534Z:d4248b42-abb8-4991-9f73-d27c6f956f33"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:34 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT33.1423543S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "42ee1817-a994-4ece-9c7b-ecbbcd54d8a3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "649d1d60-9014-4b2f-9414-e0c8c3e52d35"
+ ],
+ "x-ms-client-request-id": [
+ "42ee1817-a994-4ece-9c7b-ecbbcd54d8a3",
+ "42ee1817-a994-4ece-9c7b-ecbbcd54d8a3"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11337"
+ ],
+ "x-ms-correlation-request-id": [
+ "649d1d60-9014-4b2f-9414-e0c8c3e52d35"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095535Z:649d1d60-9014-4b2f-9414-e0c8c3e52d35"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:34 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT33.4236224S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b0cd4810-75b7-4781-842a-7ad89cee34e6"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "54239924-01c9-4f68-bde4-6644346d593e"
+ ],
+ "x-ms-client-request-id": [
+ "b0cd4810-75b7-4781-842a-7ad89cee34e6",
+ "b0cd4810-75b7-4781-842a-7ad89cee34e6"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11336"
+ ],
+ "x-ms-correlation-request-id": [
+ "54239924-01c9-4f68-bde4-6644346d593e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095535Z:54239924-01c9-4f68-bde4-6644346d593e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:34 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT33.7873935S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "de1c4b7b-8541-402e-b5a5-7d38fdd6cac4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "de885efa-2d90-4028-819f-2940349940d8"
+ ],
+ "x-ms-client-request-id": [
+ "de1c4b7b-8541-402e-b5a5-7d38fdd6cac4",
+ "de1c4b7b-8541-402e-b5a5-7d38fdd6cac4"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11335"
+ ],
+ "x-ms-correlation-request-id": [
+ "de885efa-2d90-4028-819f-2940349940d8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095535Z:de885efa-2d90-4028-819f-2940349940d8"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:35 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT34.0631794S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "26fe23b1-e372-4983-818c-94d0673a20bf"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "82add9b8-fbce-4139-854f-ec414807f605"
+ ],
+ "x-ms-client-request-id": [
+ "26fe23b1-e372-4983-818c-94d0673a20bf",
+ "26fe23b1-e372-4983-818c-94d0673a20bf"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11334"
+ ],
+ "x-ms-correlation-request-id": [
+ "82add9b8-fbce-4139-854f-ec414807f605"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095536Z:82add9b8-fbce-4139-854f-ec414807f605"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:35 GMT"
+ ],
+ "Content-Length": [
+ "1104"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT34.408055S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "756d966b-dc3d-460c-9c45-44f54de613f2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "ba9090ca-7824-4218-b651-b986946d98f4"
+ ],
+ "x-ms-client-request-id": [
+ "756d966b-dc3d-460c-9c45-44f54de613f2",
+ "756d966b-dc3d-460c-9c45-44f54de613f2"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11333"
+ ],
+ "x-ms-correlation-request-id": [
+ "ba9090ca-7824-4218-b651-b986946d98f4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095536Z:ba9090ca-7824-4218-b651-b986946d98f4"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:35 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT34.6788594S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0fa20256-b9bc-40c7-b97e-07cafcb1e90b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "5ffaa2dc-111c-4e03-9779-ff6a149118ae"
+ ],
+ "x-ms-client-request-id": [
+ "0fa20256-b9bc-40c7-b97e-07cafcb1e90b",
+ "0fa20256-b9bc-40c7-b97e-07cafcb1e90b"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11332"
+ ],
+ "x-ms-correlation-request-id": [
+ "5ffaa2dc-111c-4e03-9779-ff6a149118ae"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095536Z:5ffaa2dc-111c-4e03-9779-ff6a149118ae"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:36 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT34.9225605S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "66708c91-0c18-4c71-a1d8-2ccb72c9192e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "6b90b18c-580c-48ee-b488-e1fe2c9170d7"
+ ],
+ "x-ms-client-request-id": [
+ "66708c91-0c18-4c71-a1d8-2ccb72c9192e",
+ "66708c91-0c18-4c71-a1d8-2ccb72c9192e"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11331"
+ ],
+ "x-ms-correlation-request-id": [
+ "6b90b18c-580c-48ee-b488-e1fe2c9170d7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095537Z:6b90b18c-580c-48ee-b488-e1fe2c9170d7"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:36 GMT"
+ ],
+ "Content-Length": [
+ "1105"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT35.5226471S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy85YmYwM2FlNi0xMjZmLTQzYzYtOGQxNi05ZWM2MmJkNmRiOTk/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2338e6c5-7a60-4d6f-93e0-2bf5a50cff96"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "aa2f70fe-3295-4b2c-a9df-6a007b310065"
+ ],
+ "x-ms-client-request-id": [
+ "2338e6c5-7a60-4d6f-93e0-2bf5a50cff96",
+ "2338e6c5-7a60-4d6f-93e0-2bf5a50cff96"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11330"
+ ],
+ "x-ms-correlation-request-id": [
+ "aa2f70fe-3295-4b2c-a9df-6a007b310065"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095537Z:aa2f70fe-3295-4b2c-a9df-6a007b310065"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:37 GMT"
+ ],
+ "Content-Length": [
+ "1195"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"name\": \"9bf03ae6-126f-43c6-8d16-9ec62bd6db99\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT34.4157181S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"3/19/2020 9:51:40 AM\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"1\",\r\n \"Number Of Restored Files\": \"3\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2020-03-19T09:55:01.5184887Z\",\r\n \"endTime\": \"2020-03-19T09:55:35.9342068Z\",\r\n \"activityId\": \"1d575486-c433-4be2-a12e-3fe976f14e7d\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/9ff5aa2b-4d4e-4795-9e3b-accb4ac07f9c?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy85ZmY1YWEyYi00ZDRlLTQ3OTUtOWUzYi1hY2NiNGFjMDdmOWM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b9d47086-c6d5-40b6-9962-550d90bdc8a9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "bf9b0993-b3d7-48da-aa5c-20d4017f776c"
+ ],
+ "x-ms-client-request-id": [
+ "b9d47086-c6d5-40b6-9962-550d90bdc8a9",
+ "b9d47086-c6d5-40b6-9962-550d90bdc8a9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11329"
+ ],
+ "x-ms-correlation-request-id": [
+ "bf9b0993-b3d7-48da-aa5c-20d4017f776c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095539Z:bf9b0993-b3d7-48da-aa5c-20d4017f776c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:38 GMT"
+ ],
+ "Content-Length": [
+ "186"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"9ff5aa2b-4d4e-4795-9e3b-accb4ac07f9c\",\r\n \"name\": \"9ff5aa2b-4d4e-4795-9e3b-accb4ac07f9c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/9ff5aa2b-4d4e-4795-9e3b-accb4ac07f9c?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy85ZmY1YWEyYi00ZDRlLTQ3OTUtOWUzYi1hY2NiNGFjMDdmOWM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "50dbae6d-2b4e-4cc9-8fa8-cc64ded066d8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "1f507ba4-f7bd-491a-a258-aa0b9c75bbca"
+ ],
+ "x-ms-client-request-id": [
+ "50dbae6d-2b4e-4cc9-8fa8-cc64ded066d8",
+ "50dbae6d-2b4e-4cc9-8fa8-cc64ded066d8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11328"
+ ],
+ "x-ms-correlation-request-id": [
+ "1f507ba4-f7bd-491a-a258-aa0b9c75bbca"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095539Z:1f507ba4-f7bd-491a-a258-aa0b9c75bbca"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:38 GMT"
+ ],
+ "Content-Length": [
+ "186"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"9ff5aa2b-4d4e-4795-9e3b-accb4ac07f9c\",\r\n \"name\": \"9ff5aa2b-4d4e-4795-9e3b-accb4ac07f9c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/9ff5aa2b-4d4e-4795-9e3b-accb4ac07f9c?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy85ZmY1YWEyYi00ZDRlLTQ3OTUtOWUzYi1hY2NiNGFjMDdmOWM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0f70c816-423d-4fb5-a400-89cbf40fdc9f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "a2aa0ad8-0e20-4850-9cbf-c48eaae69181"
+ ],
+ "x-ms-client-request-id": [
+ "0f70c816-423d-4fb5-a400-89cbf40fdc9f",
+ "0f70c816-423d-4fb5-a400-89cbf40fdc9f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11327"
+ ],
+ "x-ms-correlation-request-id": [
+ "a2aa0ad8-0e20-4850-9cbf-c48eaae69181"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095539Z:a2aa0ad8-0e20-4850-9cbf-c48eaae69181"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:39 GMT"
+ ],
+ "Content-Length": [
+ "186"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"9ff5aa2b-4d4e-4795-9e3b-accb4ac07f9c\",\r\n \"name\": \"9ff5aa2b-4d4e-4795-9e3b-accb4ac07f9c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/9ff5aa2b-4d4e-4795-9e3b-accb4ac07f9c?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy85ZmY1YWEyYi00ZDRlLTQ3OTUtOWUzYi1hY2NiNGFjMDdmOWM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a04bb3d0-6ba3-41ad-ae77-34da9e9a1d53"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e1f0b9a3-0dd8-46de-909f-e5cc22bffba0"
+ ],
+ "x-ms-client-request-id": [
+ "a04bb3d0-6ba3-41ad-ae77-34da9e9a1d53",
+ "a04bb3d0-6ba3-41ad-ae77-34da9e9a1d53"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11326"
+ ],
+ "x-ms-correlation-request-id": [
+ "e1f0b9a3-0dd8-46de-909f-e5cc22bffba0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095539Z:e1f0b9a3-0dd8-46de-909f-e5cc22bffba0"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:39 GMT"
+ ],
+ "Content-Length": [
+ "300"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"9ff5aa2b-4d4e-4795-9e3b-accb4ac07f9c\",\r\n \"name\": \"9ff5aa2b-4d4e-4795-9e3b-accb4ac07f9c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"endTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/9ff5aa2b-4d4e-4795-9e3b-accb4ac07f9c?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy85ZmY1YWEyYi00ZDRlLTQ3OTUtOWUzYi1hY2NiNGFjMDdmOWM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8fbd0747-2323-49f1-bda4-750f2d27fc9a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "22b9e048-b2db-410e-bde7-d183bf0cf43d"
+ ],
+ "x-ms-client-request-id": [
+ "8fbd0747-2323-49f1-bda4-750f2d27fc9a",
+ "8fbd0747-2323-49f1-bda4-750f2d27fc9a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11325"
+ ],
+ "x-ms-correlation-request-id": [
+ "22b9e048-b2db-410e-bde7-d183bf0cf43d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095540Z:22b9e048-b2db-410e-bde7-d183bf0cf43d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:39 GMT"
+ ],
+ "Content-Length": [
+ "300"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"9ff5aa2b-4d4e-4795-9e3b-accb4ac07f9c\",\r\n \"name\": \"9ff5aa2b-4d4e-4795-9e3b-accb4ac07f9c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"endTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3fb231b7-f063-44a1-871e-a51959fea6bd"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f8209000-d8cd-4e23-98e4-426ea44454bd"
+ ],
+ "x-ms-client-request-id": [
+ "3fb231b7-f063-44a1-871e-a51959fea6bd",
+ "3fb231b7-f063-44a1-871e-a51959fea6bd"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11324"
+ ],
+ "x-ms-correlation-request-id": [
+ "f8209000-d8cd-4e23-98e4-426ea44454bd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095540Z:f8209000-d8cd-4e23-98e4-426ea44454bd"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:39 GMT"
+ ],
+ "Content-Length": [
+ "997"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT1.8191987S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "48fd1639-1fb6-41d3-ba43-803f0efed36e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c26ab828-8079-4dd9-b2cd-aee17e139ebf"
+ ],
+ "x-ms-client-request-id": [
+ "48fd1639-1fb6-41d3-ba43-803f0efed36e",
+ "48fd1639-1fb6-41d3-ba43-803f0efed36e"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11323"
+ ],
+ "x-ms-correlation-request-id": [
+ "c26ab828-8079-4dd9-b2cd-aee17e139ebf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095540Z:c26ab828-8079-4dd9-b2cd-aee17e139ebf"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:40 GMT"
+ ],
+ "Content-Length": [
+ "997"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT2.1004528S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "63c5c08b-18d5-4c1c-ae92-1d9dd760a2e0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "183f8855-31dd-4cad-abcc-2a81d3f2d7ca"
+ ],
+ "x-ms-client-request-id": [
+ "63c5c08b-18d5-4c1c-ae92-1d9dd760a2e0",
+ "63c5c08b-18d5-4c1c-ae92-1d9dd760a2e0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11322"
+ ],
+ "x-ms-correlation-request-id": [
+ "183f8855-31dd-4cad-abcc-2a81d3f2d7ca"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095540Z:183f8855-31dd-4cad-abcc-2a81d3f2d7ca"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:40 GMT"
+ ],
+ "Content-Length": [
+ "997"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT2.3776069S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "66b19eb3-99c8-44be-9dcc-e9804082c98b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "7d3277ca-2cf0-4297-a5b8-fbebd39584b6"
+ ],
+ "x-ms-client-request-id": [
+ "66b19eb3-99c8-44be-9dcc-e9804082c98b",
+ "66b19eb3-99c8-44be-9dcc-e9804082c98b"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11321"
+ ],
+ "x-ms-correlation-request-id": [
+ "7d3277ca-2cf0-4297-a5b8-fbebd39584b6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095541Z:7d3277ca-2cf0-4297-a5b8-fbebd39584b6"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:40 GMT"
+ ],
+ "Content-Length": [
+ "997"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT2.7213691S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "de03e9b4-3dc9-4d67-8d43-12e250a5e971"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "4ddcb731-96ad-424e-957b-16457cd7c78d"
+ ],
+ "x-ms-client-request-id": [
+ "de03e9b4-3dc9-4d67-8d43-12e250a5e971",
+ "de03e9b4-3dc9-4d67-8d43-12e250a5e971"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11320"
+ ],
+ "x-ms-correlation-request-id": [
+ "4ddcb731-96ad-424e-957b-16457cd7c78d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095541Z:4ddcb731-96ad-424e-957b-16457cd7c78d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:40 GMT"
+ ],
+ "Content-Length": [
+ "997"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT2.9747408S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "aaa7b8f3-5f91-4972-bcd1-caf2389be102"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "14653bba-cc6a-47b2-80cf-febd6bf2a4eb"
+ ],
+ "x-ms-client-request-id": [
+ "aaa7b8f3-5f91-4972-bcd1-caf2389be102",
+ "aaa7b8f3-5f91-4972-bcd1-caf2389be102"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11319"
+ ],
+ "x-ms-correlation-request-id": [
+ "14653bba-cc6a-47b2-80cf-febd6bf2a4eb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095541Z:14653bba-cc6a-47b2-80cf-febd6bf2a4eb"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:41 GMT"
+ ],
+ "Content-Length": [
+ "996"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT3.242883S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7971973b-33f8-4af9-82c0-f0771c927681"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "03afca34-f9db-4780-b0b6-aeca6f5729c3"
+ ],
+ "x-ms-client-request-id": [
+ "7971973b-33f8-4af9-82c0-f0771c927681",
+ "7971973b-33f8-4af9-82c0-f0771c927681"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11318"
+ ],
+ "x-ms-correlation-request-id": [
+ "03afca34-f9db-4780-b0b6-aeca6f5729c3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095542Z:03afca34-f9db-4780-b0b6-aeca6f5729c3"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:41 GMT"
+ ],
+ "Content-Length": [
+ "997"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT3.5372966S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "00829669-b6aa-4a4a-9828-2de485947211"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "ef4fd7ef-c07b-4b05-b5a2-e5c81151373c"
+ ],
+ "x-ms-client-request-id": [
+ "00829669-b6aa-4a4a-9828-2de485947211",
+ "00829669-b6aa-4a4a-9828-2de485947211"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11317"
+ ],
+ "x-ms-correlation-request-id": [
+ "ef4fd7ef-c07b-4b05-b5a2-e5c81151373c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095542Z:ef4fd7ef-c07b-4b05-b5a2-e5c81151373c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:41 GMT"
+ ],
+ "Content-Length": [
+ "997"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT3.8707344S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a9d8d8bc-d3aa-4ce6-8731-232c277a9875"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "01bb9a32-cf60-4f90-a853-57c1401f50a2"
+ ],
+ "x-ms-client-request-id": [
+ "a9d8d8bc-d3aa-4ce6-8731-232c277a9875",
+ "a9d8d8bc-d3aa-4ce6-8731-232c277a9875"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11316"
+ ],
+ "x-ms-correlation-request-id": [
+ "01bb9a32-cf60-4f90-a853-57c1401f50a2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095542Z:01bb9a32-cf60-4f90-a853-57c1401f50a2"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:42 GMT"
+ ],
+ "Content-Length": [
+ "997"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT4.2116731S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "07a262de-87c9-428f-afa4-3c6597dad656"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "7b135ac2-5135-42b1-bb2f-76858368fcee"
+ ],
+ "x-ms-client-request-id": [
+ "07a262de-87c9-428f-afa4-3c6597dad656",
+ "07a262de-87c9-428f-afa4-3c6597dad656"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11315"
+ ],
+ "x-ms-correlation-request-id": [
+ "7b135ac2-5135-42b1-bb2f-76858368fcee"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095542Z:7b135ac2-5135-42b1-bb2f-76858368fcee"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:42 GMT"
+ ],
+ "Content-Length": [
+ "997"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT4.5113795S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "051cce4f-2e1a-456b-a72f-a5ea314d01a3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "6d6378be-f511-4232-a9eb-08b176fa59de"
+ ],
+ "x-ms-client-request-id": [
+ "051cce4f-2e1a-456b-a72f-a5ea314d01a3",
+ "051cce4f-2e1a-456b-a72f-a5ea314d01a3"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11314"
+ ],
+ "x-ms-correlation-request-id": [
+ "6d6378be-f511-4232-a9eb-08b176fa59de"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095543Z:6d6378be-f511-4232-a9eb-08b176fa59de"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:42 GMT"
+ ],
+ "Content-Length": [
+ "997"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT4.7598596S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8b12925c-a49c-4114-afc2-d18fc29763f7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "5ab684a6-dae2-4a1e-baa7-c092728af100"
+ ],
+ "x-ms-client-request-id": [
+ "8b12925c-a49c-4114-afc2-d18fc29763f7",
+ "8b12925c-a49c-4114-afc2-d18fc29763f7"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11313"
+ ],
+ "x-ms-correlation-request-id": [
+ "5ab684a6-dae2-4a1e-baa7-c092728af100"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095543Z:5ab684a6-dae2-4a1e-baa7-c092728af100"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:43 GMT"
+ ],
+ "Content-Length": [
+ "997"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT5.0098959S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0322a73f-7565-492b-8f00-d8b736acf515"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "ee2ad4ea-2cee-4030-bfcb-edcb14177d4a"
+ ],
+ "x-ms-client-request-id": [
+ "0322a73f-7565-492b-8f00-d8b736acf515",
+ "0322a73f-7565-492b-8f00-d8b736acf515"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11312"
+ ],
+ "x-ms-correlation-request-id": [
+ "ee2ad4ea-2cee-4030-bfcb-edcb14177d4a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095543Z:ee2ad4ea-2cee-4030-bfcb-edcb14177d4a"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:43 GMT"
+ ],
+ "Content-Length": [
+ "997"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT5.2619491S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2f2ea791-1a59-48f0-b34f-cb69298a49ff"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e50070a1-7b24-48da-83f1-1ffdb12177a1"
+ ],
+ "x-ms-client-request-id": [
+ "2f2ea791-1a59-48f0-b34f-cb69298a49ff",
+ "2f2ea791-1a59-48f0-b34f-cb69298a49ff"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11311"
+ ],
+ "x-ms-correlation-request-id": [
+ "e50070a1-7b24-48da-83f1-1ffdb12177a1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095543Z:e50070a1-7b24-48da-83f1-1ffdb12177a1"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:43 GMT"
+ ],
+ "Content-Length": [
+ "997"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT5.5252527S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6f9d6511-60a2-4c67-bcac-562410cc60d7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "214831eb-0ef8-4b8a-b4f8-dd8d43cb40ee"
+ ],
+ "x-ms-client-request-id": [
+ "6f9d6511-60a2-4c67-bcac-562410cc60d7",
+ "6f9d6511-60a2-4c67-bcac-562410cc60d7"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11310"
+ ],
+ "x-ms-correlation-request-id": [
+ "214831eb-0ef8-4b8a-b4f8-dd8d43cb40ee"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095544Z:214831eb-0ef8-4b8a-b4f8-dd8d43cb40ee"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:43 GMT"
+ ],
+ "Content-Length": [
+ "997"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT5.7908831S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3853bff1-7364-43f2-94d9-8e4bd053ff1b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e61047c0-6ca5-4655-962d-a204528da92e"
+ ],
+ "x-ms-client-request-id": [
+ "3853bff1-7364-43f2-94d9-8e4bd053ff1b",
+ "3853bff1-7364-43f2-94d9-8e4bd053ff1b"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11309"
+ ],
+ "x-ms-correlation-request-id": [
+ "e61047c0-6ca5-4655-962d-a204528da92e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095544Z:e61047c0-6ca5-4655-962d-a204528da92e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:44 GMT"
+ ],
+ "Content-Length": [
+ "997"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT6.0144386S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8a97b05b-9eb2-4986-b2ff-c5b042b83896"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "927bcd35-37ca-4b2e-88a9-c49d91f22770"
+ ],
+ "x-ms-client-request-id": [
+ "8a97b05b-9eb2-4986-b2ff-c5b042b83896",
+ "8a97b05b-9eb2-4986-b2ff-c5b042b83896"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11308"
+ ],
+ "x-ms-correlation-request-id": [
+ "927bcd35-37ca-4b2e-88a9-c49d91f22770"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095544Z:927bcd35-37ca-4b2e-88a9-c49d91f22770"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:44 GMT"
+ ],
+ "Content-Length": [
+ "997"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT6.2385366S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d28395d1-5588-4058-9603-17fedc077446"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "af551b45-ca63-458b-8c17-0fae91559bc0"
+ ],
+ "x-ms-client-request-id": [
+ "d28395d1-5588-4058-9603-17fedc077446",
+ "d28395d1-5588-4058-9603-17fedc077446"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11307"
+ ],
+ "x-ms-correlation-request-id": [
+ "af551b45-ca63-458b-8c17-0fae91559bc0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095544Z:af551b45-ca63-458b-8c17-0fae91559bc0"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:44 GMT"
+ ],
+ "Content-Length": [
+ "997"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT6.4729479S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "aaa5a9e0-5e4c-40d7-b0b2-a50aea66e042"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e8372839-30c9-454e-9449-fa5edb08785f"
+ ],
+ "x-ms-client-request-id": [
+ "aaa5a9e0-5e4c-40d7-b0b2-a50aea66e042",
+ "aaa5a9e0-5e4c-40d7-b0b2-a50aea66e042"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11306"
+ ],
+ "x-ms-correlation-request-id": [
+ "e8372839-30c9-454e-9449-fa5edb08785f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095545Z:e8372839-30c9-454e-9449-fa5edb08785f"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:44 GMT"
+ ],
+ "Content-Length": [
+ "997"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT6.7653436S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9d477600-2825-4830-9342-ef7804c00208"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "9ce9807e-32a2-4190-be99-74cb2b37ae8a"
+ ],
+ "x-ms-client-request-id": [
+ "9d477600-2825-4830-9342-ef7804c00208",
+ "9d477600-2825-4830-9342-ef7804c00208"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11305"
+ ],
+ "x-ms-correlation-request-id": [
+ "9ce9807e-32a2-4190-be99-74cb2b37ae8a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095545Z:9ce9807e-32a2-4190-be99-74cb2b37ae8a"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:45 GMT"
+ ],
+ "Content-Length": [
+ "997"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT7.1448496S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4e349e0c-1943-40eb-aca6-8871b5292b67"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "7ebe9230-3e7b-4c23-a3fd-32320222859c"
+ ],
+ "x-ms-client-request-id": [
+ "4e349e0c-1943-40eb-aca6-8871b5292b67",
+ "4e349e0c-1943-40eb-aca6-8871b5292b67"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11304"
+ ],
+ "x-ms-correlation-request-id": [
+ "7ebe9230-3e7b-4c23-a3fd-32320222859c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095545Z:7ebe9230-3e7b-4c23-a3fd-32320222859c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:45 GMT"
+ ],
+ "Content-Length": [
+ "997"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT7.3821522S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "53685af4-53f4-4578-8d24-87cdc9087878"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "ca840c27-f049-4ef8-a5ce-980d31ee8026"
+ ],
+ "x-ms-client-request-id": [
+ "53685af4-53f4-4578-8d24-87cdc9087878",
+ "53685af4-53f4-4578-8d24-87cdc9087878"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11303"
+ ],
+ "x-ms-correlation-request-id": [
+ "ca840c27-f049-4ef8-a5ce-980d31ee8026"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095546Z:ca840c27-f049-4ef8-a5ce-980d31ee8026"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:45 GMT"
+ ],
+ "Content-Length": [
+ "997"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT7.6501624S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "dcc85454-4b25-46c7-ab95-cf2b19f43ed0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "108f03ac-4f99-49ba-9ed3-2d233fa48bca"
+ ],
+ "x-ms-client-request-id": [
+ "dcc85454-4b25-46c7-ab95-cf2b19f43ed0",
+ "dcc85454-4b25-46c7-ab95-cf2b19f43ed0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11302"
+ ],
+ "x-ms-correlation-request-id": [
+ "108f03ac-4f99-49ba-9ed3-2d233fa48bca"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095546Z:108f03ac-4f99-49ba-9ed3-2d233fa48bca"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:45 GMT"
+ ],
+ "Content-Length": [
+ "997"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT7.8847053S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "90f0d42c-33fd-4668-8e88-cd20b4eaf89e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "037eb375-0645-4afa-8042-9d1eb0e07e6b"
+ ],
+ "x-ms-client-request-id": [
+ "90f0d42c-33fd-4668-8e88-cd20b4eaf89e",
+ "90f0d42c-33fd-4668-8e88-cd20b4eaf89e"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11301"
+ ],
+ "x-ms-correlation-request-id": [
+ "037eb375-0645-4afa-8042-9d1eb0e07e6b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095546Z:037eb375-0645-4afa-8042-9d1eb0e07e6b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:46 GMT"
+ ],
+ "Content-Length": [
+ "997"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT8.1658346S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4d86a3d6-27bb-4946-8402-776394d81afb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "6a2aa3eb-e505-4b91-97ab-ecc095af3e17"
+ ],
+ "x-ms-client-request-id": [
+ "4d86a3d6-27bb-4946-8402-776394d81afb",
+ "4d86a3d6-27bb-4946-8402-776394d81afb"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11300"
+ ],
+ "x-ms-correlation-request-id": [
+ "6a2aa3eb-e505-4b91-97ab-ecc095af3e17"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095546Z:6a2aa3eb-e505-4b91-97ab-ecc095af3e17"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:46 GMT"
+ ],
+ "Content-Length": [
+ "997"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT8.4944255S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9f943321-9f0f-4411-aa83-9cfdb437f23e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "6adb9dc5-5406-4a0a-ae68-c0fff3b3c620"
+ ],
+ "x-ms-client-request-id": [
+ "9f943321-9f0f-4411-aa83-9cfdb437f23e",
+ "9f943321-9f0f-4411-aa83-9cfdb437f23e"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11299"
+ ],
+ "x-ms-correlation-request-id": [
+ "6adb9dc5-5406-4a0a-ae68-c0fff3b3c620"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095547Z:6adb9dc5-5406-4a0a-ae68-c0fff3b3c620"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:46 GMT"
+ ],
+ "Content-Length": [
+ "997"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT8.8694403S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bc8e32fb-c170-4874-a991-dec513a43b22"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c9777312-f4e6-4f02-93a3-0bb0c9310c7d"
+ ],
+ "x-ms-client-request-id": [
+ "bc8e32fb-c170-4874-a991-dec513a43b22",
+ "bc8e32fb-c170-4874-a991-dec513a43b22"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11298"
+ ],
+ "x-ms-correlation-request-id": [
+ "c9777312-f4e6-4f02-93a3-0bb0c9310c7d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095547Z:c9777312-f4e6-4f02-93a3-0bb0c9310c7d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:47 GMT"
+ ],
+ "Content-Length": [
+ "997"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT9.1502537S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2328b447-ab06-476e-a609-adfbbd1b57b1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "88981b98-7e7f-4aeb-9123-2a75ba670ca9"
+ ],
+ "x-ms-client-request-id": [
+ "2328b447-ab06-476e-a609-adfbbd1b57b1",
+ "2328b447-ab06-476e-a609-adfbbd1b57b1"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11297"
+ ],
+ "x-ms-correlation-request-id": [
+ "88981b98-7e7f-4aeb-9123-2a75ba670ca9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095547Z:88981b98-7e7f-4aeb-9123-2a75ba670ca9"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:47 GMT"
+ ],
+ "Content-Length": [
+ "997"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT9.3910312S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5bc2b2a3-739a-4246-9ce6-51fc45ed504b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "4b02833c-e0d3-414e-bf95-78aa987f074e"
+ ],
+ "x-ms-client-request-id": [
+ "5bc2b2a3-739a-4246-9ce6-51fc45ed504b",
+ "5bc2b2a3-739a-4246-9ce6-51fc45ed504b"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11296"
+ ],
+ "x-ms-correlation-request-id": [
+ "4b02833c-e0d3-414e-bf95-78aa987f074e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095548Z:4b02833c-e0d3-414e-bf95-78aa987f074e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:47 GMT"
+ ],
+ "Content-Length": [
+ "997"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT9.6270199S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c7bb64c6-e1ed-49aa-a05d-df194cd87af7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "d2013cd2-6a5a-4c1b-a740-81d3795253ec"
+ ],
+ "x-ms-client-request-id": [
+ "c7bb64c6-e1ed-49aa-a05d-df194cd87af7",
+ "c7bb64c6-e1ed-49aa-a05d-df194cd87af7"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11295"
+ ],
+ "x-ms-correlation-request-id": [
+ "d2013cd2-6a5a-4c1b-a740-81d3795253ec"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095548Z:d2013cd2-6a5a-4c1b-a740-81d3795253ec"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:48 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT10.2663701S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b7eaa221-453c-4a17-9be7-9f061cc6d78c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "fd1a4143-db52-4137-adae-a680a8f99ce9"
+ ],
+ "x-ms-client-request-id": [
+ "b7eaa221-453c-4a17-9be7-9f061cc6d78c",
+ "b7eaa221-453c-4a17-9be7-9f061cc6d78c"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11294"
+ ],
+ "x-ms-correlation-request-id": [
+ "fd1a4143-db52-4137-adae-a680a8f99ce9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095548Z:fd1a4143-db52-4137-adae-a680a8f99ce9"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:48 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT10.4864255S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "38cfdd21-0761-4782-8379-4fa8124963a6"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "a0601c2d-d5d1-460f-95f8-b39926a471e3"
+ ],
+ "x-ms-client-request-id": [
+ "38cfdd21-0761-4782-8379-4fa8124963a6",
+ "38cfdd21-0761-4782-8379-4fa8124963a6"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11293"
+ ],
+ "x-ms-correlation-request-id": [
+ "a0601c2d-d5d1-460f-95f8-b39926a471e3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095549Z:a0601c2d-d5d1-460f-95f8-b39926a471e3"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:48 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT10.7304726S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0d1a8e32-c503-4825-9bbc-5f88974b560b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e0bf937b-d40a-486e-9dc3-cd4584a0afb7"
+ ],
+ "x-ms-client-request-id": [
+ "0d1a8e32-c503-4825-9bbc-5f88974b560b",
+ "0d1a8e32-c503-4825-9bbc-5f88974b560b"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11292"
+ ],
+ "x-ms-correlation-request-id": [
+ "e0bf937b-d40a-486e-9dc3-cd4584a0afb7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095549Z:e0bf937b-d40a-486e-9dc3-cd4584a0afb7"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:48 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT11.0101713S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3290bc5e-cd29-43e8-b344-3b4098ee0ae4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "69d4cea9-3703-4312-b536-83ec7dc54388"
+ ],
+ "x-ms-client-request-id": [
+ "3290bc5e-cd29-43e8-b344-3b4098ee0ae4",
+ "3290bc5e-cd29-43e8-b344-3b4098ee0ae4"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11291"
+ ],
+ "x-ms-correlation-request-id": [
+ "69d4cea9-3703-4312-b536-83ec7dc54388"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095549Z:69d4cea9-3703-4312-b536-83ec7dc54388"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:49 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT11.2603683S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6f0c791b-b5d3-4d6d-9a36-5bd8d362781a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "10f40431-255e-48ec-8e98-80491e081bc8"
+ ],
+ "x-ms-client-request-id": [
+ "6f0c791b-b5d3-4d6d-9a36-5bd8d362781a",
+ "6f0c791b-b5d3-4d6d-9a36-5bd8d362781a"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11290"
+ ],
+ "x-ms-correlation-request-id": [
+ "10f40431-255e-48ec-8e98-80491e081bc8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095549Z:10f40431-255e-48ec-8e98-80491e081bc8"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:49 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT11.5054362S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "da0aad6d-51a9-4bbe-a2d3-25c1c620a071"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "b4e4c03d-7a37-4173-b1b4-885dfa2d230c"
+ ],
+ "x-ms-client-request-id": [
+ "da0aad6d-51a9-4bbe-a2d3-25c1c620a071",
+ "da0aad6d-51a9-4bbe-a2d3-25c1c620a071"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11289"
+ ],
+ "x-ms-correlation-request-id": [
+ "b4e4c03d-7a37-4173-b1b4-885dfa2d230c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095550Z:b4e4c03d-7a37-4173-b1b4-885dfa2d230c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:49 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT11.7914319S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e1c74a1e-bcc5-424f-8ce7-264d9206da2c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "a51efce3-7a6a-4ae4-a0bc-8d7e482a2b50"
+ ],
+ "x-ms-client-request-id": [
+ "e1c74a1e-bcc5-424f-8ce7-264d9206da2c",
+ "e1c74a1e-bcc5-424f-8ce7-264d9206da2c"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11288"
+ ],
+ "x-ms-correlation-request-id": [
+ "a51efce3-7a6a-4ae4-a0bc-8d7e482a2b50"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095550Z:a51efce3-7a6a-4ae4-a0bc-8d7e482a2b50"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:49 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT12.0104332S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "84431bec-65d0-493d-9a27-e93d94a8abb7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "8634e4cb-22c0-41d5-9417-00bb7e755eb6"
+ ],
+ "x-ms-client-request-id": [
+ "84431bec-65d0-493d-9a27-e93d94a8abb7",
+ "84431bec-65d0-493d-9a27-e93d94a8abb7"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11287"
+ ],
+ "x-ms-correlation-request-id": [
+ "8634e4cb-22c0-41d5-9417-00bb7e755eb6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095550Z:8634e4cb-22c0-41d5-9417-00bb7e755eb6"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:50 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT12.2289449S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "af064a27-851a-4359-af65-ba1087917f60"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "98f782a6-b32f-4a95-b6b6-b597c18fb049"
+ ],
+ "x-ms-client-request-id": [
+ "af064a27-851a-4359-af65-ba1087917f60",
+ "af064a27-851a-4359-af65-ba1087917f60"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11286"
+ ],
+ "x-ms-correlation-request-id": [
+ "98f782a6-b32f-4a95-b6b6-b597c18fb049"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095550Z:98f782a6-b32f-4a95-b6b6-b597c18fb049"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:50 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT12.4479471S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c6483d53-12a1-4351-89ae-5be4ba741703"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "82cf9b2c-7726-48a3-932d-54fcb1218cc6"
+ ],
+ "x-ms-client-request-id": [
+ "c6483d53-12a1-4351-89ae-5be4ba741703",
+ "c6483d53-12a1-4351-89ae-5be4ba741703"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11285"
+ ],
+ "x-ms-correlation-request-id": [
+ "82cf9b2c-7726-48a3-932d-54fcb1218cc6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095551Z:82cf9b2c-7726-48a3-932d-54fcb1218cc6"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:50 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT12.6354539S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d6bfbd72-dcb6-43a5-915f-a84fcce668f2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e29a44ed-3c7a-4a80-9fe0-2cb4a5bce413"
+ ],
+ "x-ms-client-request-id": [
+ "d6bfbd72-dcb6-43a5-915f-a84fcce668f2",
+ "d6bfbd72-dcb6-43a5-915f-a84fcce668f2"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11284"
+ ],
+ "x-ms-correlation-request-id": [
+ "e29a44ed-3c7a-4a80-9fe0-2cb4a5bce413"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095551Z:e29a44ed-3c7a-4a80-9fe0-2cb4a5bce413"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:50 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT12.9164749S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4a67d374-81ae-43e4-998a-3481aad71339"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "8abe9472-f72b-4264-a9fb-0cd89b5927c3"
+ ],
+ "x-ms-client-request-id": [
+ "4a67d374-81ae-43e4-998a-3481aad71339",
+ "4a67d374-81ae-43e4-998a-3481aad71339"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11283"
+ ],
+ "x-ms-correlation-request-id": [
+ "8abe9472-f72b-4264-a9fb-0cd89b5927c3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095551Z:8abe9472-f72b-4264-a9fb-0cd89b5927c3"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:51 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT13.3227437S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0d7cf5d5-08c8-49c3-a7b3-71fe19a0b894"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "8bb8a4d6-616c-473f-bede-f93488b863de"
+ ],
+ "x-ms-client-request-id": [
+ "0d7cf5d5-08c8-49c3-a7b3-71fe19a0b894",
+ "0d7cf5d5-08c8-49c3-a7b3-71fe19a0b894"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11282"
+ ],
+ "x-ms-correlation-request-id": [
+ "8bb8a4d6-616c-473f-bede-f93488b863de"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095552Z:8bb8a4d6-616c-473f-bede-f93488b863de"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:51 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT13.5729862S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2fcbd81c-7bd7-4720-9b0d-a81c1742f992"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "08d84951-3c7c-4f1a-8ed0-36e1b5f6953c"
+ ],
+ "x-ms-client-request-id": [
+ "2fcbd81c-7bd7-4720-9b0d-a81c1742f992",
+ "2fcbd81c-7bd7-4720-9b0d-a81c1742f992"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11281"
+ ],
+ "x-ms-correlation-request-id": [
+ "08d84951-3c7c-4f1a-8ed0-36e1b5f6953c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095552Z:08d84951-3c7c-4f1a-8ed0-36e1b5f6953c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:51 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT13.7761195S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7d0a272e-64bc-4134-bd0b-575902d1a576"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "4613ecc7-b0a4-4176-8f9a-322a2f31ab9e"
+ ],
+ "x-ms-client-request-id": [
+ "7d0a272e-64bc-4134-bd0b-575902d1a576",
+ "7d0a272e-64bc-4134-bd0b-575902d1a576"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11280"
+ ],
+ "x-ms-correlation-request-id": [
+ "4613ecc7-b0a4-4176-8f9a-322a2f31ab9e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095552Z:4613ecc7-b0a4-4176-8f9a-322a2f31ab9e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:51 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT13.9948808S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "feeb8c7c-58bc-45fc-beac-4a51f16318d6"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "9907764b-2654-47a2-a234-20f229927a4d"
+ ],
+ "x-ms-client-request-id": [
+ "feeb8c7c-58bc-45fc-beac-4a51f16318d6",
+ "feeb8c7c-58bc-45fc-beac-4a51f16318d6"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11279"
+ ],
+ "x-ms-correlation-request-id": [
+ "9907764b-2654-47a2-a234-20f229927a4d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095552Z:9907764b-2654-47a2-a234-20f229927a4d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:52 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT14.2292695S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bdd7a63a-5557-49ab-8671-ee61ebe32440"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "ad1ea1c3-45f9-4203-9856-db6558aeb568"
+ ],
+ "x-ms-client-request-id": [
+ "bdd7a63a-5557-49ab-8671-ee61ebe32440",
+ "bdd7a63a-5557-49ab-8671-ee61ebe32440"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11278"
+ ],
+ "x-ms-correlation-request-id": [
+ "ad1ea1c3-45f9-4203-9856-db6558aeb568"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095552Z:ad1ea1c3-45f9-4203-9856-db6558aeb568"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:52 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT14.5105279S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b95bb47f-bd46-49f7-911f-730c08d6712c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "41fb1b1f-2507-4171-b2bb-e57d15ff72ee"
+ ],
+ "x-ms-client-request-id": [
+ "b95bb47f-bd46-49f7-911f-730c08d6712c",
+ "b95bb47f-bd46-49f7-911f-730c08d6712c"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11277"
+ ],
+ "x-ms-correlation-request-id": [
+ "41fb1b1f-2507-4171-b2bb-e57d15ff72ee"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095553Z:41fb1b1f-2507-4171-b2bb-e57d15ff72ee"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:52 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT14.7605401S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "69aad6d2-bb59-44c5-897e-f864898babf7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e25cc6ad-38b8-4606-9148-1ca892c3a3c3"
+ ],
+ "x-ms-client-request-id": [
+ "69aad6d2-bb59-44c5-897e-f864898babf7",
+ "69aad6d2-bb59-44c5-897e-f864898babf7"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11276"
+ ],
+ "x-ms-correlation-request-id": [
+ "e25cc6ad-38b8-4606-9148-1ca892c3a3c3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095553Z:e25cc6ad-38b8-4606-9148-1ca892c3a3c3"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:52 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT15.0641569S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c5d5dc7e-e336-46f0-bec1-e62c137e920c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e9a9cc59-d025-4e9f-ac72-56383a20f37e"
+ ],
+ "x-ms-client-request-id": [
+ "c5d5dc7e-e336-46f0-bec1-e62c137e920c",
+ "c5d5dc7e-e336-46f0-bec1-e62c137e920c"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11275"
+ ],
+ "x-ms-correlation-request-id": [
+ "e9a9cc59-d025-4e9f-ac72-56383a20f37e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095553Z:e9a9cc59-d025-4e9f-ac72-56383a20f37e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:53 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT15.3039887S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "551f1223-37cf-4b7f-ab6e-d0a61284a8cf"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "b244a10f-a335-4f41-8c49-2fd2f88a75df"
+ ],
+ "x-ms-client-request-id": [
+ "551f1223-37cf-4b7f-ab6e-d0a61284a8cf",
+ "551f1223-37cf-4b7f-ab6e-d0a61284a8cf"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11274"
+ ],
+ "x-ms-correlation-request-id": [
+ "b244a10f-a335-4f41-8c49-2fd2f88a75df"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095554Z:b244a10f-a335-4f41-8c49-2fd2f88a75df"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:53 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT15.5516912S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "13e631b1-15d5-4b07-b081-802b708e9fd2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "4d26a38d-0272-48e0-aa89-a5f6b8c39c5d"
+ ],
+ "x-ms-client-request-id": [
+ "13e631b1-15d5-4b07-b081-802b708e9fd2",
+ "13e631b1-15d5-4b07-b081-802b708e9fd2"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11273"
+ ],
+ "x-ms-correlation-request-id": [
+ "4d26a38d-0272-48e0-aa89-a5f6b8c39c5d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095554Z:4d26a38d-0272-48e0-aa89-a5f6b8c39c5d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:53 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT15.8879768S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "88e88d1f-4d51-4d79-98e4-7e553c55e560"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "862c58d4-b411-4328-9256-ee44cb2384b0"
+ ],
+ "x-ms-client-request-id": [
+ "88e88d1f-4d51-4d79-98e4-7e553c55e560",
+ "88e88d1f-4d51-4d79-98e4-7e553c55e560"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11272"
+ ],
+ "x-ms-correlation-request-id": [
+ "862c58d4-b411-4328-9256-ee44cb2384b0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095554Z:862c58d4-b411-4328-9256-ee44cb2384b0"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:54 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT16.5238847S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "63bbfb26-a12f-45d5-88c9-bb9383068435"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "470099be-fcca-42fb-80be-0f06879b0c78"
+ ],
+ "x-ms-client-request-id": [
+ "63bbfb26-a12f-45d5-88c9-bb9383068435",
+ "63bbfb26-a12f-45d5-88c9-bb9383068435"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11271"
+ ],
+ "x-ms-correlation-request-id": [
+ "470099be-fcca-42fb-80be-0f06879b0c78"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095555Z:470099be-fcca-42fb-80be-0f06879b0c78"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:54 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT16.8357239S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fb326adf-5c6c-4cb2-b4c4-7cb72d6c7e4c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "9f252fa4-505e-4615-8471-e61f7ede4e5b"
+ ],
+ "x-ms-client-request-id": [
+ "fb326adf-5c6c-4cb2-b4c4-7cb72d6c7e4c",
+ "fb326adf-5c6c-4cb2-b4c4-7cb72d6c7e4c"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11270"
+ ],
+ "x-ms-correlation-request-id": [
+ "9f252fa4-505e-4615-8471-e61f7ede4e5b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095555Z:9f252fa4-505e-4615-8471-e61f7ede4e5b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:54 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT17.0442694S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d57c715d-cf5b-4891-a2cb-d93b5483fb32"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "347ec70b-15ce-4ec3-b4ff-d2295e144f8c"
+ ],
+ "x-ms-client-request-id": [
+ "d57c715d-cf5b-4891-a2cb-d93b5483fb32",
+ "d57c715d-cf5b-4891-a2cb-d93b5483fb32"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11269"
+ ],
+ "x-ms-correlation-request-id": [
+ "347ec70b-15ce-4ec3-b4ff-d2295e144f8c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095555Z:347ec70b-15ce-4ec3-b4ff-d2295e144f8c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:55 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT17.2889456S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "61674f74-9795-448f-a2b9-0321027ac7ed"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c71ff1e1-03b2-48d1-94d6-ddb4f7e4248d"
+ ],
+ "x-ms-client-request-id": [
+ "61674f74-9795-448f-a2b9-0321027ac7ed",
+ "61674f74-9795-448f-a2b9-0321027ac7ed"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11268"
+ ],
+ "x-ms-correlation-request-id": [
+ "c71ff1e1-03b2-48d1-94d6-ddb4f7e4248d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095555Z:c71ff1e1-03b2-48d1-94d6-ddb4f7e4248d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:55 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT17.5286612S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c9baca5f-6065-4da7-b044-197df1a15a90"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "cc17180a-a1d0-4a51-9de7-1837c910c8bb"
+ ],
+ "x-ms-client-request-id": [
+ "c9baca5f-6065-4da7-b044-197df1a15a90",
+ "c9baca5f-6065-4da7-b044-197df1a15a90"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11267"
+ ],
+ "x-ms-correlation-request-id": [
+ "cc17180a-a1d0-4a51-9de7-1837c910c8bb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095556Z:cc17180a-a1d0-4a51-9de7-1837c910c8bb"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:55 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT17.8045071S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4c0a9b4a-8e5f-4efd-bf0d-3dac8b347c62"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "9941d6bc-7f51-47ff-89dd-787a5bb86082"
+ ],
+ "x-ms-client-request-id": [
+ "4c0a9b4a-8e5f-4efd-bf0d-3dac8b347c62",
+ "4c0a9b4a-8e5f-4efd-bf0d-3dac8b347c62"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11266"
+ ],
+ "x-ms-correlation-request-id": [
+ "9941d6bc-7f51-47ff-89dd-787a5bb86082"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095556Z:9941d6bc-7f51-47ff-89dd-787a5bb86082"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:56 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT18.2832075S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e5a7777b-4db5-49e4-9ff6-91cdb03cb2d2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "5415db4b-9266-4afc-ba24-3575625d85db"
+ ],
+ "x-ms-client-request-id": [
+ "e5a7777b-4db5-49e4-9ff6-91cdb03cb2d2",
+ "e5a7777b-4db5-49e4-9ff6-91cdb03cb2d2"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11265"
+ ],
+ "x-ms-correlation-request-id": [
+ "5415db4b-9266-4afc-ba24-3575625d85db"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095557Z:5415db4b-9266-4afc-ba24-3575625d85db"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:56 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT18.5593618S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "11fb74c6-13f6-43b4-91c2-ae843a3d0ddf"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f8108911-60f2-4360-8b51-235b76e0538d"
+ ],
+ "x-ms-client-request-id": [
+ "11fb74c6-13f6-43b4-91c2-ae843a3d0ddf",
+ "11fb74c6-13f6-43b4-91c2-ae843a3d0ddf"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11264"
+ ],
+ "x-ms-correlation-request-id": [
+ "f8108911-60f2-4360-8b51-235b76e0538d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095557Z:f8108911-60f2-4360-8b51-235b76e0538d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:56 GMT"
+ ],
+ "Content-Length": [
+ "997"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT18.824997S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "00387cd8-3e24-4788-9253-d661f8f174e5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "1e12b7b6-353b-4204-96b0-2191dc6ff21c"
+ ],
+ "x-ms-client-request-id": [
+ "00387cd8-3e24-4788-9253-d661f8f174e5",
+ "00387cd8-3e24-4788-9253-d661f8f174e5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11263"
+ ],
+ "x-ms-correlation-request-id": [
+ "1e12b7b6-353b-4204-96b0-2191dc6ff21c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095557Z:1e12b7b6-353b-4204-96b0-2191dc6ff21c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:56 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT19.0338342S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "70f03e4c-ae46-488e-a113-8f1dd433fd38"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "27fff16c-049f-4800-977d-01dfd4ad4518"
+ ],
+ "x-ms-client-request-id": [
+ "70f03e4c-ae46-488e-a113-8f1dd433fd38",
+ "70f03e4c-ae46-488e-a113-8f1dd433fd38"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11262"
+ ],
+ "x-ms-correlation-request-id": [
+ "27fff16c-049f-4800-977d-01dfd4ad4518"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095557Z:27fff16c-049f-4800-977d-01dfd4ad4518"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:57 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT19.2832412S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "36499a4a-d148-4e2e-977e-d909e2231651"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "5dad5a1a-2e48-4c3f-9e4f-0380fa7235a4"
+ ],
+ "x-ms-client-request-id": [
+ "36499a4a-d148-4e2e-977e-d909e2231651",
+ "36499a4a-d148-4e2e-977e-d909e2231651"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11261"
+ ],
+ "x-ms-correlation-request-id": [
+ "5dad5a1a-2e48-4c3f-9e4f-0380fa7235a4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095558Z:5dad5a1a-2e48-4c3f-9e4f-0380fa7235a4"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:57 GMT"
+ ],
+ "Content-Length": [
+ "997"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT19.598529S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "26683465-445b-4262-bc37-609a657bf9bf"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e1979539-0dd9-4bba-bda7-aa9e6a04a5b7"
+ ],
+ "x-ms-client-request-id": [
+ "26683465-445b-4262-bc37-609a657bf9bf",
+ "26683465-445b-4262-bc37-609a657bf9bf"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11260"
+ ],
+ "x-ms-correlation-request-id": [
+ "e1979539-0dd9-4bba-bda7-aa9e6a04a5b7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095558Z:e1979539-0dd9-4bba-bda7-aa9e6a04a5b7"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:57 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT19.8968455S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e4181026-927d-4b86-a0d9-966c349c32e7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "dd33abf3-870d-46f8-8b80-625f48e79621"
+ ],
+ "x-ms-client-request-id": [
+ "e4181026-927d-4b86-a0d9-966c349c32e7",
+ "e4181026-927d-4b86-a0d9-966c349c32e7"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11259"
+ ],
+ "x-ms-correlation-request-id": [
+ "dd33abf3-870d-46f8-8b80-625f48e79621"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095558Z:dd33abf3-870d-46f8-8b80-625f48e79621"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:57 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT20.1175157S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d673a10b-8b49-49f6-98eb-649c1661c697"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "4ff6f710-e8ae-48fd-b48b-0d77e8db5807"
+ ],
+ "x-ms-client-request-id": [
+ "d673a10b-8b49-49f6-98eb-649c1661c697",
+ "d673a10b-8b49-49f6-98eb-649c1661c697"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11258"
+ ],
+ "x-ms-correlation-request-id": [
+ "4ff6f710-e8ae-48fd-b48b-0d77e8db5807"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095558Z:4ff6f710-e8ae-48fd-b48b-0d77e8db5807"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:58 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT20.3980331S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "23d07317-1c8c-4216-8d5a-e3223d156f99"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e52bb1bb-d436-48f0-a648-3a357b248dc1"
+ ],
+ "x-ms-client-request-id": [
+ "23d07317-1c8c-4216-8d5a-e3223d156f99",
+ "23d07317-1c8c-4216-8d5a-e3223d156f99"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11257"
+ ],
+ "x-ms-correlation-request-id": [
+ "e52bb1bb-d436-48f0-a648-3a357b248dc1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095559Z:e52bb1bb-d436-48f0-a648-3a357b248dc1"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:58 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT20.6312586S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "07c074c0-075a-43d8-af57-6b1ca4147092"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "d7ada161-9197-4acd-8f59-6f8c192a956a"
+ ],
+ "x-ms-client-request-id": [
+ "07c074c0-075a-43d8-af57-6b1ca4147092",
+ "07c074c0-075a-43d8-af57-6b1ca4147092"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11256"
+ ],
+ "x-ms-correlation-request-id": [
+ "d7ada161-9197-4acd-8f59-6f8c192a956a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095559Z:d7ada161-9197-4acd-8f59-6f8c192a956a"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:58 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT20.8714122S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cee10339-6aec-4959-b91d-7e1a865ff94b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "a9137a79-53a8-4307-b109-ad1ed7260bfc"
+ ],
+ "x-ms-client-request-id": [
+ "cee10339-6aec-4959-b91d-7e1a865ff94b",
+ "cee10339-6aec-4959-b91d-7e1a865ff94b"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11255"
+ ],
+ "x-ms-correlation-request-id": [
+ "a9137a79-53a8-4307-b109-ad1ed7260bfc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095559Z:a9137a79-53a8-4307-b109-ad1ed7260bfc"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:58 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.1351277S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0bdae875-f4c8-4440-ba53-8793bc294505"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "d6ba7417-8c4a-41bc-bcec-a3499959e05d"
+ ],
+ "x-ms-client-request-id": [
+ "0bdae875-f4c8-4440-ba53-8793bc294505",
+ "0bdae875-f4c8-4440-ba53-8793bc294505"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11254"
+ ],
+ "x-ms-correlation-request-id": [
+ "d6ba7417-8c4a-41bc-bcec-a3499959e05d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095559Z:d6ba7417-8c4a-41bc-bcec-a3499959e05d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:59 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.3656694S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "031c71e7-4824-4499-a634-f2e2e3c93a72"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e1414610-0878-4fbb-bf69-b0c71150bb1a"
+ ],
+ "x-ms-client-request-id": [
+ "031c71e7-4824-4499-a634-f2e2e3c93a72",
+ "031c71e7-4824-4499-a634-f2e2e3c93a72"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11253"
+ ],
+ "x-ms-correlation-request-id": [
+ "e1414610-0878-4fbb-bf69-b0c71150bb1a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095600Z:e1414610-0878-4fbb-bf69-b0c71150bb1a"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:59 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.5844497S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "93c6df08-d9e2-4dc5-9e33-dad69979891f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "abf97125-864c-4356-af26-cc863e13b966"
+ ],
+ "x-ms-client-request-id": [
+ "93c6df08-d9e2-4dc5-9e33-dad69979891f",
+ "93c6df08-d9e2-4dc5-9e33-dad69979891f"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11252"
+ ],
+ "x-ms-correlation-request-id": [
+ "abf97125-864c-4356-af26-cc863e13b966"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095600Z:abf97125-864c-4356-af26-cc863e13b966"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:55:59 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.8382794S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "96c00fe3-3cad-4529-a61a-2f831cb5d87c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "353d1e40-edf4-4d20-9af1-10949cb385c4"
+ ],
+ "x-ms-client-request-id": [
+ "96c00fe3-3cad-4529-a61a-2f831cb5d87c",
+ "96c00fe3-3cad-4529-a61a-2f831cb5d87c"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11251"
+ ],
+ "x-ms-correlation-request-id": [
+ "353d1e40-edf4-4d20-9af1-10949cb385c4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095600Z:353d1e40-edf4-4d20-9af1-10949cb385c4"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:00 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT22.1613214S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6f9b41a4-c417-40e9-bcc4-bf06b99b2737"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "25bd2cdd-30b3-4ed1-83c9-e612dc1dacdf"
+ ],
+ "x-ms-client-request-id": [
+ "6f9b41a4-c417-40e9-bcc4-bf06b99b2737",
+ "6f9b41a4-c417-40e9-bcc4-bf06b99b2737"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11250"
+ ],
+ "x-ms-correlation-request-id": [
+ "25bd2cdd-30b3-4ed1-83c9-e612dc1dacdf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095600Z:25bd2cdd-30b3-4ed1-83c9-e612dc1dacdf"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:00 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT22.3851729S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "15da286c-cf3a-41fc-9fe2-839410c19294"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "6b38e4c9-97de-4f82-a303-ee6d38b6f34a"
+ ],
+ "x-ms-client-request-id": [
+ "15da286c-cf3a-41fc-9fe2-839410c19294",
+ "15da286c-cf3a-41fc-9fe2-839410c19294"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11249"
+ ],
+ "x-ms-correlation-request-id": [
+ "6b38e4c9-97de-4f82-a303-ee6d38b6f34a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095601Z:6b38e4c9-97de-4f82-a303-ee6d38b6f34a"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:00 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT22.7394658S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2c6d7618-94a4-4a9e-925d-54e4b1d27726"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "90dd6f8a-0454-4d31-891d-3863634b481c"
+ ],
+ "x-ms-client-request-id": [
+ "2c6d7618-94a4-4a9e-925d-54e4b1d27726",
+ "2c6d7618-94a4-4a9e-925d-54e4b1d27726"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11248"
+ ],
+ "x-ms-correlation-request-id": [
+ "90dd6f8a-0454-4d31-891d-3863634b481c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095601Z:90dd6f8a-0454-4d31-891d-3863634b481c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:00 GMT"
+ ],
+ "Content-Length": [
+ "997"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT22.989473S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f973e998-05e4-4c1d-a324-dc4e61e9a7e8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "527f65fe-064d-48d4-b76b-7e2ee2e9d1dd"
+ ],
+ "x-ms-client-request-id": [
+ "f973e998-05e4-4c1d-a324-dc4e61e9a7e8",
+ "f973e998-05e4-4c1d-a324-dc4e61e9a7e8"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11247"
+ ],
+ "x-ms-correlation-request-id": [
+ "527f65fe-064d-48d4-b76b-7e2ee2e9d1dd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095601Z:527f65fe-064d-48d4-b76b-7e2ee2e9d1dd"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:01 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT23.2399753S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7caaf8a0-83a9-4f24-8519-9eafe2fbc5bf"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "b74fc0fc-1caa-4858-8869-113213a1b2d3"
+ ],
+ "x-ms-client-request-id": [
+ "7caaf8a0-83a9-4f24-8519-9eafe2fbc5bf",
+ "7caaf8a0-83a9-4f24-8519-9eafe2fbc5bf"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11246"
+ ],
+ "x-ms-correlation-request-id": [
+ "b74fc0fc-1caa-4858-8869-113213a1b2d3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095601Z:b74fc0fc-1caa-4858-8869-113213a1b2d3"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:01 GMT"
+ ],
+ "Content-Length": [
+ "997"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT23.510214S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a6c0ae4e-0135-4df0-bd8a-b2d6b27a69f4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "9acdc244-e3cf-40cd-aaaf-971f317d0bc9"
+ ],
+ "x-ms-client-request-id": [
+ "a6c0ae4e-0135-4df0-bd8a-b2d6b27a69f4",
+ "a6c0ae4e-0135-4df0-bd8a-b2d6b27a69f4"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11245"
+ ],
+ "x-ms-correlation-request-id": [
+ "9acdc244-e3cf-40cd-aaaf-971f317d0bc9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095602Z:9acdc244-e3cf-40cd-aaaf-971f317d0bc9"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:01 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT23.7731079S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ed26e172-d3f3-467d-8f84-337c1a460cb0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "70962cf3-8916-4943-95b2-892844f67b0f"
+ ],
+ "x-ms-client-request-id": [
+ "ed26e172-d3f3-467d-8f84-337c1a460cb0",
+ "ed26e172-d3f3-467d-8f84-337c1a460cb0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11244"
+ ],
+ "x-ms-correlation-request-id": [
+ "70962cf3-8916-4943-95b2-892844f67b0f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095602Z:70962cf3-8916-4943-95b2-892844f67b0f"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:01 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT23.9789803S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cec9c8b3-dfd6-49e9-82da-1ec9c658441c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "31d7eb97-1b20-4770-b366-71dc4589a87c"
+ ],
+ "x-ms-client-request-id": [
+ "cec9c8b3-dfd6-49e9-82da-1ec9c658441c",
+ "cec9c8b3-dfd6-49e9-82da-1ec9c658441c"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11243"
+ ],
+ "x-ms-correlation-request-id": [
+ "31d7eb97-1b20-4770-b366-71dc4589a87c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095602Z:31d7eb97-1b20-4770-b366-71dc4589a87c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:02 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT24.2295288S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "48f83836-0309-4903-b0ba-7620a68be833"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f23bb351-0f4d-42b1-8d97-24dc0e6efd5a"
+ ],
+ "x-ms-client-request-id": [
+ "48f83836-0309-4903-b0ba-7620a68be833",
+ "48f83836-0309-4903-b0ba-7620a68be833"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11242"
+ ],
+ "x-ms-correlation-request-id": [
+ "f23bb351-0f4d-42b1-8d97-24dc0e6efd5a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095602Z:f23bb351-0f4d-42b1-8d97-24dc0e6efd5a"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:02 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT24.5258734S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1d2623b6-bd84-4bd2-86a6-d267c2410ec6"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c8cba826-dbef-43b1-8479-087d2695fe77"
+ ],
+ "x-ms-client-request-id": [
+ "1d2623b6-bd84-4bd2-86a6-d267c2410ec6",
+ "1d2623b6-bd84-4bd2-86a6-d267c2410ec6"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11241"
+ ],
+ "x-ms-correlation-request-id": [
+ "c8cba826-dbef-43b1-8479-087d2695fe77"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095603Z:c8cba826-dbef-43b1-8479-087d2695fe77"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:02 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT24.8227658S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "539961b1-d494-415d-8ee7-e0d14df2d9d8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "1c77f2f3-1ef2-4543-9b02-aa88b3377be9"
+ ],
+ "x-ms-client-request-id": [
+ "539961b1-d494-415d-8ee7-e0d14df2d9d8",
+ "539961b1-d494-415d-8ee7-e0d14df2d9d8"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11240"
+ ],
+ "x-ms-correlation-request-id": [
+ "1c77f2f3-1ef2-4543-9b02-aa88b3377be9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095603Z:1c77f2f3-1ef2-4543-9b02-aa88b3377be9"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:02 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT25.0883989S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "428ee05c-83b1-458c-bf8f-2c99b6de75b8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c93b87be-7977-40e5-b012-9e634f7b7f12"
+ ],
+ "x-ms-client-request-id": [
+ "428ee05c-83b1-458c-bf8f-2c99b6de75b8",
+ "428ee05c-83b1-458c-bf8f-2c99b6de75b8"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11239"
+ ],
+ "x-ms-correlation-request-id": [
+ "c93b87be-7977-40e5-b012-9e634f7b7f12"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095603Z:c93b87be-7977-40e5-b012-9e634f7b7f12"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:03 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT25.3227844S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e4973a26-8ed0-4deb-8630-bf3cd88c51c2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "cee315ab-f5bc-4ad1-b7ec-d6d96ea6ff62"
+ ],
+ "x-ms-client-request-id": [
+ "e4973a26-8ed0-4deb-8630-bf3cd88c51c2",
+ "e4973a26-8ed0-4deb-8630-bf3cd88c51c2"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11238"
+ ],
+ "x-ms-correlation-request-id": [
+ "cee315ab-f5bc-4ad1-b7ec-d6d96ea6ff62"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095604Z:cee315ab-f5bc-4ad1-b7ec-d6d96ea6ff62"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:03 GMT"
+ ],
+ "Content-Length": [
+ "997"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT25.541544S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b277ddb4-066c-44e2-82cf-be1149700641"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "ac48fd7e-77e6-4eb8-8c19-19e4bb2563f7"
+ ],
+ "x-ms-client-request-id": [
+ "b277ddb4-066c-44e2-82cf-be1149700641",
+ "b277ddb4-066c-44e2-82cf-be1149700641"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11237"
+ ],
+ "x-ms-correlation-request-id": [
+ "ac48fd7e-77e6-4eb8-8c19-19e4bb2563f7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095604Z:ac48fd7e-77e6-4eb8-8c19-19e4bb2563f7"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:03 GMT"
+ ],
+ "Content-Length": [
+ "997"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT25.818447S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6fe43eca-2a12-446b-abe8-b85376895d62"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "4b559ac2-f399-4bfb-9e17-a0bf4a26abc0"
+ ],
+ "x-ms-client-request-id": [
+ "6fe43eca-2a12-446b-abe8-b85376895d62",
+ "6fe43eca-2a12-446b-abe8-b85376895d62"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11236"
+ ],
+ "x-ms-correlation-request-id": [
+ "4b559ac2-f399-4bfb-9e17-a0bf4a26abc0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095604Z:4b559ac2-f399-4bfb-9e17-a0bf4a26abc0"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:03 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT26.0884362S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "828dc676-f248-4b04-bd5e-c416b78d921d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "1b0f47c2-6bda-4b81-9b0f-af115b2881c2"
+ ],
+ "x-ms-client-request-id": [
+ "828dc676-f248-4b04-bd5e-c416b78d921d",
+ "828dc676-f248-4b04-bd5e-c416b78d921d"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11235"
+ ],
+ "x-ms-correlation-request-id": [
+ "1b0f47c2-6bda-4b81-9b0f-af115b2881c2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095604Z:1b0f47c2-6bda-4b81-9b0f-af115b2881c2"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:04 GMT"
+ ],
+ "Content-Length": [
+ "997"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT26.400138S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "359f33e4-6feb-44e3-b46e-b8de1fd4e59b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "2779690e-f404-492c-b49c-54943944d967"
+ ],
+ "x-ms-client-request-id": [
+ "359f33e4-6feb-44e3-b46e-b8de1fd4e59b",
+ "359f33e4-6feb-44e3-b46e-b8de1fd4e59b"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11234"
+ ],
+ "x-ms-correlation-request-id": [
+ "2779690e-f404-492c-b49c-54943944d967"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095605Z:2779690e-f404-492c-b49c-54943944d967"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:04 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT26.6153572S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bd2afc42-b374-4c49-901a-71d0095bccb2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "992de278-54af-45b5-a74d-616828a84e80"
+ ],
+ "x-ms-client-request-id": [
+ "bd2afc42-b374-4c49-901a-71d0095bccb2",
+ "bd2afc42-b374-4c49-901a-71d0095bccb2"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11233"
+ ],
+ "x-ms-correlation-request-id": [
+ "992de278-54af-45b5-a74d-616828a84e80"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095605Z:992de278-54af-45b5-a74d-616828a84e80"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:04 GMT"
+ ],
+ "Content-Length": [
+ "997"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT26.846959S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "69a4d61c-2755-499a-9487-c5398c9275e1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "7c17b959-edf2-4c79-a710-c6ae1a76cbce"
+ ],
+ "x-ms-client-request-id": [
+ "69a4d61c-2755-499a-9487-c5398c9275e1",
+ "69a4d61c-2755-499a-9487-c5398c9275e1"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11232"
+ ],
+ "x-ms-correlation-request-id": [
+ "7c17b959-edf2-4c79-a710-c6ae1a76cbce"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095605Z:7c17b959-edf2-4c79-a710-c6ae1a76cbce"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:04 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT27.1189201S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1ad2ef5f-a666-416d-befb-991cea0a366a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "99b47954-c3af-488a-881a-622337f3c844"
+ ],
+ "x-ms-client-request-id": [
+ "1ad2ef5f-a666-416d-befb-991cea0a366a",
+ "1ad2ef5f-a666-416d-befb-991cea0a366a"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11231"
+ ],
+ "x-ms-correlation-request-id": [
+ "99b47954-c3af-488a-881a-622337f3c844"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095605Z:99b47954-c3af-488a-881a-622337f3c844"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:05 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT27.3899522S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3ac737ca-c454-4f2d-b74d-d9f49b1cab3d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "1dfc298a-a25e-488b-9f74-a720fd936ddd"
+ ],
+ "x-ms-client-request-id": [
+ "3ac737ca-c454-4f2d-b74d-d9f49b1cab3d",
+ "3ac737ca-c454-4f2d-b74d-d9f49b1cab3d"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11230"
+ ],
+ "x-ms-correlation-request-id": [
+ "1dfc298a-a25e-488b-9f74-a720fd936ddd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095606Z:1dfc298a-a25e-488b-9f74-a720fd936ddd"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:05 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT27.6970797S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c7b1118e-6775-4914-8904-3755b1097eb0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "6c67392a-9ec6-4038-8f4d-74df617ba179"
+ ],
+ "x-ms-client-request-id": [
+ "c7b1118e-6775-4914-8904-3755b1097eb0",
+ "c7b1118e-6775-4914-8904-3755b1097eb0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11229"
+ ],
+ "x-ms-correlation-request-id": [
+ "6c67392a-9ec6-4038-8f4d-74df617ba179"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095606Z:6c67392a-9ec6-4038-8f4d-74df617ba179"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:05 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT27.9720224S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "683e9d2d-ca54-442b-bcd5-b044ab507aa2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "1a86a69e-f751-4610-89de-992778cda451"
+ ],
+ "x-ms-client-request-id": [
+ "683e9d2d-ca54-442b-bcd5-b044ab507aa2",
+ "683e9d2d-ca54-442b-bcd5-b044ab507aa2"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11228"
+ ],
+ "x-ms-correlation-request-id": [
+ "1a86a69e-f751-4610-89de-992778cda451"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095606Z:1a86a69e-f751-4610-89de-992778cda451"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:05 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT28.1886282S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a23efbee-3d1d-4918-a11f-b50c42e49eaa"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e297847c-e4cc-442f-9977-5523a1416528"
+ ],
+ "x-ms-client-request-id": [
+ "a23efbee-3d1d-4918-a11f-b50c42e49eaa",
+ "a23efbee-3d1d-4918-a11f-b50c42e49eaa"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11227"
+ ],
+ "x-ms-correlation-request-id": [
+ "e297847c-e4cc-442f-9977-5523a1416528"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095607Z:e297847c-e4cc-442f-9977-5523a1416528"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:06 GMT"
+ ],
+ "Content-Length": [
+ "997"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT28.550548S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7737acf8-e02a-49e9-ad58-ab2d068eb87e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "0b4520b1-c587-4469-8273-3e2fae71d8ad"
+ ],
+ "x-ms-client-request-id": [
+ "7737acf8-e02a-49e9-ad58-ab2d068eb87e",
+ "7737acf8-e02a-49e9-ad58-ab2d068eb87e"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11226"
+ ],
+ "x-ms-correlation-request-id": [
+ "0b4520b1-c587-4469-8273-3e2fae71d8ad"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095607Z:0b4520b1-c587-4469-8273-3e2fae71d8ad"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:06 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT28.7823835S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "994283a2-cd5e-46ed-a8d0-cebfec9a991c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f0fa7805-17f3-4005-9b58-54b66bfcf021"
+ ],
+ "x-ms-client-request-id": [
+ "994283a2-cd5e-46ed-a8d0-cebfec9a991c",
+ "994283a2-cd5e-46ed-a8d0-cebfec9a991c"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11225"
+ ],
+ "x-ms-correlation-request-id": [
+ "f0fa7805-17f3-4005-9b58-54b66bfcf021"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095607Z:f0fa7805-17f3-4005-9b58-54b66bfcf021"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:06 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT29.0666901S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e4b481e0-1994-4d0a-ae5c-ac368c395dd2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "ad550a56-88e1-4fcd-bb90-19b283d64b81"
+ ],
+ "x-ms-client-request-id": [
+ "e4b481e0-1994-4d0a-ae5c-ac368c395dd2",
+ "e4b481e0-1994-4d0a-ae5c-ac368c395dd2"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11224"
+ ],
+ "x-ms-correlation-request-id": [
+ "ad550a56-88e1-4fcd-bb90-19b283d64b81"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095607Z:ad550a56-88e1-4fcd-bb90-19b283d64b81"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:07 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT29.3037334S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "56916022-3407-4a35-997b-a8c57694a343"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "107bdc2a-74a5-40af-a39a-7a98f03c0f5d"
+ ],
+ "x-ms-client-request-id": [
+ "56916022-3407-4a35-997b-a8c57694a343",
+ "56916022-3407-4a35-997b-a8c57694a343"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11223"
+ ],
+ "x-ms-correlation-request-id": [
+ "107bdc2a-74a5-40af-a39a-7a98f03c0f5d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095607Z:107bdc2a-74a5-40af-a39a-7a98f03c0f5d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:07 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT29.5224951S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6644a078-3ac2-4829-a7a2-4380c2de99e2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f71d74bb-a1d4-4d15-9209-d5f1f6010c5c"
+ ],
+ "x-ms-client-request-id": [
+ "6644a078-3ac2-4829-a7a2-4380c2de99e2",
+ "6644a078-3ac2-4829-a7a2-4380c2de99e2"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11222"
+ ],
+ "x-ms-correlation-request-id": [
+ "f71d74bb-a1d4-4d15-9209-d5f1f6010c5c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095608Z:f71d74bb-a1d4-4d15-9209-d5f1f6010c5c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:07 GMT"
+ ],
+ "Content-Length": [
+ "997"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT29.816261S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "01baee41-d232-4cf9-8210-384a5992cee1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "aa2c8599-5853-42d0-a3f3-daa544ba9dd9"
+ ],
+ "x-ms-client-request-id": [
+ "01baee41-d232-4cf9-8210-384a5992cee1",
+ "01baee41-d232-4cf9-8210-384a5992cee1"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11221"
+ ],
+ "x-ms-correlation-request-id": [
+ "aa2c8599-5853-42d0-a3f3-daa544ba9dd9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095608Z:aa2c8599-5853-42d0-a3f3-daa544ba9dd9"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:07 GMT"
+ ],
+ "Content-Length": [
+ "997"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT30.043302S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8e50990b-6d04-463c-9819-f8cf132c7828"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "ab5c6e0c-aa76-4698-a103-1acd81b9debe"
+ ],
+ "x-ms-client-request-id": [
+ "8e50990b-6d04-463c-9819-f8cf132c7828",
+ "8e50990b-6d04-463c-9819-f8cf132c7828"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11220"
+ ],
+ "x-ms-correlation-request-id": [
+ "ab5c6e0c-aa76-4698-a103-1acd81b9debe"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095608Z:ab5c6e0c-aa76-4698-a103-1acd81b9debe"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:08 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT30.3194024S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2f07faf7-c9b1-4ca4-97ea-3e53a232e6c8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "d601c93d-34d8-4abf-8a72-ac726589fdb0"
+ ],
+ "x-ms-client-request-id": [
+ "2f07faf7-c9b1-4ca4-97ea-3e53a232e6c8",
+ "2f07faf7-c9b1-4ca4-97ea-3e53a232e6c8"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11219"
+ ],
+ "x-ms-correlation-request-id": [
+ "d601c93d-34d8-4abf-8a72-ac726589fdb0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095609Z:d601c93d-34d8-4abf-8a72-ac726589fdb0"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:08 GMT"
+ ],
+ "Content-Length": [
+ "997"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT30.553789S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1022369d-5d4d-4df0-b50b-868ad1965465"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "5b4abc38-dcae-4075-a680-54d17854ca9b"
+ ],
+ "x-ms-client-request-id": [
+ "1022369d-5d4d-4df0-b50b-868ad1965465",
+ "1022369d-5d4d-4df0-b50b-868ad1965465"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11218"
+ ],
+ "x-ms-correlation-request-id": [
+ "5b4abc38-dcae-4075-a680-54d17854ca9b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095609Z:5b4abc38-dcae-4075-a680-54d17854ca9b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:08 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT30.7694201S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f43515c9-e459-4ad7-a8d6-39a0bf87297e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "555c6b1f-a7c7-4fc8-bac5-28a233d99ce4"
+ ],
+ "x-ms-client-request-id": [
+ "f43515c9-e459-4ad7-a8d6-39a0bf87297e",
+ "f43515c9-e459-4ad7-a8d6-39a0bf87297e"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11217"
+ ],
+ "x-ms-correlation-request-id": [
+ "555c6b1f-a7c7-4fc8-bac5-28a233d99ce4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095609Z:555c6b1f-a7c7-4fc8-bac5-28a233d99ce4"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:08 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT31.0381815S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "26c09dda-4f24-4fd2-ab4a-46d6a45baab1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "36523ede-3815-4b43-b323-d7fd502d222f"
+ ],
+ "x-ms-client-request-id": [
+ "26c09dda-4f24-4fd2-ab4a-46d6a45baab1",
+ "26c09dda-4f24-4fd2-ab4a-46d6a45baab1"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11216"
+ ],
+ "x-ms-correlation-request-id": [
+ "36523ede-3815-4b43-b323-d7fd502d222f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095609Z:36523ede-3815-4b43-b323-d7fd502d222f"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:08 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT31.2567325S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "91a2d691-3b9f-420d-811e-1a86acb155ce"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "1dc94794-b4d3-4492-a5cb-0dfef6828804"
+ ],
+ "x-ms-client-request-id": [
+ "91a2d691-3b9f-420d-811e-1a86acb155ce",
+ "91a2d691-3b9f-420d-811e-1a86acb155ce"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11215"
+ ],
+ "x-ms-correlation-request-id": [
+ "1dc94794-b4d3-4492-a5cb-0dfef6828804"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095609Z:1dc94794-b4d3-4492-a5cb-0dfef6828804"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:09 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT31.5124346S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "669740c9-bed9-4f55-bd03-dd9b257068f9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "a9de3116-13d1-454f-ab6e-ee43136b2892"
+ ],
+ "x-ms-client-request-id": [
+ "669740c9-bed9-4f55-bd03-dd9b257068f9",
+ "669740c9-bed9-4f55-bd03-dd9b257068f9"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11214"
+ ],
+ "x-ms-correlation-request-id": [
+ "a9de3116-13d1-454f-ab6e-ee43136b2892"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095610Z:a9de3116-13d1-454f-ab6e-ee43136b2892"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:09 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT31.8093456S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "daa49547-d6f5-4290-bb3c-e53f0de88e19"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "91f3cfc6-be8f-45d6-be84-7aa46869a4c0"
+ ],
+ "x-ms-client-request-id": [
+ "daa49547-d6f5-4290-bb3c-e53f0de88e19",
+ "daa49547-d6f5-4290-bb3c-e53f0de88e19"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11213"
+ ],
+ "x-ms-correlation-request-id": [
+ "91f3cfc6-be8f-45d6-be84-7aa46869a4c0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095610Z:91f3cfc6-be8f-45d6-be84-7aa46869a4c0"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:09 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT32.1132163S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3705685c-d024-442f-a201-53c1a238ab34"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "6176eae9-b681-4f42-8951-c71e9c46e1c9"
+ ],
+ "x-ms-client-request-id": [
+ "3705685c-d024-442f-a201-53c1a238ab34",
+ "3705685c-d024-442f-a201-53c1a238ab34"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11212"
+ ],
+ "x-ms-correlation-request-id": [
+ "6176eae9-b681-4f42-8951-c71e9c46e1c9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095610Z:6176eae9-b681-4f42-8951-c71e9c46e1c9"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:10 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT32.3412752S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4601d744-a769-4f5c-8acd-35a01a3e1a90"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "70797a6f-0f74-4ed5-b7fa-de1a9cd208fa"
+ ],
+ "x-ms-client-request-id": [
+ "4601d744-a769-4f5c-8acd-35a01a3e1a90",
+ "4601d744-a769-4f5c-8acd-35a01a3e1a90"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11211"
+ ],
+ "x-ms-correlation-request-id": [
+ "70797a6f-0f74-4ed5-b7fa-de1a9cd208fa"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095611Z:70797a6f-0f74-4ed5-b7fa-de1a9cd208fa"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:10 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT32.5653665S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6991ddd8-f9f8-48d0-a5a4-16de23ec1048"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "6a7b36f6-4f76-4717-83ed-3f3893e34f0b"
+ ],
+ "x-ms-client-request-id": [
+ "6991ddd8-f9f8-48d0-a5a4-16de23ec1048",
+ "6991ddd8-f9f8-48d0-a5a4-16de23ec1048"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11210"
+ ],
+ "x-ms-correlation-request-id": [
+ "6a7b36f6-4f76-4717-83ed-3f3893e34f0b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095611Z:6a7b36f6-4f76-4717-83ed-3f3893e34f0b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:10 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT32.7986816S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "10dc6b3d-b7e4-404d-8296-f99a011d95bc"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f4e77ba0-a191-4769-8a14-71a57b1c238d"
+ ],
+ "x-ms-client-request-id": [
+ "10dc6b3d-b7e4-404d-8296-f99a011d95bc",
+ "10dc6b3d-b7e4-404d-8296-f99a011d95bc"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11209"
+ ],
+ "x-ms-correlation-request-id": [
+ "f4e77ba0-a191-4769-8a14-71a57b1c238d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095611Z:f4e77ba0-a191-4769-8a14-71a57b1c238d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:10 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT33.0507851S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9c0bcdb9-8c48-4699-811d-e27a3e6d66c8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "38b73e9d-c1ad-40d6-9d27-88d263e224e4"
+ ],
+ "x-ms-client-request-id": [
+ "9c0bcdb9-8c48-4699-811d-e27a3e6d66c8",
+ "9c0bcdb9-8c48-4699-811d-e27a3e6d66c8"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11208"
+ ],
+ "x-ms-correlation-request-id": [
+ "38b73e9d-c1ad-40d6-9d27-88d263e224e4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095611Z:38b73e9d-c1ad-40d6-9d27-88d263e224e4"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:11 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT33.3492738S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c7d176ae-0a90-4837-8edc-483255d32e7b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "a74d451b-c482-4e25-9693-b04d75e87a3a"
+ ],
+ "x-ms-client-request-id": [
+ "c7d176ae-0a90-4837-8edc-483255d32e7b",
+ "c7d176ae-0a90-4837-8edc-483255d32e7b"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11207"
+ ],
+ "x-ms-correlation-request-id": [
+ "a74d451b-c482-4e25-9693-b04d75e87a3a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095612Z:a74d451b-c482-4e25-9693-b04d75e87a3a"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:11 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT33.6069222S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2b66ec97-5143-4771-ae2b-1b2c8dded022"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "117405f5-1a93-4b8d-8d5c-deef3db6c2f9"
+ ],
+ "x-ms-client-request-id": [
+ "2b66ec97-5143-4771-ae2b-1b2c8dded022",
+ "2b66ec97-5143-4771-ae2b-1b2c8dded022"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11206"
+ ],
+ "x-ms-correlation-request-id": [
+ "117405f5-1a93-4b8d-8d5c-deef3db6c2f9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095612Z:117405f5-1a93-4b8d-8d5c-deef3db6c2f9"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:11 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT33.8413201S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6b391eb8-33e3-4a57-a0eb-6aaa1293beb8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "5ac605a6-810e-4273-8af9-f217ca5232e9"
+ ],
+ "x-ms-client-request-id": [
+ "6b391eb8-33e3-4a57-a0eb-6aaa1293beb8",
+ "6b391eb8-33e3-4a57-a0eb-6aaa1293beb8"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11205"
+ ],
+ "x-ms-correlation-request-id": [
+ "5ac605a6-810e-4273-8af9-f217ca5232e9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095612Z:5ac605a6-810e-4273-8af9-f217ca5232e9"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:11 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT34.1207912S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy83NmVhYTU4Yi0yZGUzLTRjMmUtYmYzYS05YWE5ZGVjODA3NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9adbe2af-6151-4e62-b7d7-3ea9794e3413"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "1402e2f7-25ca-47c7-907e-65b5d2c84d1c"
+ ],
+ "x-ms-client-request-id": [
+ "9adbe2af-6151-4e62-b7d7-3ea9794e3413",
+ "9adbe2af-6151-4e62-b7d7-3ea9794e3413"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11204"
+ ],
+ "x-ms-correlation-request-id": [
+ "1402e2f7-25ca-47c7-907e-65b5d2c84d1c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095612Z:1402e2f7-25ca-47c7-907e-65b5d2c84d1c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:12 GMT"
+ ],
+ "Content-Length": [
+ "1088"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"name\": \"76eaa58b-2de3-4c2e-bf3a-9aa9dec80742\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT33.1511313S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"3/19/2020 9:51:40 AM\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"1\",\r\n \"Number Of Restored Files\": \"1\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2020-03-19T09:55:38.40009Z\",\r\n \"endTime\": \"2020-03-19T09:56:11.5512213Z\",\r\n \"activityId\": \"48b9d5aa-bae2-4ce8-b467-34e9d5307f0e\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2583e5d8-fbf0-42c1-a5a7-9b1fd75eaa81?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yNTgzZTVkOC1mYmYwLTQyYzEtYTVhNy05YjFmZDc1ZWFhODE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "dbfc37cf-44c9-4af3-b603-486d87d8605d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "514e3913-6882-4c1e-aecc-343a13c46354"
+ ],
+ "x-ms-client-request-id": [
+ "dbfc37cf-44c9-4af3-b603-486d87d8605d",
+ "dbfc37cf-44c9-4af3-b603-486d87d8605d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11203"
+ ],
+ "x-ms-correlation-request-id": [
+ "514e3913-6882-4c1e-aecc-343a13c46354"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095634Z:514e3913-6882-4c1e-aecc-343a13c46354"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:34 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"2583e5d8-fbf0-42c1-a5a7-9b1fd75eaa81\",\r\n \"name\": \"2583e5d8-fbf0-42c1-a5a7-9b1fd75eaa81\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2583e5d8-fbf0-42c1-a5a7-9b1fd75eaa81?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yNTgzZTVkOC1mYmYwLTQyYzEtYTVhNy05YjFmZDc1ZWFhODE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "99dfc4a1-258b-4e63-82a1-95f7a18b79ae"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c7c1c305-6f5e-4fe9-b70f-ae435e9bbddd"
+ ],
+ "x-ms-client-request-id": [
+ "99dfc4a1-258b-4e63-82a1-95f7a18b79ae",
+ "99dfc4a1-258b-4e63-82a1-95f7a18b79ae"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11202"
+ ],
+ "x-ms-correlation-request-id": [
+ "c7c1c305-6f5e-4fe9-b70f-ae435e9bbddd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095634Z:c7c1c305-6f5e-4fe9-b70f-ae435e9bbddd"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:34 GMT"
+ ],
+ "Content-Length": [
+ "304"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"2583e5d8-fbf0-42c1-a5a7-9b1fd75eaa81\",\r\n \"name\": \"2583e5d8-fbf0-42c1-a5a7-9b1fd75eaa81\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"endTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2583e5d8-fbf0-42c1-a5a7-9b1fd75eaa81?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yNTgzZTVkOC1mYmYwLTQyYzEtYTVhNy05YjFmZDc1ZWFhODE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0a6cc3ee-24bd-4c24-9bde-0fa96b8b8248"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "858e4630-a3ee-4b25-b2e2-297734f020b3"
+ ],
+ "x-ms-client-request-id": [
+ "0a6cc3ee-24bd-4c24-9bde-0fa96b8b8248",
+ "0a6cc3ee-24bd-4c24-9bde-0fa96b8b8248"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11201"
+ ],
+ "x-ms-correlation-request-id": [
+ "858e4630-a3ee-4b25-b2e2-297734f020b3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095634Z:858e4630-a3ee-4b25-b2e2-297734f020b3"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:34 GMT"
+ ],
+ "Content-Length": [
+ "304"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"2583e5d8-fbf0-42c1-a5a7-9b1fd75eaa81\",\r\n \"name\": \"2583e5d8-fbf0-42c1-a5a7-9b1fd75eaa81\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"endTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "510923fd-a60b-4f79-b3bd-3eab8159044b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "aeb3388f-33d0-4b2e-a667-f2bac8e0fcd8"
+ ],
+ "x-ms-client-request-id": [
+ "510923fd-a60b-4f79-b3bd-3eab8159044b",
+ "510923fd-a60b-4f79-b3bd-3eab8159044b"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11200"
+ ],
+ "x-ms-correlation-request-id": [
+ "aeb3388f-33d0-4b2e-a667-f2bac8e0fcd8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095635Z:aeb3388f-33d0-4b2e-a667-f2bac8e0fcd8"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:34 GMT"
+ ],
+ "Content-Length": [
+ "704"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT1.8625992S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {}\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d423155e-bb8c-497d-b577-826475b9e271"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "0c0d86bf-4fbf-4f0b-a9fe-414522c885ea"
+ ],
+ "x-ms-client-request-id": [
+ "d423155e-bb8c-497d-b577-826475b9e271",
+ "d423155e-bb8c-497d-b577-826475b9e271"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11199"
+ ],
+ "x-ms-correlation-request-id": [
+ "0c0d86bf-4fbf-4f0b-a9fe-414522c885ea"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095635Z:0c0d86bf-4fbf-4f0b-a9fe-414522c885ea"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:35 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT2.2647185S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b9a4d9ba-2bbc-458b-87bd-9623e04ad1c0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "08c46e41-a29a-4002-bf19-5eac26985ca3"
+ ],
+ "x-ms-client-request-id": [
+ "b9a4d9ba-2bbc-458b-87bd-9623e04ad1c0",
+ "b9a4d9ba-2bbc-458b-87bd-9623e04ad1c0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11198"
+ ],
+ "x-ms-correlation-request-id": [
+ "08c46e41-a29a-4002-bf19-5eac26985ca3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095636Z:08c46e41-a29a-4002-bf19-5eac26985ca3"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:36 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT3.1999335S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "78aa04b2-c56b-40d6-8031-e94202c9eede"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "b1836748-9471-439a-859b-dd11d6aa72d5"
+ ],
+ "x-ms-client-request-id": [
+ "78aa04b2-c56b-40d6-8031-e94202c9eede",
+ "78aa04b2-c56b-40d6-8031-e94202c9eede"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11197"
+ ],
+ "x-ms-correlation-request-id": [
+ "b1836748-9471-439a-859b-dd11d6aa72d5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095636Z:b1836748-9471-439a-859b-dd11d6aa72d5"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:36 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT3.444116S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9b261bfe-ddc0-4a2a-a63d-b549a38dd28a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "7c4ac554-3e51-4d3d-a346-e90faafe1e02"
+ ],
+ "x-ms-client-request-id": [
+ "9b261bfe-ddc0-4a2a-a63d-b549a38dd28a",
+ "9b261bfe-ddc0-4a2a-a63d-b549a38dd28a"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11196"
+ ],
+ "x-ms-correlation-request-id": [
+ "7c4ac554-3e51-4d3d-a346-e90faafe1e02"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095636Z:7c4ac554-3e51-4d3d-a346-e90faafe1e02"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:36 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT3.7443619S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a02c5e6b-bdb0-4cd2-9cf3-297b5f5ed591"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f59bd96f-6fd7-49d7-a58b-cdb33ec93b58"
+ ],
+ "x-ms-client-request-id": [
+ "a02c5e6b-bdb0-4cd2-9cf3-297b5f5ed591",
+ "a02c5e6b-bdb0-4cd2-9cf3-297b5f5ed591"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11195"
+ ],
+ "x-ms-correlation-request-id": [
+ "f59bd96f-6fd7-49d7-a58b-cdb33ec93b58"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095637Z:f59bd96f-6fd7-49d7-a58b-cdb33ec93b58"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:37 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT3.9976892S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "63bc6f5c-12f9-4177-bfe9-f8097bd95a22"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "36d0afbb-f682-44f4-bdfd-29262311d160"
+ ],
+ "x-ms-client-request-id": [
+ "63bc6f5c-12f9-4177-bfe9-f8097bd95a22",
+ "63bc6f5c-12f9-4177-bfe9-f8097bd95a22"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11194"
+ ],
+ "x-ms-correlation-request-id": [
+ "36d0afbb-f682-44f4-bdfd-29262311d160"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095637Z:36d0afbb-f682-44f4-bdfd-29262311d160"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:37 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT4.325826S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f1d24c5c-f2b7-47e9-b1fa-79b3c69cfea3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "4fde1768-ece3-452d-9359-f596c5a7a73e"
+ ],
+ "x-ms-client-request-id": [
+ "f1d24c5c-f2b7-47e9-b1fa-79b3c69cfea3",
+ "f1d24c5c-f2b7-47e9-b1fa-79b3c69cfea3"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11193"
+ ],
+ "x-ms-correlation-request-id": [
+ "4fde1768-ece3-452d-9359-f596c5a7a73e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095637Z:4fde1768-ece3-452d-9359-f596c5a7a73e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:37 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT4.6009581S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fcb0fff9-4a3a-4938-aa37-eb83c9c55d24"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e1dd9ae3-b124-408e-9c4a-7a675aa52c81"
+ ],
+ "x-ms-client-request-id": [
+ "fcb0fff9-4a3a-4938-aa37-eb83c9c55d24",
+ "fcb0fff9-4a3a-4938-aa37-eb83c9c55d24"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11192"
+ ],
+ "x-ms-correlation-request-id": [
+ "e1dd9ae3-b124-408e-9c4a-7a675aa52c81"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095638Z:e1dd9ae3-b124-408e-9c4a-7a675aa52c81"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:38 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT4.9475627S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6b09ef81-2321-4f98-bd8b-25b7fd41f536"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "01deb2d1-889f-453a-bb3e-e7000ba30dfa"
+ ],
+ "x-ms-client-request-id": [
+ "6b09ef81-2321-4f98-bd8b-25b7fd41f536",
+ "6b09ef81-2321-4f98-bd8b-25b7fd41f536"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11191"
+ ],
+ "x-ms-correlation-request-id": [
+ "01deb2d1-889f-453a-bb3e-e7000ba30dfa"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095638Z:01deb2d1-889f-453a-bb3e-e7000ba30dfa"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:38 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT5.2288282S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "24ee9837-f899-4146-8f6c-d4c09700a006"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "15665ccb-5803-4834-a84a-d99a4f3fdb8f"
+ ],
+ "x-ms-client-request-id": [
+ "24ee9837-f899-4146-8f6c-d4c09700a006",
+ "24ee9837-f899-4146-8f6c-d4c09700a006"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11190"
+ ],
+ "x-ms-correlation-request-id": [
+ "15665ccb-5803-4834-a84a-d99a4f3fdb8f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095638Z:15665ccb-5803-4834-a84a-d99a4f3fdb8f"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:38 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT5.4856254S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f69e3b43-50d7-4cb0-bed6-e01d5e10bbbf"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "ae0c31ed-c58a-4b25-99a3-0f404a8381f8"
+ ],
+ "x-ms-client-request-id": [
+ "f69e3b43-50d7-4cb0-bed6-e01d5e10bbbf",
+ "f69e3b43-50d7-4cb0-bed6-e01d5e10bbbf"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11189"
+ ],
+ "x-ms-correlation-request-id": [
+ "ae0c31ed-c58a-4b25-99a3-0f404a8381f8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095638Z:ae0c31ed-c58a-4b25-99a3-0f404a8381f8"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:38 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT5.7421028S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "348c164e-cd38-4a88-b78c-37f66b68f2ad"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "35f2f276-89c2-4c79-8ec3-325bd7b4ce4e"
+ ],
+ "x-ms-client-request-id": [
+ "348c164e-cd38-4a88-b78c-37f66b68f2ad",
+ "348c164e-cd38-4a88-b78c-37f66b68f2ad"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11188"
+ ],
+ "x-ms-correlation-request-id": [
+ "35f2f276-89c2-4c79-8ec3-325bd7b4ce4e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095639Z:35f2f276-89c2-4c79-8ec3-325bd7b4ce4e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:39 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT5.9776647S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1786fa13-adca-493c-9d91-a1fd397e6d3c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "0cdc9e6c-4c43-4cde-8ced-face9c4ff33e"
+ ],
+ "x-ms-client-request-id": [
+ "1786fa13-adca-493c-9d91-a1fd397e6d3c",
+ "1786fa13-adca-493c-9d91-a1fd397e6d3c"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11187"
+ ],
+ "x-ms-correlation-request-id": [
+ "0cdc9e6c-4c43-4cde-8ced-face9c4ff33e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095639Z:0cdc9e6c-4c43-4cde-8ced-face9c4ff33e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:39 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT6.2264916S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1be4d851-145d-4284-abb6-47a174dee7e5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "ef17256c-c2c9-482b-a77d-42134c2cf207"
+ ],
+ "x-ms-client-request-id": [
+ "1be4d851-145d-4284-abb6-47a174dee7e5",
+ "1be4d851-145d-4284-abb6-47a174dee7e5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11186"
+ ],
+ "x-ms-correlation-request-id": [
+ "ef17256c-c2c9-482b-a77d-42134c2cf207"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095639Z:ef17256c-c2c9-482b-a77d-42134c2cf207"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:39 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT6.5726374S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7f75c428-7b04-4b36-b8e8-4943ef603057"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "9d76019e-b583-4191-85c0-4d518bd3a6c6"
+ ],
+ "x-ms-client-request-id": [
+ "7f75c428-7b04-4b36-b8e8-4943ef603057",
+ "7f75c428-7b04-4b36-b8e8-4943ef603057"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11185"
+ ],
+ "x-ms-correlation-request-id": [
+ "9d76019e-b583-4191-85c0-4d518bd3a6c6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095640Z:9d76019e-b583-4191-85c0-4d518bd3a6c6"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:40 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT7.2137738S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8a5706d5-2271-4435-81ed-6d2d17ba58ff"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e7aea9b6-9e46-4b4f-ab80-497b24ab876f"
+ ],
+ "x-ms-client-request-id": [
+ "8a5706d5-2271-4435-81ed-6d2d17ba58ff",
+ "8a5706d5-2271-4435-81ed-6d2d17ba58ff"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11184"
+ ],
+ "x-ms-correlation-request-id": [
+ "e7aea9b6-9e46-4b4f-ab80-497b24ab876f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095640Z:e7aea9b6-9e46-4b4f-ab80-497b24ab876f"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:40 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT7.4544554S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "616f1cfa-8137-4acc-b225-5fe7e2c64ab6"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "7186a3c0-7fd9-4782-83b4-a6741092e87f"
+ ],
+ "x-ms-client-request-id": [
+ "616f1cfa-8137-4acc-b225-5fe7e2c64ab6",
+ "616f1cfa-8137-4acc-b225-5fe7e2c64ab6"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11183"
+ ],
+ "x-ms-correlation-request-id": [
+ "7186a3c0-7fd9-4782-83b4-a6741092e87f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095640Z:7186a3c0-7fd9-4782-83b4-a6741092e87f"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:40 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT7.7441581S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "16549767-3548-46fd-8b8b-984e3ffb247c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "92cfb3c6-a012-4211-ac56-e91ad19576d2"
+ ],
+ "x-ms-client-request-id": [
+ "16549767-3548-46fd-8b8b-984e3ffb247c",
+ "16549767-3548-46fd-8b8b-984e3ffb247c"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11182"
+ ],
+ "x-ms-correlation-request-id": [
+ "92cfb3c6-a012-4211-ac56-e91ad19576d2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095641Z:92cfb3c6-a012-4211-ac56-e91ad19576d2"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:41 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT8.1669389S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "91aeaade-98dc-4b59-929b-06f8719c57fb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "eeaa5c61-32ea-4c4f-8644-22947c4892a7"
+ ],
+ "x-ms-client-request-id": [
+ "91aeaade-98dc-4b59-929b-06f8719c57fb",
+ "91aeaade-98dc-4b59-929b-06f8719c57fb"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11181"
+ ],
+ "x-ms-correlation-request-id": [
+ "eeaa5c61-32ea-4c4f-8644-22947c4892a7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095641Z:eeaa5c61-32ea-4c4f-8644-22947c4892a7"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:41 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT8.4481996S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "57d54833-8676-4758-948e-5f70e72d1451"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "a52e27d1-b3d3-4c1e-82a4-9d18b09e601a"
+ ],
+ "x-ms-client-request-id": [
+ "57d54833-8676-4758-948e-5f70e72d1451",
+ "57d54833-8676-4758-948e-5f70e72d1451"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11180"
+ ],
+ "x-ms-correlation-request-id": [
+ "a52e27d1-b3d3-4c1e-82a4-9d18b09e601a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095641Z:a52e27d1-b3d3-4c1e-82a4-9d18b09e601a"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:41 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT8.7002653S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "25c25639-aebd-4ffe-9018-1a22da979e63"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "9a176c52-5d95-4e8a-8cfa-e90ac9534623"
+ ],
+ "x-ms-client-request-id": [
+ "25c25639-aebd-4ffe-9018-1a22da979e63",
+ "25c25639-aebd-4ffe-9018-1a22da979e63"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11179"
+ ],
+ "x-ms-correlation-request-id": [
+ "9a176c52-5d95-4e8a-8cfa-e90ac9534623"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095642Z:9a176c52-5d95-4e8a-8cfa-e90ac9534623"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:42 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT8.9638408S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "099fb544-57e1-4b71-a47d-9cd1d00ab942"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "dc5c513c-758c-4533-a6f1-8cfa21d02d5b"
+ ],
+ "x-ms-client-request-id": [
+ "099fb544-57e1-4b71-a47d-9cd1d00ab942",
+ "099fb544-57e1-4b71-a47d-9cd1d00ab942"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11178"
+ ],
+ "x-ms-correlation-request-id": [
+ "dc5c513c-758c-4533-a6f1-8cfa21d02d5b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095642Z:dc5c513c-758c-4533-a6f1-8cfa21d02d5b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:42 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT9.2940465S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "376e8d3b-d826-4d90-9cd5-a490f013eefb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "72f214d7-91dc-47a0-89e3-07d3ce083fcf"
+ ],
+ "x-ms-client-request-id": [
+ "376e8d3b-d826-4d90-9cd5-a490f013eefb",
+ "376e8d3b-d826-4d90-9cd5-a490f013eefb"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11177"
+ ],
+ "x-ms-correlation-request-id": [
+ "72f214d7-91dc-47a0-89e3-07d3ce083fcf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095642Z:72f214d7-91dc-47a0-89e3-07d3ce083fcf"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:42 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT9.6669963S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6d1fad14-f87f-4247-8930-8a3b6891ebae"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "47902e47-7df6-4a2b-b431-8991476389e9"
+ ],
+ "x-ms-client-request-id": [
+ "6d1fad14-f87f-4247-8930-8a3b6891ebae",
+ "6d1fad14-f87f-4247-8930-8a3b6891ebae"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11176"
+ ],
+ "x-ms-correlation-request-id": [
+ "47902e47-7df6-4a2b-b431-8991476389e9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095643Z:47902e47-7df6-4a2b-b431-8991476389e9"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:43 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT9.9816038S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8ff2a142-e3a9-492e-af58-dd16b053650e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "b1e84c7f-6678-4605-bd19-f8819c450dc7"
+ ],
+ "x-ms-client-request-id": [
+ "8ff2a142-e3a9-492e-af58-dd16b053650e",
+ "8ff2a142-e3a9-492e-af58-dd16b053650e"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11175"
+ ],
+ "x-ms-correlation-request-id": [
+ "b1e84c7f-6678-4605-bd19-f8819c450dc7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095643Z:b1e84c7f-6678-4605-bd19-f8819c450dc7"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:43 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT10.278488S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4482528c-2d92-4c01-92a3-07386890c78e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "8855f68c-a6a8-46ee-b180-b10716e0d01a"
+ ],
+ "x-ms-client-request-id": [
+ "4482528c-2d92-4c01-92a3-07386890c78e",
+ "4482528c-2d92-4c01-92a3-07386890c78e"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11174"
+ ],
+ "x-ms-correlation-request-id": [
+ "8855f68c-a6a8-46ee-b180-b10716e0d01a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095643Z:8855f68c-a6a8-46ee-b180-b10716e0d01a"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:43 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT10.559727S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d22d5e90-8e13-4e04-b1d2-d95db7e1118c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "8394d20c-d277-4197-8b56-dfee447f999d"
+ ],
+ "x-ms-client-request-id": [
+ "d22d5e90-8e13-4e04-b1d2-d95db7e1118c",
+ "d22d5e90-8e13-4e04-b1d2-d95db7e1118c"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11173"
+ ],
+ "x-ms-correlation-request-id": [
+ "8394d20c-d277-4197-8b56-dfee447f999d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095643Z:8394d20c-d277-4197-8b56-dfee447f999d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:43 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT10.8006252S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "857a5eb7-8ffe-447b-ae86-83836ba0b564"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "60bcb7ca-236c-495d-bbb0-37e67e67502a"
+ ],
+ "x-ms-client-request-id": [
+ "857a5eb7-8ffe-447b-ae86-83836ba0b564",
+ "857a5eb7-8ffe-447b-ae86-83836ba0b564"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11172"
+ ],
+ "x-ms-correlation-request-id": [
+ "60bcb7ca-236c-495d-bbb0-37e67e67502a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095644Z:60bcb7ca-236c-495d-bbb0-37e67e67502a"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:44 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT11.1871469S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4b2e6430-cac1-4149-b5e1-0ce68310feab"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "07fe9c9e-7c1e-4c29-b0b9-b7f818cc98dd"
+ ],
+ "x-ms-client-request-id": [
+ "4b2e6430-cac1-4149-b5e1-0ce68310feab",
+ "4b2e6430-cac1-4149-b5e1-0ce68310feab"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11171"
+ ],
+ "x-ms-correlation-request-id": [
+ "07fe9c9e-7c1e-4c29-b0b9-b7f818cc98dd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095644Z:07fe9c9e-7c1e-4c29-b0b9-b7f818cc98dd"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:44 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT11.4504168S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a6d973ce-f3ca-4141-a13e-ca9fdb4e1c0f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "5907da87-dcaf-445d-a32a-911a5746a29b"
+ ],
+ "x-ms-client-request-id": [
+ "a6d973ce-f3ca-4141-a13e-ca9fdb4e1c0f",
+ "a6d973ce-f3ca-4141-a13e-ca9fdb4e1c0f"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11170"
+ ],
+ "x-ms-correlation-request-id": [
+ "5907da87-dcaf-445d-a32a-911a5746a29b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095644Z:5907da87-dcaf-445d-a32a-911a5746a29b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:44 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT11.682756S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "53eef58a-1814-43ec-8f99-6024e0b6f689"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "68e3218b-c7d4-4279-ac4f-62cfb856bdda"
+ ],
+ "x-ms-client-request-id": [
+ "53eef58a-1814-43ec-8f99-6024e0b6f689",
+ "53eef58a-1814-43ec-8f99-6024e0b6f689"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11169"
+ ],
+ "x-ms-correlation-request-id": [
+ "68e3218b-c7d4-4279-ac4f-62cfb856bdda"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095645Z:68e3218b-c7d4-4279-ac4f-62cfb856bdda"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:44 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT11.9191571S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f84fe1d5-f0bb-4639-937e-0cf2149a6dba"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "8b2ba958-c3e8-4dc9-9bb2-81a459eba10b"
+ ],
+ "x-ms-client-request-id": [
+ "f84fe1d5-f0bb-4639-937e-0cf2149a6dba",
+ "f84fe1d5-f0bb-4639-937e-0cf2149a6dba"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11168"
+ ],
+ "x-ms-correlation-request-id": [
+ "8b2ba958-c3e8-4dc9-9bb2-81a459eba10b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095645Z:8b2ba958-c3e8-4dc9-9bb2-81a459eba10b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:45 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT12.1848363S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cb9b73ae-8c8c-4d80-a988-b3d825e65fd7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "77823ad9-e85f-406f-ad9c-d53e82a14a84"
+ ],
+ "x-ms-client-request-id": [
+ "cb9b73ae-8c8c-4d80-a988-b3d825e65fd7",
+ "cb9b73ae-8c8c-4d80-a988-b3d825e65fd7"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11167"
+ ],
+ "x-ms-correlation-request-id": [
+ "77823ad9-e85f-406f-ad9c-d53e82a14a84"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095645Z:77823ad9-e85f-406f-ad9c-d53e82a14a84"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:45 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT12.4093607S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7b363100-4214-4607-9452-f4fcd529ebf2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "d0506f87-6021-4562-82a0-f1cda859538f"
+ ],
+ "x-ms-client-request-id": [
+ "7b363100-4214-4607-9452-f4fcd529ebf2",
+ "7b363100-4214-4607-9452-f4fcd529ebf2"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11166"
+ ],
+ "x-ms-correlation-request-id": [
+ "d0506f87-6021-4562-82a0-f1cda859538f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095645Z:d0506f87-6021-4562-82a0-f1cda859538f"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:45 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT12.6790876S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "031645e0-2c29-4fdb-ba6e-6c0db97ab1f3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "b40c80e1-a30a-4334-96d1-2d74c0539c46"
+ ],
+ "x-ms-client-request-id": [
+ "031645e0-2c29-4fdb-ba6e-6c0db97ab1f3",
+ "031645e0-2c29-4fdb-ba6e-6c0db97ab1f3"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11165"
+ ],
+ "x-ms-correlation-request-id": [
+ "b40c80e1-a30a-4334-96d1-2d74c0539c46"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095646Z:b40c80e1-a30a-4334-96d1-2d74c0539c46"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:45 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT12.9866156S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7a726849-f970-4ca2-9702-6f9a6d2b4b35"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "3e1aebc8-0801-4bbc-b1c0-b53f0866dd29"
+ ],
+ "x-ms-client-request-id": [
+ "7a726849-f970-4ca2-9702-6f9a6d2b4b35",
+ "7a726849-f970-4ca2-9702-6f9a6d2b4b35"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11164"
+ ],
+ "x-ms-correlation-request-id": [
+ "3e1aebc8-0801-4bbc-b1c0-b53f0866dd29"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095646Z:3e1aebc8-0801-4bbc-b1c0-b53f0866dd29"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:46 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT13.310661S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4fa55cbe-5046-4ffd-880c-84b1ef4d6449"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "50e2afe8-7d4f-4aa2-a983-ebaecd7aa0a0"
+ ],
+ "x-ms-client-request-id": [
+ "4fa55cbe-5046-4ffd-880c-84b1ef4d6449",
+ "4fa55cbe-5046-4ffd-880c-84b1ef4d6449"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11163"
+ ],
+ "x-ms-correlation-request-id": [
+ "50e2afe8-7d4f-4aa2-a983-ebaecd7aa0a0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095646Z:50e2afe8-7d4f-4aa2-a983-ebaecd7aa0a0"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:46 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT13.5541142S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f4f1127d-1e4b-4e37-be4b-baa952bf9cd7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "6498a99d-24bd-4585-842e-fa2e66a0d336"
+ ],
+ "x-ms-client-request-id": [
+ "f4f1127d-1e4b-4e37-be4b-baa952bf9cd7",
+ "f4f1127d-1e4b-4e37-be4b-baa952bf9cd7"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11162"
+ ],
+ "x-ms-correlation-request-id": [
+ "6498a99d-24bd-4585-842e-fa2e66a0d336"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095646Z:6498a99d-24bd-4585-842e-fa2e66a0d336"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:46 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT13.7868535S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0d29494e-021b-441d-b735-dfe93399c335"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "b2682120-4b39-40f2-b17a-6f6b781afd62"
+ ],
+ "x-ms-client-request-id": [
+ "0d29494e-021b-441d-b735-dfe93399c335",
+ "0d29494e-021b-441d-b735-dfe93399c335"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11161"
+ ],
+ "x-ms-correlation-request-id": [
+ "b2682120-4b39-40f2-b17a-6f6b781afd62"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095647Z:b2682120-4b39-40f2-b17a-6f6b781afd62"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:47 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT14.4094646S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "96327faf-7cc9-42b2-a120-61d635159cda"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "48e3de77-b6b4-40cb-8191-ab4f7b977cb9"
+ ],
+ "x-ms-client-request-id": [
+ "96327faf-7cc9-42b2-a120-61d635159cda",
+ "96327faf-7cc9-42b2-a120-61d635159cda"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11160"
+ ],
+ "x-ms-correlation-request-id": [
+ "48e3de77-b6b4-40cb-8191-ab4f7b977cb9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095647Z:48e3de77-b6b4-40cb-8191-ab4f7b977cb9"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:47 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT14.6438492S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c773b06f-7a77-48a8-acf6-cac4c971292d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "20cce949-e017-4243-ab87-e7527fccf3e0"
+ ],
+ "x-ms-client-request-id": [
+ "c773b06f-7a77-48a8-acf6-cac4c971292d",
+ "c773b06f-7a77-48a8-acf6-cac4c971292d"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11159"
+ ],
+ "x-ms-correlation-request-id": [
+ "20cce949-e017-4243-ab87-e7527fccf3e0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095648Z:20cce949-e017-4243-ab87-e7527fccf3e0"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:47 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT14.9886076S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "73191c34-6383-40ae-a674-81044f8ecdde"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c4aecd3e-e2cb-4d2a-9d7c-dbc808daa1ba"
+ ],
+ "x-ms-client-request-id": [
+ "73191c34-6383-40ae-a674-81044f8ecdde",
+ "73191c34-6383-40ae-a674-81044f8ecdde"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11158"
+ ],
+ "x-ms-correlation-request-id": [
+ "c4aecd3e-e2cb-4d2a-9d7c-dbc808daa1ba"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095648Z:c4aecd3e-e2cb-4d2a-9d7c-dbc808daa1ba"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:48 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT15.3198055S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "140c6bb3-4ae4-41eb-b999-ae5800632381"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "0407a2cc-5c23-467a-92cc-efbef621b686"
+ ],
+ "x-ms-client-request-id": [
+ "140c6bb3-4ae4-41eb-b999-ae5800632381",
+ "140c6bb3-4ae4-41eb-b999-ae5800632381"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11157"
+ ],
+ "x-ms-correlation-request-id": [
+ "0407a2cc-5c23-467a-92cc-efbef621b686"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095648Z:0407a2cc-5c23-467a-92cc-efbef621b686"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:48 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT15.550144S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2e0a41e9-56e7-452d-baea-a6f20f96ee2b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "cbbcfbfc-5249-44af-94b7-2ad1458527d5"
+ ],
+ "x-ms-client-request-id": [
+ "2e0a41e9-56e7-452d-baea-a6f20f96ee2b",
+ "2e0a41e9-56e7-452d-baea-a6f20f96ee2b"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11156"
+ ],
+ "x-ms-correlation-request-id": [
+ "cbbcfbfc-5249-44af-94b7-2ad1458527d5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095648Z:cbbcfbfc-5249-44af-94b7-2ad1458527d5"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:48 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT15.7885731S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cbed926c-537d-4a60-8ec1-a1c49028b8b4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "33f8681b-17c6-44d9-b038-a71c479178cc"
+ ],
+ "x-ms-client-request-id": [
+ "cbed926c-537d-4a60-8ec1-a1c49028b8b4",
+ "cbed926c-537d-4a60-8ec1-a1c49028b8b4"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11155"
+ ],
+ "x-ms-correlation-request-id": [
+ "33f8681b-17c6-44d9-b038-a71c479178cc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095649Z:33f8681b-17c6-44d9-b038-a71c479178cc"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:49 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT16.1079282S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "35750eb8-9468-4803-a9dd-958a07fdf917"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "4d20d93c-fddc-4c39-9acb-7caf8b99278b"
+ ],
+ "x-ms-client-request-id": [
+ "35750eb8-9468-4803-a9dd-958a07fdf917",
+ "35750eb8-9468-4803-a9dd-958a07fdf917"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11154"
+ ],
+ "x-ms-correlation-request-id": [
+ "4d20d93c-fddc-4c39-9acb-7caf8b99278b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095649Z:4d20d93c-fddc-4c39-9acb-7caf8b99278b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:49 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT16.3357836S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "62333abc-3547-4f1c-baaa-4d8e6a5b51df"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "59fa87d5-618a-432c-9576-a462c05f9097"
+ ],
+ "x-ms-client-request-id": [
+ "62333abc-3547-4f1c-baaa-4d8e6a5b51df",
+ "62333abc-3547-4f1c-baaa-4d8e6a5b51df"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11153"
+ ],
+ "x-ms-correlation-request-id": [
+ "59fa87d5-618a-432c-9576-a462c05f9097"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095649Z:59fa87d5-618a-432c-9576-a462c05f9097"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:49 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT16.5920719S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "48109595-ef1b-411a-b9df-3a58501f125d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "ed62f8f9-921f-4bb9-b9f4-af5ee16bd669"
+ ],
+ "x-ms-client-request-id": [
+ "48109595-ef1b-411a-b9df-3a58501f125d",
+ "48109595-ef1b-411a-b9df-3a58501f125d"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11152"
+ ],
+ "x-ms-correlation-request-id": [
+ "ed62f8f9-921f-4bb9-b9f4-af5ee16bd669"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095649Z:ed62f8f9-921f-4bb9-b9f4-af5ee16bd669"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:49 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT16.8355465S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2ba8b79f-1970-418c-86a1-a9d3c5f7f8a5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "9d1da876-a77f-408a-a23c-dbb079183fa0"
+ ],
+ "x-ms-client-request-id": [
+ "2ba8b79f-1970-418c-86a1-a9d3c5f7f8a5",
+ "2ba8b79f-1970-418c-86a1-a9d3c5f7f8a5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11151"
+ ],
+ "x-ms-correlation-request-id": [
+ "9d1da876-a77f-408a-a23c-dbb079183fa0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095650Z:9d1da876-a77f-408a-a23c-dbb079183fa0"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:50 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT17.0699286S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7559e4f1-3a56-4084-be1c-ce4f622ab808"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "9e73ad18-b814-49b8-ae46-c33368a1a856"
+ ],
+ "x-ms-client-request-id": [
+ "7559e4f1-3a56-4084-be1c-ce4f622ab808",
+ "7559e4f1-3a56-4084-be1c-ce4f622ab808"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11150"
+ ],
+ "x-ms-correlation-request-id": [
+ "9e73ad18-b814-49b8-ae46-c33368a1a856"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095650Z:9e73ad18-b814-49b8-ae46-c33368a1a856"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:50 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT17.3520734S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a64fe89c-7313-46f8-ac0c-083a7dd12f2b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "ca5104a3-d558-48b6-bd05-0f30c5566cff"
+ ],
+ "x-ms-client-request-id": [
+ "a64fe89c-7313-46f8-ac0c-083a7dd12f2b",
+ "a64fe89c-7313-46f8-ac0c-083a7dd12f2b"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11149"
+ ],
+ "x-ms-correlation-request-id": [
+ "ca5104a3-d558-48b6-bd05-0f30c5566cff"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095650Z:ca5104a3-d558-48b6-bd05-0f30c5566cff"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:50 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT17.616821S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d9064bf8-f291-4467-b142-7c49a6204168"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "78610d84-dd52-437f-90d8-c1cb5fdcb4f6"
+ ],
+ "x-ms-client-request-id": [
+ "d9064bf8-f291-4467-b142-7c49a6204168",
+ "d9064bf8-f291-4467-b142-7c49a6204168"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11148"
+ ],
+ "x-ms-correlation-request-id": [
+ "78610d84-dd52-437f-90d8-c1cb5fdcb4f6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095651Z:78610d84-dd52-437f-90d8-c1cb5fdcb4f6"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:50 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT17.8668282S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4dd0ade5-b19f-4772-b516-ebcfdf914ca4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "5023d87d-1c1e-4e78-a993-6695d073eb44"
+ ],
+ "x-ms-client-request-id": [
+ "4dd0ade5-b19f-4772-b516-ebcfdf914ca4",
+ "4dd0ade5-b19f-4772-b516-ebcfdf914ca4"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11147"
+ ],
+ "x-ms-correlation-request-id": [
+ "5023d87d-1c1e-4e78-a993-6695d073eb44"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095651Z:5023d87d-1c1e-4e78-a993-6695d073eb44"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:51 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT18.1333693S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "968318f7-87e7-43a7-817b-b8a7e969426c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "ba1d3c08-c940-4ec0-aeaf-e15288a459ea"
+ ],
+ "x-ms-client-request-id": [
+ "968318f7-87e7-43a7-817b-b8a7e969426c",
+ "968318f7-87e7-43a7-817b-b8a7e969426c"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11146"
+ ],
+ "x-ms-correlation-request-id": [
+ "ba1d3c08-c940-4ec0-aeaf-e15288a459ea"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095651Z:ba1d3c08-c940-4ec0-aeaf-e15288a459ea"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:51 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT18.4021768S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c47496f0-8d8f-4acf-b85e-0419e135f2bd"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "542f7e56-8c00-4f8b-9b9b-fa1f3ccd9d04"
+ ],
+ "x-ms-client-request-id": [
+ "c47496f0-8d8f-4acf-b85e-0419e135f2bd",
+ "c47496f0-8d8f-4acf-b85e-0419e135f2bd"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11145"
+ ],
+ "x-ms-correlation-request-id": [
+ "542f7e56-8c00-4f8b-9b9b-fa1f3ccd9d04"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095651Z:542f7e56-8c00-4f8b-9b9b-fa1f3ccd9d04"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:51 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT18.7117636S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "392eac74-e4bc-44aa-8fc3-7fcb002c6ffe"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "608c9556-933d-449d-bb25-22e248eb199a"
+ ],
+ "x-ms-client-request-id": [
+ "392eac74-e4bc-44aa-8fc3-7fcb002c6ffe",
+ "392eac74-e4bc-44aa-8fc3-7fcb002c6ffe"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11144"
+ ],
+ "x-ms-correlation-request-id": [
+ "608c9556-933d-449d-bb25-22e248eb199a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095652Z:608c9556-933d-449d-bb25-22e248eb199a"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:51 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT18.9490687S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b8055786-daa7-4389-b61f-9213bdbc739a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "0de66e4d-f8be-4911-a20a-4e275b16ec74"
+ ],
+ "x-ms-client-request-id": [
+ "b8055786-daa7-4389-b61f-9213bdbc739a",
+ "b8055786-daa7-4389-b61f-9213bdbc739a"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11143"
+ ],
+ "x-ms-correlation-request-id": [
+ "0de66e4d-f8be-4911-a20a-4e275b16ec74"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095652Z:0de66e4d-f8be-4911-a20a-4e275b16ec74"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:52 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT19.1990828S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fa1e86b3-8873-43a2-9078-9f805e6e640d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "85b57cbd-5573-49db-94d7-9db15287b8d7"
+ ],
+ "x-ms-client-request-id": [
+ "fa1e86b3-8873-43a2-9078-9f805e6e640d",
+ "fa1e86b3-8873-43a2-9078-9f805e6e640d"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11142"
+ ],
+ "x-ms-correlation-request-id": [
+ "85b57cbd-5573-49db-94d7-9db15287b8d7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095652Z:85b57cbd-5573-49db-94d7-9db15287b8d7"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:52 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT19.4529363S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "46d0e74d-582a-4a88-8df2-ae9e97c3541a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "6cacace1-571f-4290-8b05-25ac3a697ae6"
+ ],
+ "x-ms-client-request-id": [
+ "46d0e74d-582a-4a88-8df2-ae9e97c3541a",
+ "46d0e74d-582a-4a88-8df2-ae9e97c3541a"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11141"
+ ],
+ "x-ms-correlation-request-id": [
+ "6cacace1-571f-4290-8b05-25ac3a697ae6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095652Z:6cacace1-571f-4290-8b05-25ac3a697ae6"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:52 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT19.7147214S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e1972e21-0844-4bab-a9ad-8561b9117b7a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "97aefbff-ad25-4ee8-a5e9-679e86586650"
+ ],
+ "x-ms-client-request-id": [
+ "e1972e21-0844-4bab-a9ad-8561b9117b7a",
+ "e1972e21-0844-4bab-a9ad-8561b9117b7a"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11140"
+ ],
+ "x-ms-correlation-request-id": [
+ "97aefbff-ad25-4ee8-a5e9-679e86586650"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095653Z:97aefbff-ad25-4ee8-a5e9-679e86586650"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:52 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT19.952954S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4df769f9-3324-4aad-adf8-687eb45fe3ef"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "548637cb-8158-42f0-8675-0666037b2512"
+ ],
+ "x-ms-client-request-id": [
+ "4df769f9-3324-4aad-adf8-687eb45fe3ef",
+ "4df769f9-3324-4aad-adf8-687eb45fe3ef"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11139"
+ ],
+ "x-ms-correlation-request-id": [
+ "548637cb-8158-42f0-8675-0666037b2512"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095653Z:548637cb-8158-42f0-8675-0666037b2512"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:53 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT20.2386299S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3c381a75-f7ae-424a-a059-5b679bde26fa"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "ce134519-4f13-4df7-ac41-51493beaffce"
+ ],
+ "x-ms-client-request-id": [
+ "3c381a75-f7ae-424a-a059-5b679bde26fa",
+ "3c381a75-f7ae-424a-a059-5b679bde26fa"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11138"
+ ],
+ "x-ms-correlation-request-id": [
+ "ce134519-4f13-4df7-ac41-51493beaffce"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095653Z:ce134519-4f13-4df7-ac41-51493beaffce"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:53 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT20.5045273S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a22b61ee-b75a-4af2-93d6-1bfd43c49d77"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "43d266a5-3ea5-4aba-84a5-8a10c07c166f"
+ ],
+ "x-ms-client-request-id": [
+ "a22b61ee-b75a-4af2-93d6-1bfd43c49d77",
+ "a22b61ee-b75a-4af2-93d6-1bfd43c49d77"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11137"
+ ],
+ "x-ms-correlation-request-id": [
+ "43d266a5-3ea5-4aba-84a5-8a10c07c166f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095653Z:43d266a5-3ea5-4aba-84a5-8a10c07c166f"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:53 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT20.7389314S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a2ea5432-04c0-49c2-93e5-de4f8f7ea23d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f1737555-9258-4881-99c4-d839b30a6aab"
+ ],
+ "x-ms-client-request-id": [
+ "a2ea5432-04c0-49c2-93e5-de4f8f7ea23d",
+ "a2ea5432-04c0-49c2-93e5-de4f8f7ea23d"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11136"
+ ],
+ "x-ms-correlation-request-id": [
+ "f1737555-9258-4881-99c4-d839b30a6aab"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095654Z:f1737555-9258-4881-99c4-d839b30a6aab"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:53 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.0227075S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7bd9032d-5fff-469e-8ace-020b7b94c739"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "48bc1c4e-5fe8-44f1-a264-74beb4450982"
+ ],
+ "x-ms-client-request-id": [
+ "7bd9032d-5fff-469e-8ace-020b7b94c739",
+ "7bd9032d-5fff-469e-8ace-020b7b94c739"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11135"
+ ],
+ "x-ms-correlation-request-id": [
+ "48bc1c4e-5fe8-44f1-a264-74beb4450982"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095654Z:48bc1c4e-5fe8-44f1-a264-74beb4450982"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:54 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.3554217S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2dda7a03-112c-470e-a364-0a9de0f1b0f8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "1784ce21-614b-4052-b35e-5a58487aa3a3"
+ ],
+ "x-ms-client-request-id": [
+ "2dda7a03-112c-470e-a364-0a9de0f1b0f8",
+ "2dda7a03-112c-470e-a364-0a9de0f1b0f8"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11134"
+ ],
+ "x-ms-correlation-request-id": [
+ "1784ce21-614b-4052-b35e-5a58487aa3a3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095654Z:1784ce21-614b-4052-b35e-5a58487aa3a3"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:54 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.6137111S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a61c7cc2-1458-4a6a-8474-2144c66ade0a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "0c0ec715-010c-42b0-9b39-d14842dcb140"
+ ],
+ "x-ms-client-request-id": [
+ "a61c7cc2-1458-4a6a-8474-2144c66ade0a",
+ "a61c7cc2-1458-4a6a-8474-2144c66ade0a"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11133"
+ ],
+ "x-ms-correlation-request-id": [
+ "0c0ec715-010c-42b0-9b39-d14842dcb140"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095655Z:0c0ec715-010c-42b0-9b39-d14842dcb140"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:54 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.8636781S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d18898c1-0efd-449e-9bf9-5da851f046b0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e704c3d1-7b4e-4232-a6c4-49f1650a4b9c"
+ ],
+ "x-ms-client-request-id": [
+ "d18898c1-0efd-449e-9bf9-5da851f046b0",
+ "d18898c1-0efd-449e-9bf9-5da851f046b0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11132"
+ ],
+ "x-ms-correlation-request-id": [
+ "e704c3d1-7b4e-4232-a6c4-49f1650a4b9c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095655Z:e704c3d1-7b4e-4232-a6c4-49f1650a4b9c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:54 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT22.1761912S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fec98c36-c7fa-4c87-9b34-7b56c437b54e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "ca25b416-7e04-4037-a6db-4475551d9cc6"
+ ],
+ "x-ms-client-request-id": [
+ "fec98c36-c7fa-4c87-9b34-7b56c437b54e",
+ "fec98c36-c7fa-4c87-9b34-7b56c437b54e"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11131"
+ ],
+ "x-ms-correlation-request-id": [
+ "ca25b416-7e04-4037-a6db-4475551d9cc6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095655Z:ca25b416-7e04-4037-a6db-4475551d9cc6"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:55 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT22.582946S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2b43a760-8580-4097-a113-3bc8ff2cd086"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "09d71453-ea8f-43f0-911c-51c87aa68f9f"
+ ],
+ "x-ms-client-request-id": [
+ "2b43a760-8580-4097-a113-3bc8ff2cd086",
+ "2b43a760-8580-4097-a113-3bc8ff2cd086"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11130"
+ ],
+ "x-ms-correlation-request-id": [
+ "09d71453-ea8f-43f0-911c-51c87aa68f9f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095656Z:09d71453-ea8f-43f0-911c-51c87aa68f9f"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:55 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT22.9036244S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c7780824-02fe-4855-a0fb-2c9dc72bbafa"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "0020e4f5-d17f-47c8-8d7e-7f666512354d"
+ ],
+ "x-ms-client-request-id": [
+ "c7780824-02fe-4855-a0fb-2c9dc72bbafa",
+ "c7780824-02fe-4855-a0fb-2c9dc72bbafa"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11129"
+ ],
+ "x-ms-correlation-request-id": [
+ "0020e4f5-d17f-47c8-8d7e-7f666512354d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095656Z:0020e4f5-d17f-47c8-8d7e-7f666512354d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:56 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT23.2548492S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "44ad042c-29dd-4966-a5cc-b73759350c2c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e16b3321-dc8c-47cd-bf03-143303211c43"
+ ],
+ "x-ms-client-request-id": [
+ "44ad042c-29dd-4966-a5cc-b73759350c2c",
+ "44ad042c-29dd-4966-a5cc-b73759350c2c"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11128"
+ ],
+ "x-ms-correlation-request-id": [
+ "e16b3321-dc8c-47cd-bf03-143303211c43"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095656Z:e16b3321-dc8c-47cd-bf03-143303211c43"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:56 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT23.5673627S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9c817408-91d0-44f3-a7ff-af1bc801d0be"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "beacbbd2-ce89-4988-bcd9-e9c3b9b2ac80"
+ ],
+ "x-ms-client-request-id": [
+ "9c817408-91d0-44f3-a7ff-af1bc801d0be",
+ "9c817408-91d0-44f3-a7ff-af1bc801d0be"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11127"
+ ],
+ "x-ms-correlation-request-id": [
+ "beacbbd2-ce89-4988-bcd9-e9c3b9b2ac80"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095656Z:beacbbd2-ce89-4988-bcd9-e9c3b9b2ac80"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:56 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT23.8017507S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "70b68447-a1ff-4f3c-97b7-9927c6692fd4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "fdeba734-15b5-40d8-bcc2-ddad85126b47"
+ ],
+ "x-ms-client-request-id": [
+ "70b68447-a1ff-4f3c-97b7-9927c6692fd4",
+ "70b68447-a1ff-4f3c-97b7-9927c6692fd4"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11126"
+ ],
+ "x-ms-correlation-request-id": [
+ "fdeba734-15b5-40d8-bcc2-ddad85126b47"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095657Z:fdeba734-15b5-40d8-bcc2-ddad85126b47"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:56 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT24.1067936S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f678205b-0a99-4f1e-85fe-642703f224c7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "a5b8ce5a-aa9e-41a0-adb3-e9b626a9323b"
+ ],
+ "x-ms-client-request-id": [
+ "f678205b-0a99-4f1e-85fe-642703f224c7",
+ "f678205b-0a99-4f1e-85fe-642703f224c7"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11125"
+ ],
+ "x-ms-correlation-request-id": [
+ "a5b8ce5a-aa9e-41a0-adb3-e9b626a9323b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095657Z:a5b8ce5a-aa9e-41a0-adb3-e9b626a9323b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:57 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT24.3568047S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b9bfc58c-e95e-4b13-a4c2-10a2619ad1ff"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "68d16131-4da8-443c-9690-30f6c3139cfd"
+ ],
+ "x-ms-client-request-id": [
+ "b9bfc58c-e95e-4b13-a4c2-10a2619ad1ff",
+ "b9bfc58c-e95e-4b13-a4c2-10a2619ad1ff"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11124"
+ ],
+ "x-ms-correlation-request-id": [
+ "68d16131-4da8-443c-9690-30f6c3139cfd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095657Z:68d16131-4da8-443c-9690-30f6c3139cfd"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:57 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT24.6455232S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5ac72b5b-2681-4b41-a61a-7fb0190c9176"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c44013ec-ef3d-4a4d-9e05-17507bd9b00f"
+ ],
+ "x-ms-client-request-id": [
+ "5ac72b5b-2681-4b41-a61a-7fb0190c9176",
+ "5ac72b5b-2681-4b41-a61a-7fb0190c9176"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11123"
+ ],
+ "x-ms-correlation-request-id": [
+ "c44013ec-ef3d-4a4d-9e05-17507bd9b00f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095658Z:c44013ec-ef3d-4a4d-9e05-17507bd9b00f"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:57 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT25.059439S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "38bca089-04ab-4023-8f62-a712a2f69769"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "d59b44be-fd29-462f-922a-1481fdb07313"
+ ],
+ "x-ms-client-request-id": [
+ "38bca089-04ab-4023-8f62-a712a2f69769",
+ "38bca089-04ab-4023-8f62-a712a2f69769"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11122"
+ ],
+ "x-ms-correlation-request-id": [
+ "d59b44be-fd29-462f-922a-1481fdb07313"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095658Z:d59b44be-fd29-462f-922a-1481fdb07313"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:58 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT25.6441054S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b4ba1fd2-08d0-4e1f-a130-ec5314447ccd"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f7b0e91e-2346-4b2d-b264-c4ccbb9e3db4"
+ ],
+ "x-ms-client-request-id": [
+ "b4ba1fd2-08d0-4e1f-a130-ec5314447ccd",
+ "b4ba1fd2-08d0-4e1f-a130-ec5314447ccd"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11121"
+ ],
+ "x-ms-correlation-request-id": [
+ "f7b0e91e-2346-4b2d-b264-c4ccbb9e3db4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095659Z:f7b0e91e-2346-4b2d-b264-c4ccbb9e3db4"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:58 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT26.1708649S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c4695e9a-57ef-4ac2-816c-261c010c291b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "72186d86-473a-4e97-8b3d-45b4436dc81e"
+ ],
+ "x-ms-client-request-id": [
+ "c4695e9a-57ef-4ac2-816c-261c010c291b",
+ "c4695e9a-57ef-4ac2-816c-261c010c291b"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11120"
+ ],
+ "x-ms-correlation-request-id": [
+ "72186d86-473a-4e97-8b3d-45b4436dc81e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095659Z:72186d86-473a-4e97-8b3d-45b4436dc81e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:59 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT26.4208743S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f4d314a6-ab28-4ec6-bbb8-782c8ba680e7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "65fba062-98bd-4d20-946d-023acca0f9e5"
+ ],
+ "x-ms-client-request-id": [
+ "f4d314a6-ab28-4ec6-bbb8-782c8ba680e7",
+ "f4d314a6-ab28-4ec6-bbb8-782c8ba680e7"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11119"
+ ],
+ "x-ms-correlation-request-id": [
+ "65fba062-98bd-4d20-946d-023acca0f9e5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095659Z:65fba062-98bd-4d20-946d-023acca0f9e5"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:59 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT26.7013479S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ed44f238-f3fb-4337-ad43-1c0bebef4bd8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "969221a4-bb7d-452c-b27b-1717e8fbca24"
+ ],
+ "x-ms-client-request-id": [
+ "ed44f238-f3fb-4337-ad43-1c0bebef4bd8",
+ "ed44f238-f3fb-4337-ad43-1c0bebef4bd8"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11118"
+ ],
+ "x-ms-correlation-request-id": [
+ "969221a4-bb7d-452c-b27b-1717e8fbca24"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095700Z:969221a4-bb7d-452c-b27b-1717e8fbca24"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:56:59 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT27.1857398S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "070cdd08-3159-45b2-8423-483aad0d9e8b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "38f9eb65-91f9-4634-8e40-f53065703936"
+ ],
+ "x-ms-client-request-id": [
+ "070cdd08-3159-45b2-8423-483aad0d9e8b",
+ "070cdd08-3159-45b2-8423-483aad0d9e8b"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11117"
+ ],
+ "x-ms-correlation-request-id": [
+ "38f9eb65-91f9-4634-8e40-f53065703936"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095701Z:38f9eb65-91f9-4634-8e40-f53065703936"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:01 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT28.5737872S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "166b48b3-131a-4e2c-ad91-a9d3192954be"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e70fe517-6891-4b7f-99cb-c002e0615978"
+ ],
+ "x-ms-client-request-id": [
+ "166b48b3-131a-4e2c-ad91-a9d3192954be",
+ "166b48b3-131a-4e2c-ad91-a9d3192954be"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11116"
+ ],
+ "x-ms-correlation-request-id": [
+ "e70fe517-6891-4b7f-99cb-c002e0615978"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095701Z:e70fe517-6891-4b7f-99cb-c002e0615978"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:01 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT28.7803625S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d69e755b-70e9-427a-a51f-5fcfed270b66"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "efab7b00-29a7-4df9-a4d7-41926a1f4640"
+ ],
+ "x-ms-client-request-id": [
+ "d69e755b-70e9-427a-a51f-5fcfed270b66",
+ "d69e755b-70e9-427a-a51f-5fcfed270b66"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11115"
+ ],
+ "x-ms-correlation-request-id": [
+ "efab7b00-29a7-4df9-a4d7-41926a1f4640"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095702Z:efab7b00-29a7-4df9-a4d7-41926a1f4640"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:01 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT29.0043397S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7c018226-c7a9-4bf7-a271-67c2a3237c21"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "3b9d9d74-ae08-4439-82dc-27125babd555"
+ ],
+ "x-ms-client-request-id": [
+ "7c018226-c7a9-4bf7-a271-67c2a3237c21",
+ "7c018226-c7a9-4bf7-a271-67c2a3237c21"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11114"
+ ],
+ "x-ms-correlation-request-id": [
+ "3b9d9d74-ae08-4439-82dc-27125babd555"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095702Z:3b9d9d74-ae08-4439-82dc-27125babd555"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:01 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT29.2022559S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a59fc950-5adb-42fc-8009-443f19ddd18b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e5ac41e4-0a14-4be6-8e90-2fea2c963bf5"
+ ],
+ "x-ms-client-request-id": [
+ "a59fc950-5adb-42fc-8009-443f19ddd18b",
+ "a59fc950-5adb-42fc-8009-443f19ddd18b"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11113"
+ ],
+ "x-ms-correlation-request-id": [
+ "e5ac41e4-0a14-4be6-8e90-2fea2c963bf5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095702Z:e5ac41e4-0a14-4be6-8e90-2fea2c963bf5"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:02 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT29.424223S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ada2f10c-6c8e-4ed3-8a25-78ce0ad61ecb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "4c3737cb-a957-45b3-a229-e6f2a7431cb4"
+ ],
+ "x-ms-client-request-id": [
+ "ada2f10c-6c8e-4ed3-8a25-78ce0ad61ecb",
+ "ada2f10c-6c8e-4ed3-8a25-78ce0ad61ecb"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11112"
+ ],
+ "x-ms-correlation-request-id": [
+ "4c3737cb-a957-45b3-a229-e6f2a7431cb4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095702Z:4c3737cb-a957-45b3-a229-e6f2a7431cb4"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:02 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT29.6358333S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b19bbc8c-8189-4bfb-a274-61c6212494a2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "5493d75e-ac6f-4a7d-884d-a78706b7636c"
+ ],
+ "x-ms-client-request-id": [
+ "b19bbc8c-8189-4bfb-a274-61c6212494a2",
+ "b19bbc8c-8189-4bfb-a274-61c6212494a2"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11111"
+ ],
+ "x-ms-correlation-request-id": [
+ "5493d75e-ac6f-4a7d-884d-a78706b7636c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095703Z:5493d75e-ac6f-4a7d-884d-a78706b7636c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:02 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT29.9217435S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "95259fad-9c62-4b3a-acf0-35a96dcab94f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "38d583dd-9634-4f3c-86c6-cf834de64e19"
+ ],
+ "x-ms-client-request-id": [
+ "95259fad-9c62-4b3a-acf0-35a96dcab94f",
+ "95259fad-9c62-4b3a-acf0-35a96dcab94f"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11110"
+ ],
+ "x-ms-correlation-request-id": [
+ "38d583dd-9634-4f3c-86c6-cf834de64e19"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095703Z:38d583dd-9634-4f3c-86c6-cf834de64e19"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:02 GMT"
+ ],
+ "Content-Length": [
+ "999"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT30.229617S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4e228c77-80f9-4cc0-8cbe-7f6c25b69920"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "8113cf58-de17-42a8-a002-9e928e1bdf54"
+ ],
+ "x-ms-client-request-id": [
+ "4e228c77-80f9-4cc0-8cbe-7f6c25b69920",
+ "4e228c77-80f9-4cc0-8cbe-7f6c25b69920"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11109"
+ ],
+ "x-ms-correlation-request-id": [
+ "8113cf58-de17-42a8-a002-9e928e1bdf54"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095703Z:8113cf58-de17-42a8-a002-9e928e1bdf54"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:03 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT30.5512724S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e40de35e-2156-4643-adfa-a8c966559e62"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "1cfbe332-c7ce-4ee1-825e-ec262662f945"
+ ],
+ "x-ms-client-request-id": [
+ "e40de35e-2156-4643-adfa-a8c966559e62",
+ "e40de35e-2156-4643-adfa-a8c966559e62"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11108"
+ ],
+ "x-ms-correlation-request-id": [
+ "1cfbe332-c7ce-4ee1-825e-ec262662f945"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095703Z:1cfbe332-c7ce-4ee1-825e-ec262662f945"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:03 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT30.7960943S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1484f2ab-1415-467d-babf-898e4a3696b2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "d323548b-ba78-4fcd-9cba-311de7cae659"
+ ],
+ "x-ms-client-request-id": [
+ "1484f2ab-1415-467d-babf-898e4a3696b2",
+ "1484f2ab-1415-467d-babf-898e4a3696b2"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11107"
+ ],
+ "x-ms-correlation-request-id": [
+ "d323548b-ba78-4fcd-9cba-311de7cae659"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095704Z:d323548b-ba78-4fcd-9cba-311de7cae659"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:03 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT31.0304745S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7d2ddecc-2fe9-4538-be41-06cf1cf9b5b2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "8ced1fe6-2c31-4df6-b8a2-7d292c45bb99"
+ ],
+ "x-ms-client-request-id": [
+ "7d2ddecc-2fe9-4538-be41-06cf1cf9b5b2",
+ "7d2ddecc-2fe9-4538-be41-06cf1cf9b5b2"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11106"
+ ],
+ "x-ms-correlation-request-id": [
+ "8ced1fe6-2c31-4df6-b8a2-7d292c45bb99"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095704Z:8ced1fe6-2c31-4df6-b8a2-7d292c45bb99"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:03 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT31.2438827S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0add4e92-63f2-4087-a99a-1023034a6121"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "b60295f6-ca5b-4093-b01c-01a863627678"
+ ],
+ "x-ms-client-request-id": [
+ "0add4e92-63f2-4087-a99a-1023034a6121",
+ "0add4e92-63f2-4087-a99a-1023034a6121"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11105"
+ ],
+ "x-ms-correlation-request-id": [
+ "b60295f6-ca5b-4093-b01c-01a863627678"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095704Z:b60295f6-ca5b-4093-b01c-01a863627678"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:04 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT31.4626412S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "06532637-0133-4d49-a4cd-77ab26e90fbb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "d20fe767-3c23-4b6f-9d3d-14a43580e4e3"
+ ],
+ "x-ms-client-request-id": [
+ "06532637-0133-4d49-a4cd-77ab26e90fbb",
+ "06532637-0133-4d49-a4cd-77ab26e90fbb"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11104"
+ ],
+ "x-ms-correlation-request-id": [
+ "d20fe767-3c23-4b6f-9d3d-14a43580e4e3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095704Z:d20fe767-3c23-4b6f-9d3d-14a43580e4e3"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:04 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT31.7648797S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a1ba65e2-06b3-4c93-9fd5-c82ce6fc20cd"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "5a661a47-fbfa-465a-be2f-62ee2cc2fdba"
+ ],
+ "x-ms-client-request-id": [
+ "a1ba65e2-06b3-4c93-9fd5-c82ce6fc20cd",
+ "a1ba65e2-06b3-4c93-9fd5-c82ce6fc20cd"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11103"
+ ],
+ "x-ms-correlation-request-id": [
+ "5a661a47-fbfa-465a-be2f-62ee2cc2fdba"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095705Z:5a661a47-fbfa-465a-be2f-62ee2cc2fdba"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:04 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT32.1970481S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9db5303e-4610-4348-af78-ed0c68a150c8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "336db20c-ff6b-4c0a-8adc-55ff964d99a0"
+ ],
+ "x-ms-client-request-id": [
+ "9db5303e-4610-4348-af78-ed0c68a150c8",
+ "9db5303e-4610-4348-af78-ed0c68a150c8"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11102"
+ ],
+ "x-ms-correlation-request-id": [
+ "336db20c-ff6b-4c0a-8adc-55ff964d99a0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095705Z:336db20c-ff6b-4c0a-8adc-55ff964d99a0"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:05 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT32.5618918S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "58a90bcb-abbc-41d7-881b-adbf21898550"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "54ccda0c-5197-4374-862e-0c54216ff561"
+ ],
+ "x-ms-client-request-id": [
+ "58a90bcb-abbc-41d7-881b-adbf21898550",
+ "58a90bcb-abbc-41d7-881b-adbf21898550"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11101"
+ ],
+ "x-ms-correlation-request-id": [
+ "54ccda0c-5197-4374-862e-0c54216ff561"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095705Z:54ccda0c-5197-4374-862e-0c54216ff561"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:05 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT32.7650023S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "62437240-67ed-474d-b1a2-5ba43d0f2127"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "51d53b8f-4ac6-45d1-b334-aab7ba9aa074"
+ ],
+ "x-ms-client-request-id": [
+ "62437240-67ed-474d-b1a2-5ba43d0f2127",
+ "62437240-67ed-474d-b1a2-5ba43d0f2127"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11100"
+ ],
+ "x-ms-correlation-request-id": [
+ "51d53b8f-4ac6-45d1-b334-aab7ba9aa074"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095706Z:51d53b8f-4ac6-45d1-b334-aab7ba9aa074"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:05 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT33.0306275S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9c0118a7-2cec-48d5-8a46-5aa0c680ffce"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "820bc63f-8070-4d1d-b7ab-9c02af3bff6f"
+ ],
+ "x-ms-client-request-id": [
+ "9c0118a7-2cec-48d5-8a46-5aa0c680ffce",
+ "9c0118a7-2cec-48d5-8a46-5aa0c680ffce"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11099"
+ ],
+ "x-ms-correlation-request-id": [
+ "820bc63f-8070-4d1d-b7ab-9c02af3bff6f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095706Z:820bc63f-8070-4d1d-b7ab-9c02af3bff6f"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:05 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT33.2649329S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "709c3a31-cf1f-4917-9884-dfe5bb9f51f0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f78d04d4-ba73-4a8f-9c06-06c12f08cfaf"
+ ],
+ "x-ms-client-request-id": [
+ "709c3a31-cf1f-4917-9884-dfe5bb9f51f0",
+ "709c3a31-cf1f-4917-9884-dfe5bb9f51f0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11098"
+ ],
+ "x-ms-correlation-request-id": [
+ "f78d04d4-ba73-4a8f-9c06-06c12f08cfaf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095706Z:f78d04d4-ba73-4a8f-9c06-06c12f08cfaf"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:06 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT33.4994722S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a71a5dd7-0a58-442d-8c98-0e9eee3fa9a0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "195bd74a-8e48-477b-935f-917d7a7d66d6"
+ ],
+ "x-ms-client-request-id": [
+ "a71a5dd7-0a58-442d-8c98-0e9eee3fa9a0",
+ "a71a5dd7-0a58-442d-8c98-0e9eee3fa9a0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11097"
+ ],
+ "x-ms-correlation-request-id": [
+ "195bd74a-8e48-477b-935f-917d7a7d66d6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095706Z:195bd74a-8e48-477b-935f-917d7a7d66d6"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:06 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT33.8275985S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3f74590b-f0df-477f-bb76-89c703577e53"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "6e12b48f-9955-4738-81fc-42f87c1163f2"
+ ],
+ "x-ms-client-request-id": [
+ "3f74590b-f0df-477f-bb76-89c703577e53",
+ "3f74590b-f0df-477f-bb76-89c703577e53"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11096"
+ ],
+ "x-ms-correlation-request-id": [
+ "6e12b48f-9955-4738-81fc-42f87c1163f2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095707Z:6e12b48f-9955-4738-81fc-42f87c1163f2"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:06 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT34.1244649S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "de77cc91-e610-4df1-b5f8-9dbaea287125"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "d6c3b2ea-6b55-41b4-ba96-fbbb2eeff062"
+ ],
+ "x-ms-client-request-id": [
+ "de77cc91-e610-4df1-b5f8-9dbaea287125",
+ "de77cc91-e610-4df1-b5f8-9dbaea287125"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11095"
+ ],
+ "x-ms-correlation-request-id": [
+ "d6c3b2ea-6b55-41b4-ba96-fbbb2eeff062"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095707Z:d6c3b2ea-6b55-41b4-ba96-fbbb2eeff062"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:07 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT34.3588603S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f64c8eda-05ef-4d45-8e56-fdd76d85c35f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "6b483a1f-c7f4-44ee-99a0-979309b6a345"
+ ],
+ "x-ms-client-request-id": [
+ "f64c8eda-05ef-4d45-8e56-fdd76d85c35f",
+ "f64c8eda-05ef-4d45-8e56-fdd76d85c35f"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11094"
+ ],
+ "x-ms-correlation-request-id": [
+ "6b483a1f-c7f4-44ee-99a0-979309b6a345"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095707Z:6b483a1f-c7f4-44ee-99a0-979309b6a345"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:07 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT34.6095802S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "785f13d2-8b77-4771-a250-8007ee7facf5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "69e124e8-bb9b-4e68-bd99-a19de774de45"
+ ],
+ "x-ms-client-request-id": [
+ "785f13d2-8b77-4771-a250-8007ee7facf5",
+ "785f13d2-8b77-4771-a250-8007ee7facf5"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11093"
+ ],
+ "x-ms-correlation-request-id": [
+ "69e124e8-bb9b-4e68-bd99-a19de774de45"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095707Z:69e124e8-bb9b-4e68-bd99-a19de774de45"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:07 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT34.7963427S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3f215399-b0fc-4651-9900-4a32c6687db3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "9846623f-3692-418b-98aa-6e00b822c238"
+ ],
+ "x-ms-client-request-id": [
+ "3f215399-b0fc-4651-9900-4a32c6687db3",
+ "3f215399-b0fc-4651-9900-4a32c6687db3"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11092"
+ ],
+ "x-ms-correlation-request-id": [
+ "9846623f-3692-418b-98aa-6e00b822c238"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095708Z:9846623f-3692-418b-98aa-6e00b822c238"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:07 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT35.0469308S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy82YmM5MGZjOC0wZjViLTQ1ZDEtODlkZS05ZTAyMGVhNGQ0MTA/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6d8e5e83-f118-46c3-9e81-3db5cd994817"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "6fcbac75-45ef-49dd-bb57-9cd5b0692a97"
+ ],
+ "x-ms-client-request-id": [
+ "6d8e5e83-f118-46c3-9e81-3db5cd994817",
+ "6d8e5e83-f118-46c3-9e81-3db5cd994817"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11091"
+ ],
+ "x-ms-correlation-request-id": [
+ "6fcbac75-45ef-49dd-bb57-9cd5b0692a97"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095708Z:6fcbac75-45ef-49dd-bb57-9cd5b0692a97"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:07 GMT"
+ ],
+ "Content-Length": [
+ "1090"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"name\": \"6bc90fc8-0f5b-45d1-89de-9e020ea4d410\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT33.3810252S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"3/19/2020 9:51:40 AM\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"1\",\r\n \"Number Of Restored Files\": \"3\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2020-03-19T09:56:33.0958843Z\",\r\n \"endTime\": \"2020-03-19T09:57:06.4769095Z\",\r\n \"activityId\": \"aea7b7e6-e8da-4fd8-b36a-e5887e7fda9b\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3Bfs1?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQmZzMT9hcGktdmVyc2lvbj0yMDE5LTA2LTE1",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f12d00ec-f003-4b94-b8f7-e68e737b9022"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperationResults/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2019-06-15"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2019-06-15"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "01bb4a20-24f3-4073-abe9-f140abbfec4b"
+ ],
+ "x-ms-client-request-id": [
+ "f12d00ec-f003-4b94-b8f7-e68e737b9022",
+ "f12d00ec-f003-4b94-b8f7-e68e737b9022"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-correlation-request-id": [
+ "01bb4a20-24f3-4073-abe9-f140abbfec4b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095709Z:01bb4a20-24f3-4073-abe9-f140abbfec4b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:08 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2cde9616-2d5b-41a3-995a-2b1065e22a93"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "bef6e3ce-7e5a-45e1-9217-8c22b1a6af8f"
+ ],
+ "x-ms-client-request-id": [
+ "2cde9616-2d5b-41a3-995a-2b1065e22a93",
+ "2cde9616-2d5b-41a3-995a-2b1065e22a93"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11090"
+ ],
+ "x-ms-correlation-request-id": [
+ "bef6e3ce-7e5a-45e1-9217-8c22b1a6af8f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095709Z:bef6e3ce-7e5a-45e1-9217-8c22b1a6af8f"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:09 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "04e4e96b-3f6a-4f78-944a-f37ac30b3f99"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "41abcf23-a9ab-4d04-bc54-3947a21f1e86"
+ ],
+ "x-ms-client-request-id": [
+ "04e4e96b-3f6a-4f78-944a-f37ac30b3f99",
+ "04e4e96b-3f6a-4f78-944a-f37ac30b3f99"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11089"
+ ],
+ "x-ms-correlation-request-id": [
+ "41abcf23-a9ab-4d04-bc54-3947a21f1e86"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095709Z:41abcf23-a9ab-4d04-bc54-3947a21f1e86"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:09 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "eac61ac8-87d1-4c17-971d-1fa31a0888c0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "31801f8b-82f7-4bb7-a44c-5a3309cddfd1"
+ ],
+ "x-ms-client-request-id": [
+ "eac61ac8-87d1-4c17-971d-1fa31a0888c0",
+ "eac61ac8-87d1-4c17-971d-1fa31a0888c0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11088"
+ ],
+ "x-ms-correlation-request-id": [
+ "31801f8b-82f7-4bb7-a44c-5a3309cddfd1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095709Z:31801f8b-82f7-4bb7-a44c-5a3309cddfd1"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:09 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ca0bca7d-0595-4773-9d47-0808ea952b88"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "327a15b3-1a4c-4837-ae28-6d6cdbffae7f"
+ ],
+ "x-ms-client-request-id": [
+ "ca0bca7d-0595-4773-9d47-0808ea952b88",
+ "ca0bca7d-0595-4773-9d47-0808ea952b88"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11087"
+ ],
+ "x-ms-correlation-request-id": [
+ "327a15b3-1a4c-4837-ae28-6d6cdbffae7f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095710Z:327a15b3-1a4c-4837-ae28-6d6cdbffae7f"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:09 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fc5b75e7-6969-4b12-8a27-e0362d7343b9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "84c51cc6-cb04-41da-bef5-9a574fe5f366"
+ ],
+ "x-ms-client-request-id": [
+ "fc5b75e7-6969-4b12-8a27-e0362d7343b9",
+ "fc5b75e7-6969-4b12-8a27-e0362d7343b9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11086"
+ ],
+ "x-ms-correlation-request-id": [
+ "84c51cc6-cb04-41da-bef5-9a574fe5f366"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095710Z:84c51cc6-cb04-41da-bef5-9a574fe5f366"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:09 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f68608e4-6878-43ea-be01-a35696aa74e0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "ec51c48b-0370-41cd-8587-453af8ab85ba"
+ ],
+ "x-ms-client-request-id": [
+ "f68608e4-6878-43ea-be01-a35696aa74e0",
+ "f68608e4-6878-43ea-be01-a35696aa74e0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11085"
+ ],
+ "x-ms-correlation-request-id": [
+ "ec51c48b-0370-41cd-8587-453af8ab85ba"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095711Z:ec51c48b-0370-41cd-8587-453af8ab85ba"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:10 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "edc2e150-e202-4443-899e-96957b72d5f1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "74025da7-c684-4a1f-9bea-f31bb3661b56"
+ ],
+ "x-ms-client-request-id": [
+ "edc2e150-e202-4443-899e-96957b72d5f1",
+ "edc2e150-e202-4443-899e-96957b72d5f1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11084"
+ ],
+ "x-ms-correlation-request-id": [
+ "74025da7-c684-4a1f-9bea-f31bb3661b56"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095711Z:74025da7-c684-4a1f-9bea-f31bb3661b56"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:10 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "88e16961-fcb5-4fba-b384-cb09c90bdee0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "436b5675-80ef-4f0b-8bcc-38d828b07c6d"
+ ],
+ "x-ms-client-request-id": [
+ "88e16961-fcb5-4fba-b384-cb09c90bdee0",
+ "88e16961-fcb5-4fba-b384-cb09c90bdee0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11083"
+ ],
+ "x-ms-correlation-request-id": [
+ "436b5675-80ef-4f0b-8bcc-38d828b07c6d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095711Z:436b5675-80ef-4f0b-8bcc-38d828b07c6d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:11 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "68214920-9413-4c68-8816-3f03be6db724"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "6d244da9-eddd-480c-805d-03594b1b1488"
+ ],
+ "x-ms-client-request-id": [
+ "68214920-9413-4c68-8816-3f03be6db724",
+ "68214920-9413-4c68-8816-3f03be6db724"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11082"
+ ],
+ "x-ms-correlation-request-id": [
+ "6d244da9-eddd-480c-805d-03594b1b1488"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095711Z:6d244da9-eddd-480c-805d-03594b1b1488"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:11 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "71d92cf2-59b3-4ecb-9aca-936f81a231bb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "d42de145-69e0-4348-9f75-7275acfa4141"
+ ],
+ "x-ms-client-request-id": [
+ "71d92cf2-59b3-4ecb-9aca-936f81a231bb",
+ "71d92cf2-59b3-4ecb-9aca-936f81a231bb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11081"
+ ],
+ "x-ms-correlation-request-id": [
+ "d42de145-69e0-4348-9f75-7275acfa4141"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095712Z:d42de145-69e0-4348-9f75-7275acfa4141"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:11 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b1921aab-2125-459e-b03c-e517f0d0f6ed"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "328adac2-29ef-483a-8b57-e61e264cb067"
+ ],
+ "x-ms-client-request-id": [
+ "b1921aab-2125-459e-b03c-e517f0d0f6ed",
+ "b1921aab-2125-459e-b03c-e517f0d0f6ed"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11080"
+ ],
+ "x-ms-correlation-request-id": [
+ "328adac2-29ef-483a-8b57-e61e264cb067"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095712Z:328adac2-29ef-483a-8b57-e61e264cb067"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:11 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2a8b9b34-4c67-4bdd-bd2c-bd8c36af3699"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "09b4d007-c805-4d58-9387-200abca98612"
+ ],
+ "x-ms-client-request-id": [
+ "2a8b9b34-4c67-4bdd-bd2c-bd8c36af3699",
+ "2a8b9b34-4c67-4bdd-bd2c-bd8c36af3699"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11079"
+ ],
+ "x-ms-correlation-request-id": [
+ "09b4d007-c805-4d58-9387-200abca98612"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095712Z:09b4d007-c805-4d58-9387-200abca98612"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:12 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f8e5e60c-282f-4a53-b406-85091d32762a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c5a8dbd0-a357-4f80-9525-667c25c80854"
+ ],
+ "x-ms-client-request-id": [
+ "f8e5e60c-282f-4a53-b406-85091d32762a",
+ "f8e5e60c-282f-4a53-b406-85091d32762a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11078"
+ ],
+ "x-ms-correlation-request-id": [
+ "c5a8dbd0-a357-4f80-9525-667c25c80854"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095713Z:c5a8dbd0-a357-4f80-9525-667c25c80854"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:12 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "136b4159-079e-4c11-89ad-bfb4f1ca173a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "d0675d8d-e21f-45e1-b356-d5b7b680ffd2"
+ ],
+ "x-ms-client-request-id": [
+ "136b4159-079e-4c11-89ad-bfb4f1ca173a",
+ "136b4159-079e-4c11-89ad-bfb4f1ca173a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11077"
+ ],
+ "x-ms-correlation-request-id": [
+ "d0675d8d-e21f-45e1-b356-d5b7b680ffd2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095713Z:d0675d8d-e21f-45e1-b356-d5b7b680ffd2"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:12 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "595f1351-6b6c-40d6-bab5-2f1ecccb155e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "d0ff9266-939f-47b6-8362-c8a922248d1b"
+ ],
+ "x-ms-client-request-id": [
+ "595f1351-6b6c-40d6-bab5-2f1ecccb155e",
+ "595f1351-6b6c-40d6-bab5-2f1ecccb155e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11076"
+ ],
+ "x-ms-correlation-request-id": [
+ "d0ff9266-939f-47b6-8362-c8a922248d1b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095713Z:d0ff9266-939f-47b6-8362-c8a922248d1b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:13 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bc814cb0-882f-48fa-b819-d9a6fb2b998b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "af058d7a-f184-47f0-9a89-d15c6b2efbc2"
+ ],
+ "x-ms-client-request-id": [
+ "bc814cb0-882f-48fa-b819-d9a6fb2b998b",
+ "bc814cb0-882f-48fa-b819-d9a6fb2b998b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11075"
+ ],
+ "x-ms-correlation-request-id": [
+ "af058d7a-f184-47f0-9a89-d15c6b2efbc2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095713Z:af058d7a-f184-47f0-9a89-d15c6b2efbc2"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:13 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bc7764ed-4037-4842-aad0-0f437424b9df"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "fb21a60f-d9c9-4cca-aee0-617e9b28be4c"
+ ],
+ "x-ms-client-request-id": [
+ "bc7764ed-4037-4842-aad0-0f437424b9df",
+ "bc7764ed-4037-4842-aad0-0f437424b9df"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11074"
+ ],
+ "x-ms-correlation-request-id": [
+ "fb21a60f-d9c9-4cca-aee0-617e9b28be4c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095713Z:fb21a60f-d9c9-4cca-aee0-617e9b28be4c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:13 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "69ee79d2-d5fe-427d-9637-98e346a07f05"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "7eb4ad92-0344-457d-b905-6e71ac28bba1"
+ ],
+ "x-ms-client-request-id": [
+ "69ee79d2-d5fe-427d-9637-98e346a07f05",
+ "69ee79d2-d5fe-427d-9637-98e346a07f05"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11073"
+ ],
+ "x-ms-correlation-request-id": [
+ "7eb4ad92-0344-457d-b905-6e71ac28bba1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095714Z:7eb4ad92-0344-457d-b905-6e71ac28bba1"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:13 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d49de0ba-18b0-4035-a534-282e02582ec2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "ff17e277-f788-4f54-b14c-a9ab0a4ebea7"
+ ],
+ "x-ms-client-request-id": [
+ "d49de0ba-18b0-4035-a534-282e02582ec2",
+ "d49de0ba-18b0-4035-a534-282e02582ec2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11072"
+ ],
+ "x-ms-correlation-request-id": [
+ "ff17e277-f788-4f54-b14c-a9ab0a4ebea7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095714Z:ff17e277-f788-4f54-b14c-a9ab0a4ebea7"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:14 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d0a9700c-2917-4922-8f4b-e70ea0e19602"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "18a75137-3a6e-4b95-b112-6737a00e4f5a"
+ ],
+ "x-ms-client-request-id": [
+ "d0a9700c-2917-4922-8f4b-e70ea0e19602",
+ "d0a9700c-2917-4922-8f4b-e70ea0e19602"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11071"
+ ],
+ "x-ms-correlation-request-id": [
+ "18a75137-3a6e-4b95-b112-6737a00e4f5a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095714Z:18a75137-3a6e-4b95-b112-6737a00e4f5a"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:14 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "74af49c8-febf-48a3-a12e-2808f9d69230"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "1560cdbe-6d1d-488b-99e2-37731b2f9b47"
+ ],
+ "x-ms-client-request-id": [
+ "74af49c8-febf-48a3-a12e-2808f9d69230",
+ "74af49c8-febf-48a3-a12e-2808f9d69230"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11070"
+ ],
+ "x-ms-correlation-request-id": [
+ "1560cdbe-6d1d-488b-99e2-37731b2f9b47"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095715Z:1560cdbe-6d1d-488b-99e2-37731b2f9b47"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:14 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "179b69c6-1602-4465-abf9-1ef66924d57a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "55f7dc15-7010-4550-b518-d1c35f37e62b"
+ ],
+ "x-ms-client-request-id": [
+ "179b69c6-1602-4465-abf9-1ef66924d57a",
+ "179b69c6-1602-4465-abf9-1ef66924d57a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11069"
+ ],
+ "x-ms-correlation-request-id": [
+ "55f7dc15-7010-4550-b518-d1c35f37e62b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095715Z:55f7dc15-7010-4550-b518-d1c35f37e62b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:14 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f8025cc4-aff5-4776-81dc-743019e1e9bb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "403edebb-2e96-4c5c-a808-7d5c1d0340b9"
+ ],
+ "x-ms-client-request-id": [
+ "f8025cc4-aff5-4776-81dc-743019e1e9bb",
+ "f8025cc4-aff5-4776-81dc-743019e1e9bb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11068"
+ ],
+ "x-ms-correlation-request-id": [
+ "403edebb-2e96-4c5c-a808-7d5c1d0340b9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095715Z:403edebb-2e96-4c5c-a808-7d5c1d0340b9"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:15 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d62f676b-dc1c-48de-bd03-ce46428c8a5a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "549e484b-b71c-4984-a7be-48d5e440bfbd"
+ ],
+ "x-ms-client-request-id": [
+ "d62f676b-dc1c-48de-bd03-ce46428c8a5a",
+ "d62f676b-dc1c-48de-bd03-ce46428c8a5a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11067"
+ ],
+ "x-ms-correlation-request-id": [
+ "549e484b-b71c-4984-a7be-48d5e440bfbd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095715Z:549e484b-b71c-4984-a7be-48d5e440bfbd"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:15 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "070ef13d-fa98-4a64-b8a6-8f59b8ff2882"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "89c9741b-13ec-4680-84d1-0b7013d46ccb"
+ ],
+ "x-ms-client-request-id": [
+ "070ef13d-fa98-4a64-b8a6-8f59b8ff2882",
+ "070ef13d-fa98-4a64-b8a6-8f59b8ff2882"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11066"
+ ],
+ "x-ms-correlation-request-id": [
+ "89c9741b-13ec-4680-84d1-0b7013d46ccb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095716Z:89c9741b-13ec-4680-84d1-0b7013d46ccb"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:15 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0c3a6154-3bd7-429a-b1b8-df34a930c926"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "12b375f2-86b1-4253-87e1-4cda2b78375d"
+ ],
+ "x-ms-client-request-id": [
+ "0c3a6154-3bd7-429a-b1b8-df34a930c926",
+ "0c3a6154-3bd7-429a-b1b8-df34a930c926"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11065"
+ ],
+ "x-ms-correlation-request-id": [
+ "12b375f2-86b1-4253-87e1-4cda2b78375d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095716Z:12b375f2-86b1-4253-87e1-4cda2b78375d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:15 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "405fe3bf-d3f3-4a9a-8382-34f1dc1ac660"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "98433ab5-57f6-4b61-9d49-fa327a665cd4"
+ ],
+ "x-ms-client-request-id": [
+ "405fe3bf-d3f3-4a9a-8382-34f1dc1ac660",
+ "405fe3bf-d3f3-4a9a-8382-34f1dc1ac660"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11064"
+ ],
+ "x-ms-correlation-request-id": [
+ "98433ab5-57f6-4b61-9d49-fa327a665cd4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095716Z:98433ab5-57f6-4b61-9d49-fa327a665cd4"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:16 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bd29bfea-2bf1-4527-ab51-d8d06ea735ed"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e0dc8aa8-ffdd-4a84-9887-77780707cce6"
+ ],
+ "x-ms-client-request-id": [
+ "bd29bfea-2bf1-4527-ab51-d8d06ea735ed",
+ "bd29bfea-2bf1-4527-ab51-d8d06ea735ed"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11063"
+ ],
+ "x-ms-correlation-request-id": [
+ "e0dc8aa8-ffdd-4a84-9887-77780707cce6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095716Z:e0dc8aa8-ffdd-4a84-9887-77780707cce6"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:16 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e53acae3-ba84-42b8-9725-783498eb691f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "6007f848-cbee-450b-b7f0-157bed0729e4"
+ ],
+ "x-ms-client-request-id": [
+ "e53acae3-ba84-42b8-9725-783498eb691f",
+ "e53acae3-ba84-42b8-9725-783498eb691f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11062"
+ ],
+ "x-ms-correlation-request-id": [
+ "6007f848-cbee-450b-b7f0-157bed0729e4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095716Z:6007f848-cbee-450b-b7f0-157bed0729e4"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:16 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0b19086e-9a15-4cfb-813a-984dd7e3b497"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "6cc21ee3-104d-4ef4-8186-5918d19a8a2f"
+ ],
+ "x-ms-client-request-id": [
+ "0b19086e-9a15-4cfb-813a-984dd7e3b497",
+ "0b19086e-9a15-4cfb-813a-984dd7e3b497"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11061"
+ ],
+ "x-ms-correlation-request-id": [
+ "6cc21ee3-104d-4ef4-8186-5918d19a8a2f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095717Z:6cc21ee3-104d-4ef4-8186-5918d19a8a2f"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:16 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b00cf7ad-42d2-4cf2-9af3-bcd12913c0a9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "0303b9b4-a4ef-4c28-b59d-6f12cc679ccd"
+ ],
+ "x-ms-client-request-id": [
+ "b00cf7ad-42d2-4cf2-9af3-bcd12913c0a9",
+ "b00cf7ad-42d2-4cf2-9af3-bcd12913c0a9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11060"
+ ],
+ "x-ms-correlation-request-id": [
+ "0303b9b4-a4ef-4c28-b59d-6f12cc679ccd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095717Z:0303b9b4-a4ef-4c28-b59d-6f12cc679ccd"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:16 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "96e5fb51-7a77-4f92-b902-6b1268747e86"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "42c5e071-1409-4a9e-b079-63f5ced7243d"
+ ],
+ "x-ms-client-request-id": [
+ "96e5fb51-7a77-4f92-b902-6b1268747e86",
+ "96e5fb51-7a77-4f92-b902-6b1268747e86"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11059"
+ ],
+ "x-ms-correlation-request-id": [
+ "42c5e071-1409-4a9e-b079-63f5ced7243d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095717Z:42c5e071-1409-4a9e-b079-63f5ced7243d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:17 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cd19b925-2dd2-4e73-a572-ae847be5b811"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "fd0973d0-2999-4664-abea-863be6e02e4a"
+ ],
+ "x-ms-client-request-id": [
+ "cd19b925-2dd2-4e73-a572-ae847be5b811",
+ "cd19b925-2dd2-4e73-a572-ae847be5b811"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11058"
+ ],
+ "x-ms-correlation-request-id": [
+ "fd0973d0-2999-4664-abea-863be6e02e4a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095717Z:fd0973d0-2999-4664-abea-863be6e02e4a"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:17 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5dfb7188-8b62-46eb-8dfb-ccebe5d8015c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "300e1a6b-3508-4083-b146-9e0def342f04"
+ ],
+ "x-ms-client-request-id": [
+ "5dfb7188-8b62-46eb-8dfb-ccebe5d8015c",
+ "5dfb7188-8b62-46eb-8dfb-ccebe5d8015c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11057"
+ ],
+ "x-ms-correlation-request-id": [
+ "300e1a6b-3508-4083-b146-9e0def342f04"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095718Z:300e1a6b-3508-4083-b146-9e0def342f04"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:17 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "14ff9ea8-655b-492d-8c72-8674661558ea"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "5411dd48-5c3b-4244-9f26-f15f2b1ae1c1"
+ ],
+ "x-ms-client-request-id": [
+ "14ff9ea8-655b-492d-8c72-8674661558ea",
+ "14ff9ea8-655b-492d-8c72-8674661558ea"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11056"
+ ],
+ "x-ms-correlation-request-id": [
+ "5411dd48-5c3b-4244-9f26-f15f2b1ae1c1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095718Z:5411dd48-5c3b-4244-9f26-f15f2b1ae1c1"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:17 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4ba27356-e078-43e9-8eaa-ed9250869281"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "daa5dcbb-9dda-4bc9-872c-30702634b846"
+ ],
+ "x-ms-client-request-id": [
+ "4ba27356-e078-43e9-8eaa-ed9250869281",
+ "4ba27356-e078-43e9-8eaa-ed9250869281"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11055"
+ ],
+ "x-ms-correlation-request-id": [
+ "daa5dcbb-9dda-4bc9-872c-30702634b846"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095718Z:daa5dcbb-9dda-4bc9-872c-30702634b846"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:18 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2c296beb-2532-4229-bbc4-b9a5f01bbd88"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "b48e0abf-a2ec-4d9c-a0ed-deb2698d2182"
+ ],
+ "x-ms-client-request-id": [
+ "2c296beb-2532-4229-bbc4-b9a5f01bbd88",
+ "2c296beb-2532-4229-bbc4-b9a5f01bbd88"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11054"
+ ],
+ "x-ms-correlation-request-id": [
+ "b48e0abf-a2ec-4d9c-a0ed-deb2698d2182"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095718Z:b48e0abf-a2ec-4d9c-a0ed-deb2698d2182"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:18 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b417518b-4737-4d61-86a3-759f2f74983a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "3ee7b16d-a389-44a6-81a3-5986447cead7"
+ ],
+ "x-ms-client-request-id": [
+ "b417518b-4737-4d61-86a3-759f2f74983a",
+ "b417518b-4737-4d61-86a3-759f2f74983a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11053"
+ ],
+ "x-ms-correlation-request-id": [
+ "3ee7b16d-a389-44a6-81a3-5986447cead7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095719Z:3ee7b16d-a389-44a6-81a3-5986447cead7"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:18 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "be2b5bc6-1c77-451c-94d2-51694c315d11"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f1b66bcd-929e-4b25-8a20-d65186f426a5"
+ ],
+ "x-ms-client-request-id": [
+ "be2b5bc6-1c77-451c-94d2-51694c315d11",
+ "be2b5bc6-1c77-451c-94d2-51694c315d11"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11052"
+ ],
+ "x-ms-correlation-request-id": [
+ "f1b66bcd-929e-4b25-8a20-d65186f426a5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095719Z:f1b66bcd-929e-4b25-8a20-d65186f426a5"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:18 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e04a4108-9221-47db-a73d-88b4e9116125"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "0021ae16-0e76-4f0a-9fb3-4135e7f9317a"
+ ],
+ "x-ms-client-request-id": [
+ "e04a4108-9221-47db-a73d-88b4e9116125",
+ "e04a4108-9221-47db-a73d-88b4e9116125"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11051"
+ ],
+ "x-ms-correlation-request-id": [
+ "0021ae16-0e76-4f0a-9fb3-4135e7f9317a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095719Z:0021ae16-0e76-4f0a-9fb3-4135e7f9317a"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:19 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "40f4cff2-de9b-4ad8-a849-c8ba85c9320c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "8f9346fa-f1d7-4e9d-a3ac-d6b8671b8430"
+ ],
+ "x-ms-client-request-id": [
+ "40f4cff2-de9b-4ad8-a849-c8ba85c9320c",
+ "40f4cff2-de9b-4ad8-a849-c8ba85c9320c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11050"
+ ],
+ "x-ms-correlation-request-id": [
+ "8f9346fa-f1d7-4e9d-a3ac-d6b8671b8430"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095719Z:8f9346fa-f1d7-4e9d-a3ac-d6b8671b8430"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:19 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a5a2c445-3524-47c7-8f55-b2e8ad6f2f79"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "b6ea3289-adf5-482b-9fd2-8112e3e5b257"
+ ],
+ "x-ms-client-request-id": [
+ "a5a2c445-3524-47c7-8f55-b2e8ad6f2f79",
+ "a5a2c445-3524-47c7-8f55-b2e8ad6f2f79"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11049"
+ ],
+ "x-ms-correlation-request-id": [
+ "b6ea3289-adf5-482b-9fd2-8112e3e5b257"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095720Z:b6ea3289-adf5-482b-9fd2-8112e3e5b257"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:19 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "12c347ba-dead-43e5-a0bb-c07282d7c882"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "6c644265-4e80-4352-ba78-aefddda44784"
+ ],
+ "x-ms-client-request-id": [
+ "12c347ba-dead-43e5-a0bb-c07282d7c882",
+ "12c347ba-dead-43e5-a0bb-c07282d7c882"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11048"
+ ],
+ "x-ms-correlation-request-id": [
+ "6c644265-4e80-4352-ba78-aefddda44784"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095720Z:6c644265-4e80-4352-ba78-aefddda44784"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:20 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6180a977-5cb2-4296-b381-5aad081653d5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "50bd64c8-8a58-42a3-a629-9cb76d82cafd"
+ ],
+ "x-ms-client-request-id": [
+ "6180a977-5cb2-4296-b381-5aad081653d5",
+ "6180a977-5cb2-4296-b381-5aad081653d5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11047"
+ ],
+ "x-ms-correlation-request-id": [
+ "50bd64c8-8a58-42a3-a629-9cb76d82cafd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095720Z:50bd64c8-8a58-42a3-a629-9cb76d82cafd"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:20 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8b42327f-37bf-407f-814b-989379214d6e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "91a66ee5-a3e7-4a00-aec8-1f6342b3f80d"
+ ],
+ "x-ms-client-request-id": [
+ "8b42327f-37bf-407f-814b-989379214d6e",
+ "8b42327f-37bf-407f-814b-989379214d6e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11046"
+ ],
+ "x-ms-correlation-request-id": [
+ "91a66ee5-a3e7-4a00-aec8-1f6342b3f80d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095721Z:91a66ee5-a3e7-4a00-aec8-1f6342b3f80d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:20 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0f36ab98-e870-4264-8bb8-f4fa1a928ff2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "06352b81-2e8d-4610-967c-8d963bc7d813"
+ ],
+ "x-ms-client-request-id": [
+ "0f36ab98-e870-4264-8bb8-f4fa1a928ff2",
+ "0f36ab98-e870-4264-8bb8-f4fa1a928ff2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11045"
+ ],
+ "x-ms-correlation-request-id": [
+ "06352b81-2e8d-4610-967c-8d963bc7d813"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095721Z:06352b81-2e8d-4610-967c-8d963bc7d813"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:20 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2b2770c3-4e3b-4f0f-8c2b-2e197fb7fc58"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "6d6ad586-8073-495a-aaae-6b52626badb2"
+ ],
+ "x-ms-client-request-id": [
+ "2b2770c3-4e3b-4f0f-8c2b-2e197fb7fc58",
+ "2b2770c3-4e3b-4f0f-8c2b-2e197fb7fc58"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11044"
+ ],
+ "x-ms-correlation-request-id": [
+ "6d6ad586-8073-495a-aaae-6b52626badb2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095721Z:6d6ad586-8073-495a-aaae-6b52626badb2"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:21 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "82a9ad8d-a9c4-4ea9-bb75-2ad0fc06f4dd"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "b8395096-3d26-44e6-ae66-ebb546fe2cca"
+ ],
+ "x-ms-client-request-id": [
+ "82a9ad8d-a9c4-4ea9-bb75-2ad0fc06f4dd",
+ "82a9ad8d-a9c4-4ea9-bb75-2ad0fc06f4dd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11043"
+ ],
+ "x-ms-correlation-request-id": [
+ "b8395096-3d26-44e6-ae66-ebb546fe2cca"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095722Z:b8395096-3d26-44e6-ae66-ebb546fe2cca"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:21 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d6a4db52-2a56-42c7-abc0-1c9522810d3a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "83045cbc-c8ec-4573-8357-74aa55f1562a"
+ ],
+ "x-ms-client-request-id": [
+ "d6a4db52-2a56-42c7-abc0-1c9522810d3a",
+ "d6a4db52-2a56-42c7-abc0-1c9522810d3a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11042"
+ ],
+ "x-ms-correlation-request-id": [
+ "83045cbc-c8ec-4573-8357-74aa55f1562a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095722Z:83045cbc-c8ec-4573-8357-74aa55f1562a"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:22 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "43b4f40c-afea-4049-9026-99fe8a122f8a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "2cd3bc46-1bca-47cb-a9bc-b7e276e8cfbb"
+ ],
+ "x-ms-client-request-id": [
+ "43b4f40c-afea-4049-9026-99fe8a122f8a",
+ "43b4f40c-afea-4049-9026-99fe8a122f8a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11041"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "2cd3bc46-1bca-47cb-a9bc-b7e276e8cfbb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095723Z:2cd3bc46-1bca-47cb-a9bc-b7e276e8cfbb"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:22 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0d5da3a6-c35e-42ab-9a97-c13b394a50a0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "ae76d9c8-57ed-4a7d-aece-3bcb07f2d80a"
+ ],
+ "x-ms-client-request-id": [
+ "0d5da3a6-c35e-42ab-9a97-c13b394a50a0",
+ "0d5da3a6-c35e-42ab-9a97-c13b394a50a0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11040"
+ ],
+ "x-ms-correlation-request-id": [
+ "ae76d9c8-57ed-4a7d-aece-3bcb07f2d80a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095723Z:ae76d9c8-57ed-4a7d-aece-3bcb07f2d80a"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:23 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8f044b26-7388-4110-bd31-50f93ddf9a45"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "52ee52e5-b511-4063-9f6d-2cf2af02b885"
+ ],
+ "x-ms-client-request-id": [
+ "8f044b26-7388-4110-bd31-50f93ddf9a45",
+ "8f044b26-7388-4110-bd31-50f93ddf9a45"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11039"
+ ],
+ "x-ms-correlation-request-id": [
+ "52ee52e5-b511-4063-9f6d-2cf2af02b885"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095724Z:52ee52e5-b511-4063-9f6d-2cf2af02b885"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:23 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "de37c21a-94ee-4494-b343-9b5d4e562463"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "1d2b24c7-0234-480c-b203-a05e568004ba"
+ ],
+ "x-ms-client-request-id": [
+ "de37c21a-94ee-4494-b343-9b5d4e562463",
+ "de37c21a-94ee-4494-b343-9b5d4e562463"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11038"
+ ],
+ "x-ms-correlation-request-id": [
+ "1d2b24c7-0234-480c-b203-a05e568004ba"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095724Z:1d2b24c7-0234-480c-b203-a05e568004ba"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:23 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ad9b887f-6260-4bf6-985a-ae112ed45087"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "8839ca18-6078-40ba-bdf5-aa996159bb6c"
+ ],
+ "x-ms-client-request-id": [
+ "ad9b887f-6260-4bf6-985a-ae112ed45087",
+ "ad9b887f-6260-4bf6-985a-ae112ed45087"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11037"
+ ],
+ "x-ms-correlation-request-id": [
+ "8839ca18-6078-40ba-bdf5-aa996159bb6c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095724Z:8839ca18-6078-40ba-bdf5-aa996159bb6c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:24 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5897f55d-d10f-445e-b73f-e3e4e991b3e1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "9192f30c-892e-4997-8d11-4e62d79692a1"
+ ],
+ "x-ms-client-request-id": [
+ "5897f55d-d10f-445e-b73f-e3e4e991b3e1",
+ "5897f55d-d10f-445e-b73f-e3e4e991b3e1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11036"
+ ],
+ "x-ms-correlation-request-id": [
+ "9192f30c-892e-4997-8d11-4e62d79692a1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095724Z:9192f30c-892e-4997-8d11-4e62d79692a1"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:24 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c04e2b8d-9819-4869-a1cd-924108ca14b5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c4c48c83-4ace-47e4-be4d-5bf8c5c0ba4c"
+ ],
+ "x-ms-client-request-id": [
+ "c04e2b8d-9819-4869-a1cd-924108ca14b5",
+ "c04e2b8d-9819-4869-a1cd-924108ca14b5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11035"
+ ],
+ "x-ms-correlation-request-id": [
+ "c4c48c83-4ace-47e4-be4d-5bf8c5c0ba4c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095725Z:c4c48c83-4ace-47e4-be4d-5bf8c5c0ba4c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:24 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f40f2d1e-516a-4a3c-874e-07602c836d01"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "7b954a14-b662-43a4-9848-61fa9162f862"
+ ],
+ "x-ms-client-request-id": [
+ "f40f2d1e-516a-4a3c-874e-07602c836d01",
+ "f40f2d1e-516a-4a3c-874e-07602c836d01"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11034"
+ ],
+ "x-ms-correlation-request-id": [
+ "7b954a14-b662-43a4-9848-61fa9162f862"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095725Z:7b954a14-b662-43a4-9848-61fa9162f862"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:24 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "78f917dc-c327-421a-9172-c824d6193d70"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "fba67038-304f-469f-ac0a-dc0ac4d6cf26"
+ ],
+ "x-ms-client-request-id": [
+ "78f917dc-c327-421a-9172-c824d6193d70",
+ "78f917dc-c327-421a-9172-c824d6193d70"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11033"
+ ],
+ "x-ms-correlation-request-id": [
+ "fba67038-304f-469f-ac0a-dc0ac4d6cf26"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095725Z:fba67038-304f-469f-ac0a-dc0ac4d6cf26"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:24 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3a672468-0693-4a76-bd41-449100e245f4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "4775e315-b5e2-41b6-a38f-6267ca6f12f5"
+ ],
+ "x-ms-client-request-id": [
+ "3a672468-0693-4a76-bd41-449100e245f4",
+ "3a672468-0693-4a76-bd41-449100e245f4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11032"
+ ],
+ "x-ms-correlation-request-id": [
+ "4775e315-b5e2-41b6-a38f-6267ca6f12f5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095725Z:4775e315-b5e2-41b6-a38f-6267ca6f12f5"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:25 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "126f66ac-def2-4b75-b0e0-186b1a094415"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "a03bb16f-c8e7-4d55-b548-410c934a9c1b"
+ ],
+ "x-ms-client-request-id": [
+ "126f66ac-def2-4b75-b0e0-186b1a094415",
+ "126f66ac-def2-4b75-b0e0-186b1a094415"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11031"
+ ],
+ "x-ms-correlation-request-id": [
+ "a03bb16f-c8e7-4d55-b548-410c934a9c1b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095725Z:a03bb16f-c8e7-4d55-b548-410c934a9c1b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:25 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1e64a098-9647-436c-8507-03348b6bc590"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "654527d4-a514-448b-80eb-1788eed2636c"
+ ],
+ "x-ms-client-request-id": [
+ "1e64a098-9647-436c-8507-03348b6bc590",
+ "1e64a098-9647-436c-8507-03348b6bc590"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11030"
+ ],
+ "x-ms-correlation-request-id": [
+ "654527d4-a514-448b-80eb-1788eed2636c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095726Z:654527d4-a514-448b-80eb-1788eed2636c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:25 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6319727c-3018-4d8c-bf43-55284a6d76eb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "ad9685b7-db62-4dff-a059-8cf4efdad8d0"
+ ],
+ "x-ms-client-request-id": [
+ "6319727c-3018-4d8c-bf43-55284a6d76eb",
+ "6319727c-3018-4d8c-bf43-55284a6d76eb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11029"
+ ],
+ "x-ms-correlation-request-id": [
+ "ad9685b7-db62-4dff-a059-8cf4efdad8d0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095726Z:ad9685b7-db62-4dff-a059-8cf4efdad8d0"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:25 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c899d99a-0d7a-4808-946f-38749a34a152"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "12e70baa-c4c8-43b5-a7c3-299a45ed25e3"
+ ],
+ "x-ms-client-request-id": [
+ "c899d99a-0d7a-4808-946f-38749a34a152",
+ "c899d99a-0d7a-4808-946f-38749a34a152"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11028"
+ ],
+ "x-ms-correlation-request-id": [
+ "12e70baa-c4c8-43b5-a7c3-299a45ed25e3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095726Z:12e70baa-c4c8-43b5-a7c3-299a45ed25e3"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:26 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e7b8fa45-3edd-4bad-b18c-8fcaa470abf3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e8bcac6c-ca04-4922-9246-c47af262607c"
+ ],
+ "x-ms-client-request-id": [
+ "e7b8fa45-3edd-4bad-b18c-8fcaa470abf3",
+ "e7b8fa45-3edd-4bad-b18c-8fcaa470abf3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11027"
+ ],
+ "x-ms-correlation-request-id": [
+ "e8bcac6c-ca04-4922-9246-c47af262607c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095726Z:e8bcac6c-ca04-4922-9246-c47af262607c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:26 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a11ad895-464a-4506-aeb5-ea9057d71037"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "82cfe057-4a56-4adb-ad2e-a8f8ca533227"
+ ],
+ "x-ms-client-request-id": [
+ "a11ad895-464a-4506-aeb5-ea9057d71037",
+ "a11ad895-464a-4506-aeb5-ea9057d71037"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11026"
+ ],
+ "x-ms-correlation-request-id": [
+ "82cfe057-4a56-4adb-ad2e-a8f8ca533227"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095727Z:82cfe057-4a56-4adb-ad2e-a8f8ca533227"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:26 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a03f0f20-c81e-4a4f-8cbe-667df28d62da"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "3b33a590-9d6b-4c4e-ac8c-94dc593cd1a4"
+ ],
+ "x-ms-client-request-id": [
+ "a03f0f20-c81e-4a4f-8cbe-667df28d62da",
+ "a03f0f20-c81e-4a4f-8cbe-667df28d62da"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11025"
+ ],
+ "x-ms-correlation-request-id": [
+ "3b33a590-9d6b-4c4e-ac8c-94dc593cd1a4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095727Z:3b33a590-9d6b-4c4e-ac8c-94dc593cd1a4"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:26 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cd1dbd85-40cb-4989-9166-108828837e18"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "28c5b544-0b75-4d4f-a944-60a52f5dadd3"
+ ],
+ "x-ms-client-request-id": [
+ "cd1dbd85-40cb-4989-9166-108828837e18",
+ "cd1dbd85-40cb-4989-9166-108828837e18"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11024"
+ ],
+ "x-ms-correlation-request-id": [
+ "28c5b544-0b75-4d4f-a944-60a52f5dadd3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095727Z:28c5b544-0b75-4d4f-a944-60a52f5dadd3"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:27 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4d47a9e3-956c-4d56-b6d0-34af61906f01"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "0d356873-741e-4ef0-8afa-1388f168f0a4"
+ ],
+ "x-ms-client-request-id": [
+ "4d47a9e3-956c-4d56-b6d0-34af61906f01",
+ "4d47a9e3-956c-4d56-b6d0-34af61906f01"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11023"
+ ],
+ "x-ms-correlation-request-id": [
+ "0d356873-741e-4ef0-8afa-1388f168f0a4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095728Z:0d356873-741e-4ef0-8afa-1388f168f0a4"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:27 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "13a5e2cf-a273-4620-988e-98c4c66f5948"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "999257e1-c7cb-4a61-b642-3a6a22ad011c"
+ ],
+ "x-ms-client-request-id": [
+ "13a5e2cf-a273-4620-988e-98c4c66f5948",
+ "13a5e2cf-a273-4620-988e-98c4c66f5948"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11022"
+ ],
+ "x-ms-correlation-request-id": [
+ "999257e1-c7cb-4a61-b642-3a6a22ad011c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095728Z:999257e1-c7cb-4a61-b642-3a6a22ad011c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:27 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6ab81d4f-d23e-4d12-9466-1a155fddcabb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "510d5fba-6b0a-4756-ab51-a58bf25b4af8"
+ ],
+ "x-ms-client-request-id": [
+ "6ab81d4f-d23e-4d12-9466-1a155fddcabb",
+ "6ab81d4f-d23e-4d12-9466-1a155fddcabb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11021"
+ ],
+ "x-ms-correlation-request-id": [
+ "510d5fba-6b0a-4756-ab51-a58bf25b4af8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095728Z:510d5fba-6b0a-4756-ab51-a58bf25b4af8"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:27 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "86e31971-35ce-4731-bf43-541efc480685"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "3a46f178-37bd-41fd-978d-929f1624a13f"
+ ],
+ "x-ms-client-request-id": [
+ "86e31971-35ce-4731-bf43-541efc480685",
+ "86e31971-35ce-4731-bf43-541efc480685"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11020"
+ ],
+ "x-ms-correlation-request-id": [
+ "3a46f178-37bd-41fd-978d-929f1624a13f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095728Z:3a46f178-37bd-41fd-978d-929f1624a13f"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:28 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "aa261480-dc72-4e08-9288-693afbe557a9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "cdae4ae8-16cb-4917-9149-391400079f3f"
+ ],
+ "x-ms-client-request-id": [
+ "aa261480-dc72-4e08-9288-693afbe557a9",
+ "aa261480-dc72-4e08-9288-693afbe557a9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11019"
+ ],
+ "x-ms-correlation-request-id": [
+ "cdae4ae8-16cb-4917-9149-391400079f3f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095728Z:cdae4ae8-16cb-4917-9149-391400079f3f"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:28 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "aa8fa82a-5588-4d64-8262-6e481c2d97fa"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "974aed3f-f817-44b6-afe9-41be5cc1f1cd"
+ ],
+ "x-ms-client-request-id": [
+ "aa8fa82a-5588-4d64-8262-6e481c2d97fa",
+ "aa8fa82a-5588-4d64-8262-6e481c2d97fa"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11018"
+ ],
+ "x-ms-correlation-request-id": [
+ "974aed3f-f817-44b6-afe9-41be5cc1f1cd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095729Z:974aed3f-f817-44b6-afe9-41be5cc1f1cd"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:28 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "96ec5f5f-5165-458c-897e-a4a93d18d44a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "17306d42-09e7-45d9-9cb7-2feb0b1f6c32"
+ ],
+ "x-ms-client-request-id": [
+ "96ec5f5f-5165-458c-897e-a4a93d18d44a",
+ "96ec5f5f-5165-458c-897e-a4a93d18d44a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11017"
+ ],
+ "x-ms-correlation-request-id": [
+ "17306d42-09e7-45d9-9cb7-2feb0b1f6c32"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095729Z:17306d42-09e7-45d9-9cb7-2feb0b1f6c32"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:28 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "311cb4cf-4cb6-4a80-9de7-c0ec182f08ac"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "afc8bdcb-95f9-497c-b074-b09b77d267ec"
+ ],
+ "x-ms-client-request-id": [
+ "311cb4cf-4cb6-4a80-9de7-c0ec182f08ac",
+ "311cb4cf-4cb6-4a80-9de7-c0ec182f08ac"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11016"
+ ],
+ "x-ms-correlation-request-id": [
+ "afc8bdcb-95f9-497c-b074-b09b77d267ec"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095729Z:afc8bdcb-95f9-497c-b074-b09b77d267ec"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:28 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "68db7dc0-c95f-422e-87b8-ffd2179c985e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "457e37bc-7814-4fd3-84fc-1f53de3ee57d"
+ ],
+ "x-ms-client-request-id": [
+ "68db7dc0-c95f-422e-87b8-ffd2179c985e",
+ "68db7dc0-c95f-422e-87b8-ffd2179c985e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11015"
+ ],
+ "x-ms-correlation-request-id": [
+ "457e37bc-7814-4fd3-84fc-1f53de3ee57d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095729Z:457e37bc-7814-4fd3-84fc-1f53de3ee57d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:29 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4a9a9ca5-5335-4e26-8fcd-ec86c584cc2c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "8b6435f9-972b-4d6e-bb69-5f2436ffc912"
+ ],
+ "x-ms-client-request-id": [
+ "4a9a9ca5-5335-4e26-8fcd-ec86c584cc2c",
+ "4a9a9ca5-5335-4e26-8fcd-ec86c584cc2c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11014"
+ ],
+ "x-ms-correlation-request-id": [
+ "8b6435f9-972b-4d6e-bb69-5f2436ffc912"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095729Z:8b6435f9-972b-4d6e-bb69-5f2436ffc912"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:29 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b67fdaf7-089d-49d0-ad2f-256f1c9707cd"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "3930ca79-39dc-4b7d-9412-d671ebcc4fe2"
+ ],
+ "x-ms-client-request-id": [
+ "b67fdaf7-089d-49d0-ad2f-256f1c9707cd",
+ "b67fdaf7-089d-49d0-ad2f-256f1c9707cd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11013"
+ ],
+ "x-ms-correlation-request-id": [
+ "3930ca79-39dc-4b7d-9412-d671ebcc4fe2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095730Z:3930ca79-39dc-4b7d-9412-d671ebcc4fe2"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:29 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "87b64eb0-6552-40ed-9402-d79d35bf92ba"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "ec721bf2-c984-4889-ac36-6e2d4dddcf39"
+ ],
+ "x-ms-client-request-id": [
+ "87b64eb0-6552-40ed-9402-d79d35bf92ba",
+ "87b64eb0-6552-40ed-9402-d79d35bf92ba"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11012"
+ ],
+ "x-ms-correlation-request-id": [
+ "ec721bf2-c984-4889-ac36-6e2d4dddcf39"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095730Z:ec721bf2-c984-4889-ac36-6e2d4dddcf39"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:29 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b8570fb5-3077-4370-8b75-c5695fa3eca7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "982a536b-1e85-4114-af9b-2972a73cdfd0"
+ ],
+ "x-ms-client-request-id": [
+ "b8570fb5-3077-4370-8b75-c5695fa3eca7",
+ "b8570fb5-3077-4370-8b75-c5695fa3eca7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11011"
+ ],
+ "x-ms-correlation-request-id": [
+ "982a536b-1e85-4114-af9b-2972a73cdfd0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095730Z:982a536b-1e85-4114-af9b-2972a73cdfd0"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:30 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "99ebf4a4-f8e9-43bf-88d8-c993086b7165"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "38ccb81a-cf49-4036-818a-766170ed19a9"
+ ],
+ "x-ms-client-request-id": [
+ "99ebf4a4-f8e9-43bf-88d8-c993086b7165",
+ "99ebf4a4-f8e9-43bf-88d8-c993086b7165"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11010"
+ ],
+ "x-ms-correlation-request-id": [
+ "38ccb81a-cf49-4036-818a-766170ed19a9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095731Z:38ccb81a-cf49-4036-818a-766170ed19a9"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:30 GMT"
+ ],
+ "Content-Length": [
+ "188"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1d00f6b2-7bef-4741-98ee-26048897dcc5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "10153c30-ef5f-4fbc-868c-be8a8be6c474"
+ ],
+ "x-ms-client-request-id": [
+ "1d00f6b2-7bef-4741-98ee-26048897dcc5",
+ "1d00f6b2-7bef-4741-98ee-26048897dcc5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11009"
+ ],
+ "x-ms-correlation-request-id": [
+ "10153c30-ef5f-4fbc-868c-be8a8be6c474"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095731Z:10153c30-ef5f-4fbc-868c-be8a8be6c474"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:30 GMT"
+ ],
+ "Content-Length": [
+ "304"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"d8b1ed94-ad94-4745-8207-6daa7895f151\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/fa671ce3-de0c-4a4f-9772-8309d316da02?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mYTY3MWNlMy1kZTBjLTRhNGYtOTc3Mi04MzA5ZDMxNmRhMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3e1b45da-f957-49ad-90da-a41abd262f0f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "02d8e6f2-d803-4159-a0ed-d0449354eaad"
+ ],
+ "x-ms-client-request-id": [
+ "3e1b45da-f957-49ad-90da-a41abd262f0f",
+ "3e1b45da-f957-49ad-90da-a41abd262f0f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11008"
+ ],
+ "x-ms-correlation-request-id": [
+ "02d8e6f2-d803-4159-a0ed-d0449354eaad"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095731Z:02d8e6f2-d803-4159-a0ed-d0449354eaad"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:30 GMT"
+ ],
+ "Content-Length": [
+ "304"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"name\": \"fa671ce3-de0c-4a4f-9772-8309d316da02\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"d8b1ed94-ad94-4745-8207-6daa7895f151\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/d8b1ed94-ad94-4745-8207-6daa7895f151?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9kOGIxZWQ5NC1hZDk0LTQ3NDUtODIwNy02ZGFhNzg5NWYxNTE/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f9be352a-8e1d-4e34-bf45-4398c8c325a3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0",
+ "Microsoft-IIS/10.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "9df6fd4b-4cf0-4674-84ea-ca8273b3f29e"
+ ],
+ "x-ms-client-request-id": [
+ "f9be352a-8e1d-4e34-bf45-4398c8c325a3",
+ "f9be352a-8e1d-4e34-bf45-4398c8c325a3"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11007"
+ ],
+ "x-ms-correlation-request-id": [
+ "9df6fd4b-4cf0-4674-84ea-ca8273b3f29e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095731Z:9df6fd4b-4cf0-4674-84ea-ca8273b3f29e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:31 GMT"
+ ],
+ "Content-Length": [
+ "797"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/d8b1ed94-ad94-4745-8207-6daa7895f151\",\r\n \"name\": \"d8b1ed94-ad94-4745-8207-6daa7895f151\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.9667447S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2020-03-19T09:57:08.9936654Z\",\r\n \"endTime\": \"2020-03-19T09:57:30.9604101Z\",\r\n \"activityId\": \"f12d00ec-f003-4b94-b8f7-e68e737b9022\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "aaa882dd-a53c-4a43-9366-7c0f1ff11afb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperationResults/e00304be-7265-4662-9136-00eb452176ac?fabricName=Azure?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationsStatus/e00304be-7265-4662-9136-00eb452176ac?api-version=2019-05-13-preview"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f404ac57-0d27-41e6-9157-4ddc3411c6c1"
+ ],
+ "x-ms-client-request-id": [
+ "aaa882dd-a53c-4a43-9366-7c0f1ff11afb",
+ "aaa882dd-a53c-4a43-9366-7c0f1ff11afb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14998"
+ ],
+ "x-ms-correlation-request-id": [
+ "f404ac57-0d27-41e6-9157-4ddc3411c6c1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095732Z:f404ac57-0d27-41e6-9157-4ddc3411c6c1"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:31 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4fdb6ac6-d240-4b14-a3c6-9a519e42b6d3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "d44f43d0-a801-4eb8-8e09-27b66d8e4efc"
+ ],
+ "x-ms-client-request-id": [
+ "4fdb6ac6-d240-4b14-a3c6-9a519e42b6d3",
+ "4fdb6ac6-d240-4b14-a3c6-9a519e42b6d3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11006"
+ ],
+ "x-ms-correlation-request-id": [
+ "d44f43d0-a801-4eb8-8e09-27b66d8e4efc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095732Z:d44f43d0-a801-4eb8-8e09-27b66d8e4efc"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:31 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8d08c68b-ce94-4ca4-bf59-bc46a83da2a2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f015f71d-f873-4a2b-9b5f-f13a3e4cfea2"
+ ],
+ "x-ms-client-request-id": [
+ "8d08c68b-ce94-4ca4-bf59-bc46a83da2a2",
+ "8d08c68b-ce94-4ca4-bf59-bc46a83da2a2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11005"
+ ],
+ "x-ms-correlation-request-id": [
+ "f015f71d-f873-4a2b-9b5f-f13a3e4cfea2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095732Z:f015f71d-f873-4a2b-9b5f-f13a3e4cfea2"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:32 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0cb34bfb-774c-4a07-812f-15a1f0e41510"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "15f0705b-9acb-4aa2-9991-9cb855dac282"
+ ],
+ "x-ms-client-request-id": [
+ "0cb34bfb-774c-4a07-812f-15a1f0e41510",
+ "0cb34bfb-774c-4a07-812f-15a1f0e41510"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11004"
+ ],
+ "x-ms-correlation-request-id": [
+ "15f0705b-9acb-4aa2-9991-9cb855dac282"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095732Z:15f0705b-9acb-4aa2-9991-9cb855dac282"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:32 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "56d7bb74-afaf-47d5-ac32-62ecd598b8e8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e9420efa-5038-47ef-ada5-f1308c89f721"
+ ],
+ "x-ms-client-request-id": [
+ "56d7bb74-afaf-47d5-ac32-62ecd598b8e8",
+ "56d7bb74-afaf-47d5-ac32-62ecd598b8e8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11003"
+ ],
+ "x-ms-correlation-request-id": [
+ "e9420efa-5038-47ef-ada5-f1308c89f721"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095733Z:e9420efa-5038-47ef-ada5-f1308c89f721"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:32 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9e64434e-87ea-4919-8dfe-7f85a8618924"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "ef6d214d-c307-4bcc-855f-4602271264e8"
+ ],
+ "x-ms-client-request-id": [
+ "9e64434e-87ea-4919-8dfe-7f85a8618924",
+ "9e64434e-87ea-4919-8dfe-7f85a8618924"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11002"
+ ],
+ "x-ms-correlation-request-id": [
+ "ef6d214d-c307-4bcc-855f-4602271264e8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095733Z:ef6d214d-c307-4bcc-855f-4602271264e8"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:32 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "037a63bf-d9cb-4685-ac0d-5e60b28f0dbc"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "65326218-2ebc-4b97-a362-8634b21a1728"
+ ],
+ "x-ms-client-request-id": [
+ "037a63bf-d9cb-4685-ac0d-5e60b28f0dbc",
+ "037a63bf-d9cb-4685-ac0d-5e60b28f0dbc"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11001"
+ ],
+ "x-ms-correlation-request-id": [
+ "65326218-2ebc-4b97-a362-8634b21a1728"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095733Z:65326218-2ebc-4b97-a362-8634b21a1728"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:33 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8eb655cf-ad89-4c6e-a43c-6db5cb3e0717"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "7ebd9365-62f9-42cf-a978-18961c1ef55e"
+ ],
+ "x-ms-client-request-id": [
+ "8eb655cf-ad89-4c6e-a43c-6db5cb3e0717",
+ "8eb655cf-ad89-4c6e-a43c-6db5cb3e0717"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11000"
+ ],
+ "x-ms-correlation-request-id": [
+ "7ebd9365-62f9-42cf-a978-18961c1ef55e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095733Z:7ebd9365-62f9-42cf-a978-18961c1ef55e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:33 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "832e479f-2054-453d-9bad-d51b5d858a24"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "4af91c8c-42fc-40ae-ad36-38fbc42cfd78"
+ ],
+ "x-ms-client-request-id": [
+ "832e479f-2054-453d-9bad-d51b5d858a24",
+ "832e479f-2054-453d-9bad-d51b5d858a24"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10999"
+ ],
+ "x-ms-correlation-request-id": [
+ "4af91c8c-42fc-40ae-ad36-38fbc42cfd78"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095734Z:4af91c8c-42fc-40ae-ad36-38fbc42cfd78"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:33 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "88b5f1f0-76bf-49d1-bcd7-17d997e4216a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "69b7415c-039b-4235-bd15-6e1f8ac41d8b"
+ ],
+ "x-ms-client-request-id": [
+ "88b5f1f0-76bf-49d1-bcd7-17d997e4216a",
+ "88b5f1f0-76bf-49d1-bcd7-17d997e4216a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10998"
+ ],
+ "x-ms-correlation-request-id": [
+ "69b7415c-039b-4235-bd15-6e1f8ac41d8b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095734Z:69b7415c-039b-4235-bd15-6e1f8ac41d8b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:33 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6dcd4eb2-f91f-429a-9ac5-6c333a1ff41a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c96eeb80-3aeb-48d0-affd-924d04f78528"
+ ],
+ "x-ms-client-request-id": [
+ "6dcd4eb2-f91f-429a-9ac5-6c333a1ff41a",
+ "6dcd4eb2-f91f-429a-9ac5-6c333a1ff41a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10997"
+ ],
+ "x-ms-correlation-request-id": [
+ "c96eeb80-3aeb-48d0-affd-924d04f78528"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095734Z:c96eeb80-3aeb-48d0-affd-924d04f78528"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:33 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d6946e17-fe93-439c-80e6-d8c0ba5a06bc"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "59d69ba0-0f4f-46d1-bc6b-d2be1aa72097"
+ ],
+ "x-ms-client-request-id": [
+ "d6946e17-fe93-439c-80e6-d8c0ba5a06bc",
+ "d6946e17-fe93-439c-80e6-d8c0ba5a06bc"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10996"
+ ],
+ "x-ms-correlation-request-id": [
+ "59d69ba0-0f4f-46d1-bc6b-d2be1aa72097"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095734Z:59d69ba0-0f4f-46d1-bc6b-d2be1aa72097"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:34 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1b35622a-3f2f-4d2f-9732-80e5251e684f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f083d3cc-0063-4255-aad6-f6377ac0d16f"
+ ],
+ "x-ms-client-request-id": [
+ "1b35622a-3f2f-4d2f-9732-80e5251e684f",
+ "1b35622a-3f2f-4d2f-9732-80e5251e684f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10995"
+ ],
+ "x-ms-correlation-request-id": [
+ "f083d3cc-0063-4255-aad6-f6377ac0d16f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095734Z:f083d3cc-0063-4255-aad6-f6377ac0d16f"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:34 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "60d776ca-d2c3-48eb-bcde-df8778e6c6bf"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "baecfb85-a460-43c7-afe8-d9197bb16766"
+ ],
+ "x-ms-client-request-id": [
+ "60d776ca-d2c3-48eb-bcde-df8778e6c6bf",
+ "60d776ca-d2c3-48eb-bcde-df8778e6c6bf"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10994"
+ ],
+ "x-ms-correlation-request-id": [
+ "baecfb85-a460-43c7-afe8-d9197bb16766"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095735Z:baecfb85-a460-43c7-afe8-d9197bb16766"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:34 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e823a3ff-2600-4009-a86a-73a230662329"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "9ff2ca24-1f7c-4c4a-91e1-26d69a7a5d6e"
+ ],
+ "x-ms-client-request-id": [
+ "e823a3ff-2600-4009-a86a-73a230662329",
+ "e823a3ff-2600-4009-a86a-73a230662329"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10993"
+ ],
+ "x-ms-correlation-request-id": [
+ "9ff2ca24-1f7c-4c4a-91e1-26d69a7a5d6e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095735Z:9ff2ca24-1f7c-4c4a-91e1-26d69a7a5d6e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:35 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7dfacefc-3571-4033-96ef-b8ad5106308b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "807c16df-b21b-4878-9195-ff0d183ac182"
+ ],
+ "x-ms-client-request-id": [
+ "7dfacefc-3571-4033-96ef-b8ad5106308b",
+ "7dfacefc-3571-4033-96ef-b8ad5106308b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10992"
+ ],
+ "x-ms-correlation-request-id": [
+ "807c16df-b21b-4878-9195-ff0d183ac182"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095735Z:807c16df-b21b-4878-9195-ff0d183ac182"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:35 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7d2dde85-2d79-4238-a960-dda0d14511b3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "5c56f303-d7bc-4dec-ab97-66c1df420931"
+ ],
+ "x-ms-client-request-id": [
+ "7d2dde85-2d79-4238-a960-dda0d14511b3",
+ "7d2dde85-2d79-4238-a960-dda0d14511b3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10991"
+ ],
+ "x-ms-correlation-request-id": [
+ "5c56f303-d7bc-4dec-ab97-66c1df420931"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095736Z:5c56f303-d7bc-4dec-ab97-66c1df420931"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:35 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b8cb063c-ce26-483d-80c9-4763188ee8a4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "baeb57a6-0122-4b1e-aff7-dbf329d97ea1"
+ ],
+ "x-ms-client-request-id": [
+ "b8cb063c-ce26-483d-80c9-4763188ee8a4",
+ "b8cb063c-ce26-483d-80c9-4763188ee8a4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10990"
+ ],
+ "x-ms-correlation-request-id": [
+ "baeb57a6-0122-4b1e-aff7-dbf329d97ea1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095736Z:baeb57a6-0122-4b1e-aff7-dbf329d97ea1"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:35 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4c77a071-4c50-4c55-b0ad-58c67b7b69d9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "34dd636f-5555-4481-a381-75d802e42291"
+ ],
+ "x-ms-client-request-id": [
+ "4c77a071-4c50-4c55-b0ad-58c67b7b69d9",
+ "4c77a071-4c50-4c55-b0ad-58c67b7b69d9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10989"
+ ],
+ "x-ms-correlation-request-id": [
+ "34dd636f-5555-4481-a381-75d802e42291"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095736Z:34dd636f-5555-4481-a381-75d802e42291"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:35 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ba22c915-25a2-4606-b19a-c7a4a0bdae50"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c6a308d1-0921-444c-ae28-d75253faaf4a"
+ ],
+ "x-ms-client-request-id": [
+ "ba22c915-25a2-4606-b19a-c7a4a0bdae50",
+ "ba22c915-25a2-4606-b19a-c7a4a0bdae50"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10988"
+ ],
+ "x-ms-correlation-request-id": [
+ "c6a308d1-0921-444c-ae28-d75253faaf4a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095736Z:c6a308d1-0921-444c-ae28-d75253faaf4a"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:36 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4334523e-a3dc-4100-9750-227849c9f085"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "2937ccea-140b-457f-8c78-b5be1377b7ab"
+ ],
+ "x-ms-client-request-id": [
+ "4334523e-a3dc-4100-9750-227849c9f085",
+ "4334523e-a3dc-4100-9750-227849c9f085"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10987"
+ ],
+ "x-ms-correlation-request-id": [
+ "2937ccea-140b-457f-8c78-b5be1377b7ab"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095737Z:2937ccea-140b-457f-8c78-b5be1377b7ab"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:36 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b46fdfdd-d6c5-49b6-a569-ec223c755970"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "a0cb1807-1edb-4a26-afa6-852e7f123ec5"
+ ],
+ "x-ms-client-request-id": [
+ "b46fdfdd-d6c5-49b6-a569-ec223c755970",
+ "b46fdfdd-d6c5-49b6-a569-ec223c755970"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10986"
+ ],
+ "x-ms-correlation-request-id": [
+ "a0cb1807-1edb-4a26-afa6-852e7f123ec5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095737Z:a0cb1807-1edb-4a26-afa6-852e7f123ec5"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:36 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "87034c2c-9ad0-45b1-9dac-00c6de7cf72a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f4e08b4b-c9ff-4936-9b01-50570db3ec25"
+ ],
+ "x-ms-client-request-id": [
+ "87034c2c-9ad0-45b1-9dac-00c6de7cf72a",
+ "87034c2c-9ad0-45b1-9dac-00c6de7cf72a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10985"
+ ],
+ "x-ms-correlation-request-id": [
+ "f4e08b4b-c9ff-4936-9b01-50570db3ec25"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095737Z:f4e08b4b-c9ff-4936-9b01-50570db3ec25"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:36 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9ccc440b-433a-4393-969f-36601c8a86d3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "049abc2b-0ffd-4a0b-bad6-46826ed4dd3d"
+ ],
+ "x-ms-client-request-id": [
+ "9ccc440b-433a-4393-969f-36601c8a86d3",
+ "9ccc440b-433a-4393-969f-36601c8a86d3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10984"
+ ],
+ "x-ms-correlation-request-id": [
+ "049abc2b-0ffd-4a0b-bad6-46826ed4dd3d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095737Z:049abc2b-0ffd-4a0b-bad6-46826ed4dd3d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:37 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "de218baf-f5be-4dd3-b012-712f9951a9e8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "ac6b4950-c8ce-4e8a-aa54-ccbf60610da5"
+ ],
+ "x-ms-client-request-id": [
+ "de218baf-f5be-4dd3-b012-712f9951a9e8",
+ "de218baf-f5be-4dd3-b012-712f9951a9e8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10983"
+ ],
+ "x-ms-correlation-request-id": [
+ "ac6b4950-c8ce-4e8a-aa54-ccbf60610da5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095738Z:ac6b4950-c8ce-4e8a-aa54-ccbf60610da5"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:37 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "54c65e16-d6a9-4630-a021-3a5fc7b7ed21"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "fa9c7184-2402-4a9c-934a-4da9cc852d1d"
+ ],
+ "x-ms-client-request-id": [
+ "54c65e16-d6a9-4630-a021-3a5fc7b7ed21",
+ "54c65e16-d6a9-4630-a021-3a5fc7b7ed21"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10982"
+ ],
+ "x-ms-correlation-request-id": [
+ "fa9c7184-2402-4a9c-934a-4da9cc852d1d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095738Z:fa9c7184-2402-4a9c-934a-4da9cc852d1d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:37 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e63190ea-4252-47e7-8c2f-6c1ca7f93143"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "585ff37a-e647-420d-911a-1a1371dbe94e"
+ ],
+ "x-ms-client-request-id": [
+ "e63190ea-4252-47e7-8c2f-6c1ca7f93143",
+ "e63190ea-4252-47e7-8c2f-6c1ca7f93143"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10981"
+ ],
+ "x-ms-correlation-request-id": [
+ "585ff37a-e647-420d-911a-1a1371dbe94e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095738Z:585ff37a-e647-420d-911a-1a1371dbe94e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:37 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e93870da-86cf-464b-b100-ed96be2a4b15"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "a17a78f2-b66b-430b-b3bc-2a4f319831d2"
+ ],
+ "x-ms-client-request-id": [
+ "e93870da-86cf-464b-b100-ed96be2a4b15",
+ "e93870da-86cf-464b-b100-ed96be2a4b15"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10980"
+ ],
+ "x-ms-correlation-request-id": [
+ "a17a78f2-b66b-430b-b3bc-2a4f319831d2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095738Z:a17a78f2-b66b-430b-b3bc-2a4f319831d2"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:38 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "81d34626-eba3-4168-bc35-6a6a457a01af"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "4c719959-b11a-4bbe-8e3e-3433418e4869"
+ ],
+ "x-ms-client-request-id": [
+ "81d34626-eba3-4168-bc35-6a6a457a01af",
+ "81d34626-eba3-4168-bc35-6a6a457a01af"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10979"
+ ],
+ "x-ms-correlation-request-id": [
+ "4c719959-b11a-4bbe-8e3e-3433418e4869"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095738Z:4c719959-b11a-4bbe-8e3e-3433418e4869"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:38 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cbec330b-0147-4ad5-8d70-a66c6cee5712"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "ef1398ba-3f3e-4cc0-b46f-ee4260a0c9dc"
+ ],
+ "x-ms-client-request-id": [
+ "cbec330b-0147-4ad5-8d70-a66c6cee5712",
+ "cbec330b-0147-4ad5-8d70-a66c6cee5712"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10978"
+ ],
+ "x-ms-correlation-request-id": [
+ "ef1398ba-3f3e-4cc0-b46f-ee4260a0c9dc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095739Z:ef1398ba-3f3e-4cc0-b46f-ee4260a0c9dc"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:38 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d9af9d21-5f82-465a-a708-fb2873749e88"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "37a5ae3d-020c-4777-bd81-075f750fb757"
+ ],
+ "x-ms-client-request-id": [
+ "d9af9d21-5f82-465a-a708-fb2873749e88",
+ "d9af9d21-5f82-465a-a708-fb2873749e88"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10977"
+ ],
+ "x-ms-correlation-request-id": [
+ "37a5ae3d-020c-4777-bd81-075f750fb757"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095739Z:37a5ae3d-020c-4777-bd81-075f750fb757"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:38 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "98e6cd47-b525-4383-8f2e-8bd4d427d7c9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "0099602b-ef1a-41b5-8109-2f42577baf65"
+ ],
+ "x-ms-client-request-id": [
+ "98e6cd47-b525-4383-8f2e-8bd4d427d7c9",
+ "98e6cd47-b525-4383-8f2e-8bd4d427d7c9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10976"
+ ],
+ "x-ms-correlation-request-id": [
+ "0099602b-ef1a-41b5-8109-2f42577baf65"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095739Z:0099602b-ef1a-41b5-8109-2f42577baf65"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:38 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c4f2643e-fc54-4072-a9b4-66ae0a783168"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "bcb11518-73a0-4715-b2e5-53183e26bef5"
+ ],
+ "x-ms-client-request-id": [
+ "c4f2643e-fc54-4072-a9b4-66ae0a783168",
+ "c4f2643e-fc54-4072-a9b4-66ae0a783168"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10975"
+ ],
+ "x-ms-correlation-request-id": [
+ "bcb11518-73a0-4715-b2e5-53183e26bef5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095739Z:bcb11518-73a0-4715-b2e5-53183e26bef5"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:39 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "81be10e8-baaf-44f4-b1b8-bf264e1c883f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "00043770-66fd-4206-a5d5-29208c67060b"
+ ],
+ "x-ms-client-request-id": [
+ "81be10e8-baaf-44f4-b1b8-bf264e1c883f",
+ "81be10e8-baaf-44f4-b1b8-bf264e1c883f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10974"
+ ],
+ "x-ms-correlation-request-id": [
+ "00043770-66fd-4206-a5d5-29208c67060b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095740Z:00043770-66fd-4206-a5d5-29208c67060b"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:39 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c77b54df-69ae-40ff-865f-7803b4f9703c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "7e857924-0d4c-4b3e-b9cf-07289f0ba20c"
+ ],
+ "x-ms-client-request-id": [
+ "c77b54df-69ae-40ff-865f-7803b4f9703c",
+ "c77b54df-69ae-40ff-865f-7803b4f9703c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10973"
+ ],
+ "x-ms-correlation-request-id": [
+ "7e857924-0d4c-4b3e-b9cf-07289f0ba20c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095740Z:7e857924-0d4c-4b3e-b9cf-07289f0ba20c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:39 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e60aca09-b799-4d82-9eaf-2f88cd691af1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "93430718-68c4-4197-a607-41c71afd6dc2"
+ ],
+ "x-ms-client-request-id": [
+ "e60aca09-b799-4d82-9eaf-2f88cd691af1",
+ "e60aca09-b799-4d82-9eaf-2f88cd691af1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10972"
+ ],
+ "x-ms-correlation-request-id": [
+ "93430718-68c4-4197-a607-41c71afd6dc2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095740Z:93430718-68c4-4197-a607-41c71afd6dc2"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:39 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e60eb47d-1416-4f99-b29d-5d37a80b6671"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "38728821-e0e1-40b1-9a1b-c8f1c9a8de23"
+ ],
+ "x-ms-client-request-id": [
+ "e60eb47d-1416-4f99-b29d-5d37a80b6671",
+ "e60eb47d-1416-4f99-b29d-5d37a80b6671"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10971"
+ ],
+ "x-ms-correlation-request-id": [
+ "38728821-e0e1-40b1-9a1b-c8f1c9a8de23"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095740Z:38728821-e0e1-40b1-9a1b-c8f1c9a8de23"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:40 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a2d71e7d-8333-4a20-9e61-8bb2fa7d9548"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "f78ee0fd-d74e-4556-9ee3-e7c2cdaf2212"
+ "9b52ef88-7b2b-4405-8d35-79cc7e190a24"
],
"x-ms-client-request-id": [
- "be6b8f1e-b437-4b4a-ab4f-091ca3647ad8",
- "be6b8f1e-b437-4b4a-ab4f-091ca3647ad8"
+ "a2d71e7d-8333-4a20-9e61-8bb2fa7d9548",
+ "a2d71e7d-8333-4a20-9e61-8bb2fa7d9548"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-IIS/10.0"
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10970"
+ ],
+ "x-ms-correlation-request-id": [
+ "9b52ef88-7b2b-4405-8d35-79cc7e190a24"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095741Z:9b52ef88-7b2b-4405-8d35-79cc7e190a24"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:40 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "90cc635e-82a6-4e14-8c4e-cd1d5a67579f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "56bc4a18-33b7-4a8c-bf4c-826344686591"
+ ],
+ "x-ms-client-request-id": [
+ "90cc635e-82a6-4e14-8c4e-cd1d5a67579f",
+ "90cc635e-82a6-4e14-8c4e-cd1d5a67579f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11800"
+ "10969"
],
"x-ms-correlation-request-id": [
- "f78ee0fd-d74e-4556-9ee3-e7c2cdaf2212"
+ "56bc4a18-33b7-4a8c-bf4c-826344686591"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075623Z:f78ee0fd-d74e-4556-9ee3-e7c2cdaf2212"
+ "WESTINDIA:20200319T095741Z:56bc4a18-33b7-4a8c-bf4c-826344686591"
],
"Date": [
- "Mon, 03 Feb 2020 07:56:23 GMT"
+ "Thu, 19 Mar 2020 09:57:40 GMT"
+ ],
+ "Expires": [
+ "-1"
],
"Content-Length": [
- "731"
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4b668782-be23-495c-9eb4-c6ee510878ee"
],
- "Content-Type": [
- "application/json"
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "55a9cb2a-ad24-4ab0-8774-d035d803577a"
+ ],
+ "x-ms-client-request-id": [
+ "4b668782-be23-495c-9eb4-c6ee510878ee",
+ "4b668782-be23-495c-9eb4-c6ee510878ee"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10968"
+ ],
+ "x-ms-correlation-request-id": [
+ "55a9cb2a-ad24-4ab0-8774-d035d803577a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095741Z:55a9cb2a-ad24-4ab0-8774-d035d803577a"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:40 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a3967a23-c64c-404d-900c-2aeb09a0f608"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "3c4ecb2c-46e3-41bb-9fdb-2e9751527893"
+ ],
+ "x-ms-client-request-id": [
+ "a3967a23-c64c-404d-900c-2aeb09a0f608",
+ "a3967a23-c64c-404d-900c-2aeb09a0f608"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10967"
+ ],
+ "x-ms-correlation-request-id": [
+ "3c4ecb2c-46e3-41bb-9fdb-2e9751527893"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095741Z:3c4ecb2c-46e3-41bb-9fdb-2e9751527893"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:41 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ef0a546c-394d-4c79-b4d9-b7df106e27c4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "19bfb172-e67b-4d24-a0a4-cbcee6642a40"
+ ],
+ "x-ms-client-request-id": [
+ "ef0a546c-394d-4c79-b4d9-b7df106e27c4",
+ "ef0a546c-394d-4c79-b4d9-b7df106e27c4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10966"
+ ],
+ "x-ms-correlation-request-id": [
+ "19bfb172-e67b-4d24-a0a4-cbcee6642a40"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095742Z:19bfb172-e67b-4d24-a0a4-cbcee6642a40"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:41 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0bef8c51-c110-4343-bbb0-e7cbfe85e4ac"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "7d4f713d-ecd9-4fe3-a739-c8bb935e7e6d"
+ ],
+ "x-ms-client-request-id": [
+ "0bef8c51-c110-4343-bbb0-e7cbfe85e4ac",
+ "0bef8c51-c110-4343-bbb0-e7cbfe85e4ac"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10965"
+ ],
+ "x-ms-correlation-request-id": [
+ "7d4f713d-ecd9-4fe3-a739-c8bb935e7e6d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095742Z:7d4f713d-ecd9-4fe3-a739-c8bb935e7e6d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:41 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "de83cccc-e27c-4ede-a22f-a06a631c60f7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "bbb5b22d-a779-49f5-be01-a9dcbc04daf0"
+ ],
+ "x-ms-client-request-id": [
+ "de83cccc-e27c-4ede-a22f-a06a631c60f7",
+ "de83cccc-e27c-4ede-a22f-a06a631c60f7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10964"
+ ],
+ "x-ms-correlation-request-id": [
+ "bbb5b22d-a779-49f5-be01-a9dcbc04daf0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095742Z:bbb5b22d-a779-49f5-be01-a9dcbc04daf0"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:41 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "22e1def8-50d3-4e85-a7e6-fc915cb97fa6"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "aa6ef630-05cb-4449-bf53-fc3830a70166"
+ ],
+ "x-ms-client-request-id": [
+ "22e1def8-50d3-4e85-a7e6-fc915cb97fa6",
+ "22e1def8-50d3-4e85-a7e6-fc915cb97fa6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10963"
+ ],
+ "x-ms-correlation-request-id": [
+ "aa6ef630-05cb-4449-bf53-fc3830a70166"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095742Z:aa6ef630-05cb-4449-bf53-fc3830a70166"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:41 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "54192c36-d867-4c7d-8243-cd4c09c90d82"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28325.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "7b6821aa-975a-4a73-b343-a604c413e3f9"
+ ],
+ "x-ms-client-request-id": [
+ "54192c36-d867-4c7d-8243-cd4c09c90d82",
+ "54192c36-d867-4c7d-8243-cd4c09c90d82"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10962"
+ ],
+ "x-ms-correlation-request-id": [
+ "7b6821aa-975a-4a73-b343-a604c413e3f9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095742Z:7b6821aa-975a-4a73-b343-a604c413e3f9"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:42 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;fs1/recoveryPoints/26388373513716\",\r\n \"name\": \"26388373513716\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints\",\r\n \"properties\": {\r\n \"objectType\": \"AzureFileShareRecoveryPoint\",\r\n \"recoveryPointType\": \"FileSystemConsistent\",\r\n \"recoveryPointTime\": \"2020-02-03T07:55:50Z\",\r\n \"fileShareSnapshotUri\": \"https://pstestsa8895.file.core.windows.net/fs1?sharesnapshot=2020-02-03T07:55:50.0000000Z\",\r\n \"recoveryPointSizeInGB\": 1\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "91db44f8-6690-4ccb-96a4-860bfcbd476c"
+ "e914a037-d6fa-47be-af1a-a45ad1363a58"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4"
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
"ResponseHeaders": {
@@ -3267,57 +75469,67 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11589"
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
],
- "x-ms-request-id": [
- "ed53a210-60c4-4c35-ae6d-9a980a15c58f"
+ "Retry-After": [
+ "60"
],
- "x-ms-correlation-request-id": [
- "ed53a210-60c4-4c35-ae6d-9a980a15c58f"
+ "X-Content-Type-Options": [
+ "nosniff"
],
- "x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075625Z:ed53a210-60c4-4c35-ae6d-9a980a15c58f"
+ "x-ms-request-id": [
+ "60bcde00-6663-4be7-b63a-b09927d6032d"
+ ],
+ "x-ms-client-request-id": [
+ "e914a037-d6fa-47be-af1a-a45ad1363a58",
+ "e914a037-d6fa-47be-af1a-a45ad1363a58"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "X-Powered-By": [
+ "ASP.NET"
],
- "Date": [
- "Mon, 03 Feb 2020 07:56:25 GMT"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10961"
],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "x-ms-correlation-request-id": [
+ "60bcde00-6663-4be7-b63a-b09927d6032d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095743Z:60bcde00-6663-4be7-b63a-b09927d6032d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:42 GMT"
],
"Expires": [
"-1"
],
"Content-Length": [
- "519"
+ "0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.ClassicStorage/storageAccounts/iaasextstore2\",\r\n \"name\": \"iaasextstore2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/riteshcRG/providers/Microsoft.ClassicStorage/storageAccounts/riteshcrg7070\",\r\n \"name\": \"riteshcrg7070\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "22d71264-6e9d-42f6-b6a1-4475eeddb435"
+ "c4b9668f-19d2-4a8e-8062-7423d48fd856"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4"
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
"ResponseHeaders": {
@@ -3327,57 +75539,67 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11587"
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
],
- "x-ms-request-id": [
- "518e501e-853b-4cd5-84ee-c522a3901daa"
+ "Retry-After": [
+ "60"
],
- "x-ms-correlation-request-id": [
- "518e501e-853b-4cd5-84ee-c522a3901daa"
+ "X-Content-Type-Options": [
+ "nosniff"
],
- "x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075625Z:518e501e-853b-4cd5-84ee-c522a3901daa"
+ "x-ms-request-id": [
+ "8e354517-2ec0-4f62-b4fd-4a3285601bf9"
+ ],
+ "x-ms-client-request-id": [
+ "c4b9668f-19d2-4a8e-8062-7423d48fd856",
+ "c4b9668f-19d2-4a8e-8062-7423d48fd856"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "X-Powered-By": [
+ "ASP.NET"
],
- "Date": [
- "Mon, 03 Feb 2020 07:56:25 GMT"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10960"
],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "x-ms-correlation-request-id": [
+ "8e354517-2ec0-4f62-b4fd-4a3285601bf9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095743Z:8e354517-2ec0-4f62-b4fd-4a3285601bf9"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:42 GMT"
],
"Expires": [
"-1"
],
"Content-Length": [
- "519"
+ "0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.ClassicStorage/storageAccounts/iaasextstore2\",\r\n \"name\": \"iaasextstore2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/riteshcRG/providers/Microsoft.ClassicStorage/storageAccounts/riteshcrg7070\",\r\n \"name\": \"riteshcrg7070\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "32efd513-947d-40ed-bf06-6ca7561e78f2"
+ "80560537-b11a-4692-8b9c-dbdb4011a02e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4"
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
"ResponseHeaders": {
@@ -3387,57 +75609,67 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11585"
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
],
- "x-ms-request-id": [
- "07bd87ae-f212-435c-a16e-afd31ee38f62"
+ "Retry-After": [
+ "60"
],
- "x-ms-correlation-request-id": [
- "07bd87ae-f212-435c-a16e-afd31ee38f62"
+ "X-Content-Type-Options": [
+ "nosniff"
],
- "x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075733Z:07bd87ae-f212-435c-a16e-afd31ee38f62"
+ "x-ms-request-id": [
+ "6de15470-fc24-47d1-b748-82457d7468aa"
+ ],
+ "x-ms-client-request-id": [
+ "80560537-b11a-4692-8b9c-dbdb4011a02e",
+ "80560537-b11a-4692-8b9c-dbdb4011a02e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "X-Powered-By": [
+ "ASP.NET"
],
- "Date": [
- "Mon, 03 Feb 2020 07:57:33 GMT"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10959"
],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "x-ms-correlation-request-id": [
+ "6de15470-fc24-47d1-b748-82457d7468aa"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095743Z:6de15470-fc24-47d1-b748-82457d7468aa"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:43 GMT"
],
"Expires": [
"-1"
],
"Content-Length": [
- "519"
+ "0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.ClassicStorage/storageAccounts/iaasextstore2\",\r\n \"name\": \"iaasextstore2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/riteshcRG/providers/Microsoft.ClassicStorage/storageAccounts/riteshcrg7070\",\r\n \"name\": \"riteshcrg7070\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b378caaa-1120-4989-b4a6-f3db38782873"
+ "c05e55f4-bca8-4ef4-90eb-e8fccec7fac0"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4"
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
"ResponseHeaders": {
@@ -3447,57 +75679,67 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11583"
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
],
- "x-ms-request-id": [
- "8bbb083c-9e0e-4403-9fe9-84abd8a0a6ea"
+ "Retry-After": [
+ "60"
],
- "x-ms-correlation-request-id": [
- "8bbb083c-9e0e-4403-9fe9-84abd8a0a6ea"
+ "X-Content-Type-Options": [
+ "nosniff"
],
- "x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075733Z:8bbb083c-9e0e-4403-9fe9-84abd8a0a6ea"
+ "x-ms-request-id": [
+ "eab82056-0a59-4bfb-a7c5-ba8d8c5d16b8"
+ ],
+ "x-ms-client-request-id": [
+ "c05e55f4-bca8-4ef4-90eb-e8fccec7fac0",
+ "c05e55f4-bca8-4ef4-90eb-e8fccec7fac0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "X-Powered-By": [
+ "ASP.NET"
],
- "Date": [
- "Mon, 03 Feb 2020 07:57:33 GMT"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10958"
],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "x-ms-correlation-request-id": [
+ "eab82056-0a59-4bfb-a7c5-ba8d8c5d16b8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095744Z:eab82056-0a59-4bfb-a7c5-ba8d8c5d16b8"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:43 GMT"
],
"Expires": [
"-1"
],
"Content-Length": [
- "519"
+ "0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.ClassicStorage/storageAccounts/iaasextstore2\",\r\n \"name\": \"iaasextstore2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/riteshcRG/providers/Microsoft.ClassicStorage/storageAccounts/riteshcrg7070\",\r\n \"name\": \"riteshcrg7070\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cfc94e59-81b2-43c6-ab5c-c9e26a446a7a"
+ "ea55a067-719c-496f-9313-9e451d7017aa"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4"
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
"ResponseHeaders": {
@@ -3507,57 +75749,67 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11581"
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
],
- "x-ms-request-id": [
- "526ffac4-a1da-4105-96a7-08e4eb177ec0"
+ "Retry-After": [
+ "60"
],
- "x-ms-correlation-request-id": [
- "526ffac4-a1da-4105-96a7-08e4eb177ec0"
+ "X-Content-Type-Options": [
+ "nosniff"
],
- "x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075844Z:526ffac4-a1da-4105-96a7-08e4eb177ec0"
+ "x-ms-request-id": [
+ "40cd789c-c919-44bd-a10a-7606c70fcf8c"
+ ],
+ "x-ms-client-request-id": [
+ "ea55a067-719c-496f-9313-9e451d7017aa",
+ "ea55a067-719c-496f-9313-9e451d7017aa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "X-Powered-By": [
+ "ASP.NET"
],
- "Date": [
- "Mon, 03 Feb 2020 07:58:44 GMT"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10957"
],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "x-ms-correlation-request-id": [
+ "40cd789c-c919-44bd-a10a-7606c70fcf8c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095744Z:40cd789c-c919-44bd-a10a-7606c70fcf8c"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:43 GMT"
],
"Expires": [
"-1"
],
"Content-Length": [
- "519"
+ "0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.ClassicStorage/storageAccounts/iaasextstore2\",\r\n \"name\": \"iaasextstore2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/riteshcRG/providers/Microsoft.ClassicStorage/storageAccounts/riteshcrg7070\",\r\n \"name\": \"riteshcrg7070\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5fd26b94-3972-4cf9-a52f-ca4c81becd05"
+ "781c56a5-ece2-428a-8638-924e9a51c857"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4"
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
"ResponseHeaders": {
@@ -3567,57 +75819,67 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11579"
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
],
- "x-ms-request-id": [
- "521d520f-4c78-4f73-88b2-cfe59686a01b"
+ "Retry-After": [
+ "60"
],
- "x-ms-correlation-request-id": [
- "521d520f-4c78-4f73-88b2-cfe59686a01b"
+ "X-Content-Type-Options": [
+ "nosniff"
],
- "x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075950Z:521d520f-4c78-4f73-88b2-cfe59686a01b"
+ "x-ms-request-id": [
+ "e95c301f-4a16-4170-9c93-638b378b0a4d"
+ ],
+ "x-ms-client-request-id": [
+ "781c56a5-ece2-428a-8638-924e9a51c857",
+ "781c56a5-ece2-428a-8638-924e9a51c857"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "X-Powered-By": [
+ "ASP.NET"
],
- "Date": [
- "Mon, 03 Feb 2020 07:59:50 GMT"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10956"
],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "x-ms-correlation-request-id": [
+ "e95c301f-4a16-4170-9c93-638b378b0a4d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095744Z:e95c301f-4a16-4170-9c93-638b378b0a4d"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:43 GMT"
],
"Expires": [
"-1"
],
"Content-Length": [
- "519"
+ "0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.ClassicStorage/storageAccounts/iaasextstore2\",\r\n \"name\": \"iaasextstore2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/riteshcRG/providers/Microsoft.ClassicStorage/storageAccounts/riteshcrg7070\",\r\n \"name\": \"riteshcrg7070\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c2a22247-eee3-4b99-b79d-13fadf963641"
+ "bd572e96-6446-4380-b37b-bede59ad0add"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4"
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
"ResponseHeaders": {
@@ -3627,57 +75889,67 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11588"
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
],
- "x-ms-request-id": [
- "e44c4aba-3029-4a3d-8115-8e40620b1d5f"
+ "Retry-After": [
+ "60"
],
- "x-ms-correlation-request-id": [
- "e44c4aba-3029-4a3d-8115-8e40620b1d5f"
+ "X-Content-Type-Options": [
+ "nosniff"
],
- "x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075625Z:e44c4aba-3029-4a3d-8115-8e40620b1d5f"
+ "x-ms-request-id": [
+ "e041f6ee-1b66-4dbb-b8c7-ddfbe0d2136e"
+ ],
+ "x-ms-client-request-id": [
+ "bd572e96-6446-4380-b37b-bede59ad0add",
+ "bd572e96-6446-4380-b37b-bede59ad0add"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "X-Powered-By": [
+ "ASP.NET"
],
- "Date": [
- "Mon, 03 Feb 2020 07:56:25 GMT"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10955"
],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "x-ms-correlation-request-id": [
+ "e041f6ee-1b66-4dbb-b8c7-ddfbe0d2136e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095744Z:e041f6ee-1b66-4dbb-b8c7-ddfbe0d2136e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:44 GMT"
],
"Expires": [
"-1"
],
"Content-Length": [
- "6011"
+ "0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsnavigationtest\",\r\n \"name\": \"afsnavigationtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afstbackuptestsa\",\r\n \"name\": \"afstbackuptestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\",\r\n \"name\": \"iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\",\r\n \"name\": \"iaasextstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasvmexistingdiag1\",\r\n \"name\": \"iaasvmexistingdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrr\",\r\n \"name\": \"iaasvmexistingcrr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag\",\r\n \"name\": \"iaasvmexistingcrrdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Delete By\": \"01-2030\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"AutoShutdown\": \"false\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag112\",\r\n \"name\": \"iaasvmexistingcrrdiag112\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasnewstore1\",\r\n \"name\": \"iaasnewstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\",\r\n \"name\": \"iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/aasavigationestdiag\",\r\n \"name\": \"aasavigationestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/iaasvmnavigationstore\",\r\n \"name\": \"iaasvmnavigationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/psbvtsa2\",\r\n \"name\": \"psbvtsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\",\r\n \"name\": \"pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \"MABUsed\": \" Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Purpose\": \"PS bvt\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"name\": \"pstestsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\",\r\n \"name\": \"pstesttargetsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\",\r\n \"name\": \"pstesttargetsa8896\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5a6845f3-48d1-4545-abc6-5bded1baa954"
+ "843f480f-3f54-4376-8410-f8fd73dc26e8"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4"
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
"ResponseHeaders": {
@@ -3687,57 +75959,67 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11586"
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
],
- "x-ms-request-id": [
- "1f361304-a1f4-4a2e-ade5-ff3d6bb06836"
+ "Retry-After": [
+ "60"
],
- "x-ms-correlation-request-id": [
- "1f361304-a1f4-4a2e-ade5-ff3d6bb06836"
+ "X-Content-Type-Options": [
+ "nosniff"
],
- "x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075625Z:1f361304-a1f4-4a2e-ade5-ff3d6bb06836"
+ "x-ms-request-id": [
+ "862bd29e-1eb2-4ae3-859b-58c8d536d583"
+ ],
+ "x-ms-client-request-id": [
+ "843f480f-3f54-4376-8410-f8fd73dc26e8",
+ "843f480f-3f54-4376-8410-f8fd73dc26e8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "X-Powered-By": [
+ "ASP.NET"
],
- "Date": [
- "Mon, 03 Feb 2020 07:56:25 GMT"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10954"
],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "x-ms-correlation-request-id": [
+ "862bd29e-1eb2-4ae3-859b-58c8d536d583"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095745Z:862bd29e-1eb2-4ae3-859b-58c8d536d583"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:44 GMT"
],
"Expires": [
"-1"
],
"Content-Length": [
- "6011"
+ "0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsnavigationtest\",\r\n \"name\": \"afsnavigationtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afstbackuptestsa\",\r\n \"name\": \"afstbackuptestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\",\r\n \"name\": \"iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\",\r\n \"name\": \"iaasextstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasvmexistingdiag1\",\r\n \"name\": \"iaasvmexistingdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrr\",\r\n \"name\": \"iaasvmexistingcrr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag\",\r\n \"name\": \"iaasvmexistingcrrdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Delete By\": \"01-2030\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"AutoShutdown\": \"false\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag112\",\r\n \"name\": \"iaasvmexistingcrrdiag112\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasnewstore1\",\r\n \"name\": \"iaasnewstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\",\r\n \"name\": \"iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/aasavigationestdiag\",\r\n \"name\": \"aasavigationestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/iaasvmnavigationstore\",\r\n \"name\": \"iaasvmnavigationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/psbvtsa2\",\r\n \"name\": \"psbvtsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\",\r\n \"name\": \"pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \"MABUsed\": \" Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Purpose\": \"PS bvt\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"name\": \"pstestsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\",\r\n \"name\": \"pstesttargetsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\",\r\n \"name\": \"pstesttargetsa8896\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dd0ea1f6-bf3f-4969-ab4e-814324bb5797"
+ "33826482-9c27-4bdb-87d9-fd9c9160a430"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4"
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
"ResponseHeaders": {
@@ -3747,57 +76029,67 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11584"
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
],
- "x-ms-request-id": [
- "484cbabd-b5a3-46d3-acce-248ec502f7a9"
+ "Retry-After": [
+ "60"
],
- "x-ms-correlation-request-id": [
- "484cbabd-b5a3-46d3-acce-248ec502f7a9"
+ "X-Content-Type-Options": [
+ "nosniff"
],
- "x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075733Z:484cbabd-b5a3-46d3-acce-248ec502f7a9"
+ "x-ms-request-id": [
+ "02c75c09-7759-4b13-96d7-9b829138096e"
+ ],
+ "x-ms-client-request-id": [
+ "33826482-9c27-4bdb-87d9-fd9c9160a430",
+ "33826482-9c27-4bdb-87d9-fd9c9160a430"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "X-Powered-By": [
+ "ASP.NET"
],
- "Date": [
- "Mon, 03 Feb 2020 07:57:33 GMT"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10953"
],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "x-ms-correlation-request-id": [
+ "02c75c09-7759-4b13-96d7-9b829138096e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095745Z:02c75c09-7759-4b13-96d7-9b829138096e"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:44 GMT"
],
"Expires": [
"-1"
],
"Content-Length": [
- "6011"
+ "0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsnavigationtest\",\r\n \"name\": \"afsnavigationtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afstbackuptestsa\",\r\n \"name\": \"afstbackuptestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\",\r\n \"name\": \"iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\",\r\n \"name\": \"iaasextstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasvmexistingdiag1\",\r\n \"name\": \"iaasvmexistingdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrr\",\r\n \"name\": \"iaasvmexistingcrr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag\",\r\n \"name\": \"iaasvmexistingcrrdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Delete By\": \"01-2030\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"AutoShutdown\": \"false\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag112\",\r\n \"name\": \"iaasvmexistingcrrdiag112\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasnewstore1\",\r\n \"name\": \"iaasnewstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\",\r\n \"name\": \"iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/aasavigationestdiag\",\r\n \"name\": \"aasavigationestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/iaasvmnavigationstore\",\r\n \"name\": \"iaasvmnavigationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/psbvtsa2\",\r\n \"name\": \"psbvtsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\",\r\n \"name\": \"pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \"MABUsed\": \" Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Purpose\": \"PS bvt\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"name\": \"pstestsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\",\r\n \"name\": \"pstesttargetsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\",\r\n \"name\": \"pstesttargetsa8896\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9983cee-e0e7-4843-83da-26344f53005a"
+ "2c3e7a69-3a71-4b9b-b25e-26d35c232e25"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4"
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
"ResponseHeaders": {
@@ -3807,57 +76099,67 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11582"
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
],
- "x-ms-request-id": [
- "84fa5166-615e-4b01-94f2-d1d09d430e20"
+ "Retry-After": [
+ "60"
],
- "x-ms-correlation-request-id": [
- "84fa5166-615e-4b01-94f2-d1d09d430e20"
+ "X-Content-Type-Options": [
+ "nosniff"
],
- "x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075734Z:84fa5166-615e-4b01-94f2-d1d09d430e20"
+ "x-ms-request-id": [
+ "e082c51a-9baa-4d36-89c2-84b1c05d3c95"
+ ],
+ "x-ms-client-request-id": [
+ "2c3e7a69-3a71-4b9b-b25e-26d35c232e25",
+ "2c3e7a69-3a71-4b9b-b25e-26d35c232e25"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "X-Powered-By": [
+ "ASP.NET"
],
- "Date": [
- "Mon, 03 Feb 2020 07:57:33 GMT"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10952"
],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "x-ms-correlation-request-id": [
+ "e082c51a-9baa-4d36-89c2-84b1c05d3c95"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095745Z:e082c51a-9baa-4d36-89c2-84b1c05d3c95"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:44 GMT"
],
"Expires": [
"-1"
],
"Content-Length": [
- "6011"
+ "0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsnavigationtest\",\r\n \"name\": \"afsnavigationtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afstbackuptestsa\",\r\n \"name\": \"afstbackuptestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\",\r\n \"name\": \"iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\",\r\n \"name\": \"iaasextstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasvmexistingdiag1\",\r\n \"name\": \"iaasvmexistingdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrr\",\r\n \"name\": \"iaasvmexistingcrr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag\",\r\n \"name\": \"iaasvmexistingcrrdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Delete By\": \"01-2030\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"AutoShutdown\": \"false\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag112\",\r\n \"name\": \"iaasvmexistingcrrdiag112\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasnewstore1\",\r\n \"name\": \"iaasnewstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\",\r\n \"name\": \"iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/aasavigationestdiag\",\r\n \"name\": \"aasavigationestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/iaasvmnavigationstore\",\r\n \"name\": \"iaasvmnavigationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/psbvtsa2\",\r\n \"name\": \"psbvtsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\",\r\n \"name\": \"pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \"MABUsed\": \" Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Purpose\": \"PS bvt\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"name\": \"pstestsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\",\r\n \"name\": \"pstesttargetsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\",\r\n \"name\": \"pstesttargetsa8896\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9dcb1098-2830-4163-ac29-80d8eb4f3404"
+ "467cefd1-a427-4fd5-b438-e2ab861050f7"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4"
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
"ResponseHeaders": {
@@ -3867,57 +76169,67 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11580"
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
],
- "x-ms-request-id": [
- "ab6c0132-027b-4b07-918e-e797872148a8"
+ "Retry-After": [
+ "60"
],
- "x-ms-correlation-request-id": [
- "ab6c0132-027b-4b07-918e-e797872148a8"
+ "X-Content-Type-Options": [
+ "nosniff"
],
- "x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075844Z:ab6c0132-027b-4b07-918e-e797872148a8"
+ "x-ms-request-id": [
+ "e6034ba8-b1ed-4e66-b164-ec5f64d30322"
+ ],
+ "x-ms-client-request-id": [
+ "467cefd1-a427-4fd5-b438-e2ab861050f7",
+ "467cefd1-a427-4fd5-b438-e2ab861050f7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "X-Powered-By": [
+ "ASP.NET"
],
- "Date": [
- "Mon, 03 Feb 2020 07:58:44 GMT"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10951"
],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "x-ms-correlation-request-id": [
+ "e6034ba8-b1ed-4e66-b164-ec5f64d30322"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095745Z:e6034ba8-b1ed-4e66-b164-ec5f64d30322"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:44 GMT"
],
"Expires": [
"-1"
],
"Content-Length": [
- "6011"
+ "0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsnavigationtest\",\r\n \"name\": \"afsnavigationtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afstbackuptestsa\",\r\n \"name\": \"afstbackuptestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\",\r\n \"name\": \"iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\",\r\n \"name\": \"iaasextstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasvmexistingdiag1\",\r\n \"name\": \"iaasvmexistingdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrr\",\r\n \"name\": \"iaasvmexistingcrr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag\",\r\n \"name\": \"iaasvmexistingcrrdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Delete By\": \"01-2030\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"AutoShutdown\": \"false\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag112\",\r\n \"name\": \"iaasvmexistingcrrdiag112\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasnewstore1\",\r\n \"name\": \"iaasnewstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\",\r\n \"name\": \"iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/aasavigationestdiag\",\r\n \"name\": \"aasavigationestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/iaasvmnavigationstore\",\r\n \"name\": \"iaasvmnavigationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/psbvtsa2\",\r\n \"name\": \"psbvtsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\",\r\n \"name\": \"pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \"MABUsed\": \" Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Purpose\": \"PS bvt\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"name\": \"pstestsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\",\r\n \"name\": \"pstesttargetsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\",\r\n \"name\": \"pstesttargetsa8896\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ef0da77a-71ba-48a1-9a7d-3b85e1e664a2"
+ "dadaba75-54ad-41d3-b2ff-24fb86809b26"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4"
+ "OSVersion/Microsoft.Windows.10.0.17134.",
+ "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
"ResponseHeaders": {
@@ -3927,63 +76239,67 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11578"
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
],
- "x-ms-request-id": [
- "b00dcf31-281a-469a-83b8-e36b0ee02752"
+ "Retry-After": [
+ "60"
],
- "x-ms-correlation-request-id": [
- "b00dcf31-281a-469a-83b8-e36b0ee02752"
+ "X-Content-Type-Options": [
+ "nosniff"
],
- "x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075950Z:b00dcf31-281a-469a-83b8-e36b0ee02752"
+ "x-ms-request-id": [
+ "1ca0fb49-86bb-43c0-a8a9-72fea2757f56"
+ ],
+ "x-ms-client-request-id": [
+ "dadaba75-54ad-41d3-b2ff-24fb86809b26",
+ "dadaba75-54ad-41d3-b2ff-24fb86809b26"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-Content-Type-Options": [
- "nosniff"
+ "X-Powered-By": [
+ "ASP.NET"
],
- "Date": [
- "Mon, 03 Feb 2020 07:59:50 GMT"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10950"
],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "x-ms-correlation-request-id": [
+ "1ca0fb49-86bb-43c0-a8a9-72fea2757f56"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200319T095745Z:1ca0fb49-86bb-43c0-a8a9-72fea2757f56"
+ ],
+ "Date": [
+ "Thu, 19 Mar 2020 09:57:45 GMT"
],
"Expires": [
"-1"
],
"Content-Length": [
- "6011"
+ "0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afsnavigationtest\",\r\n \"name\": \"afsnavigationtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/afstests/providers/Microsoft.Storage/storageAccounts/afstbackuptestsa\",\r\n \"name\": \"afstbackuptestsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.encryptedvm/providers/Microsoft.Storage/storageAccounts/iaasvmencryptedvmdiag170\",\r\n \"name\": \"iaasvmencryptedvmdiag170\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasextstore1\",\r\n \"name\": \"iaasextstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing/providers/Microsoft.Storage/storageAccounts/iaasvmexistingdiag1\",\r\n \"name\": \"iaasvmexistingdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrr\",\r\n \"name\": \"iaasvmexistingcrr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag\",\r\n \"name\": \"iaasvmexistingcrrdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"MAB Used\": \"Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Delete By\": \"01-2030\",\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"AutoShutdown\": \"false\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.existing.crr/providers/Microsoft.Storage/storageAccounts/iaasvmexistingcrrdiag112\",\r\n \"name\": \"iaasvmexistingcrrdiag112\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"Owner\": \"chgonugu\",\r\n \"Purpose\": \"Testing\",\r\n \"MabUsed\": \"Yes\",\r\n \"DeleteBy\": \"01-2025\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasnewstore1\",\r\n \"name\": \"iaasnewstore1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/iaasvm.new/providers/Microsoft.Storage/storageAccounts/iaasvmnewdiag1\",\r\n \"name\": \"iaasvmnewdiag1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/aasavigationestdiag\",\r\n \"name\": \"aasavigationestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/IaasVMNavigationTest-RG/providers/Microsoft.Storage/storageAccounts/iaasvmnavigationstore\",\r\n \"name\": \"iaasvmnavigationstore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MABUsed\": \"Yes\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/psbvtsa2\",\r\n \"name\": \"psbvtsa2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pscloudtestrg/providers/Microsoft.Storage/storageAccounts/pscloudtestrgdiag\",\r\n \"name\": \"pscloudtestrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"MAB Used\": \" Yes\",\r\n \"MABUsed\": \" Yes\",\r\n \"DeleteBy\": \"01-2030\",\r\n \"Purpose\": \"PS bvt\",\r\n \"Owner\": \"sarath\",\r\n \"AutoShutdown\": \"No\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"name\": \"pstestsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8895\",\r\n \"name\": \"pstesttargetsa8895\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\",\r\n \"name\": \"pstesttargetsa8896\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3Bfs1/recoveryPoints/26388373513716/restore?api-version=2019-06-15",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQmZzMS9yZWNvdmVyeVBvaW50cy8yNjM4ODM3MzUxMzcxNi9yZXN0b3JlP2FwaS12ZXJzaW9uPTIwMTktMDYtMTU=",
- "RequestMethod": "POST",
- "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"AzureFileShareRestoreRequest\",\r\n \"recoveryType\": \"AlternateLocation\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"copyOptions\": \"Overwrite\",\r\n \"restoreRequestType\": \"ItemLevelRestore\",\r\n \"restoreFileSpecs\": [\r\n {\r\n \"path\": \"pstestfolder1bca8f8e\",\r\n \"fileSpecType\": \"Directory\",\r\n \"targetFolderPath\": \"pstestfolder3rty7d7s\"\r\n }\r\n ],\r\n \"targetDetails\": {\r\n \"name\": \"fs1\",\r\n \"targetResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\"\r\n }\r\n }\r\n}",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7cb74a21-6668-4632-8a17-97a55501805d"
+ "bedf7528-8af1-413a-a5d4-16ee06edad0d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "775"
]
},
"ResponseHeaders": {
@@ -3994,23 +76310,20 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;fs1/operationResults/17581924-2144-4f1c-a99d-57222e5af0dc?api-version=2019-06-15"
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
],
"Retry-After": [
"60"
],
- "Azure-AsyncOperation": [
- "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;fs1/operationsStatus/17581924-2144-4f1c-a99d-57222e5af0dc?api-version=2019-06-15"
- ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "3f12e594-c41d-4e61-8811-362ef0727aee"
+ "98872ff7-c6b0-4fe6-9f4b-88a3ee60fedb"
],
"x-ms-client-request-id": [
- "7cb74a21-6668-4632-8a17-97a55501805d",
- "7cb74a21-6668-4632-8a17-97a55501805d"
+ "bedf7528-8af1-413a-a5d4-16ee06edad0d",
+ "bedf7528-8af1-413a-a5d4-16ee06edad0d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4018,17 +76331,17 @@
"X-Powered-By": [
"ASP.NET"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1187"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10949"
],
"x-ms-correlation-request-id": [
- "3f12e594-c41d-4e61-8811-362ef0727aee"
+ "98872ff7-c6b0-4fe6-9f4b-88a3ee60fedb"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075627Z:3f12e594-c41d-4e61-8811-362ef0727aee"
+ "WESTINDIA:20200319T095746Z:98872ff7-c6b0-4fe6-9f4b-88a3ee60fedb"
],
"Date": [
- "Mon, 03 Feb 2020 07:56:27 GMT"
+ "Thu, 19 Mar 2020 09:57:45 GMT"
],
"Expires": [
"-1"
@@ -4041,28 +76354,22 @@
"StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3Bfs1/recoveryPoints/26388373513716/restore?api-version=2019-06-15",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQmZzMS9yZWNvdmVyeVBvaW50cy8yNjM4ODM3MzUxMzcxNi9yZXN0b3JlP2FwaS12ZXJzaW9uPTIwMTktMDYtMTU=",
- "RequestMethod": "POST",
- "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"AzureFileShareRestoreRequest\",\r\n \"recoveryType\": \"AlternateLocation\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"copyOptions\": \"Overwrite\",\r\n \"restoreRequestType\": \"FullShareRestore\",\r\n \"restoreFileSpecs\": [\r\n {\r\n \"targetFolderPath\": \"pstestfolder3rty7d7s\"\r\n }\r\n ],\r\n \"targetDetails\": {\r\n \"name\": \"fs1\",\r\n \"targetResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstesttargetsa8896\"\r\n }\r\n }\r\n}",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ac892f02-88de-4b91-9608-f7ddd6f4c5d1"
+ "e4dbe893-daeb-4803-9a2a-4729876127b3"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "696"
]
},
"ResponseHeaders": {
@@ -4073,23 +76380,20 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;fs1/operationResults/3cb02084-4daa-4696-8d28-b4e70d8c8863?api-version=2019-06-15"
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
],
"Retry-After": [
"60"
],
- "Azure-AsyncOperation": [
- "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;fs1/operationsStatus/3cb02084-4daa-4696-8d28-b4e70d8c8863?api-version=2019-06-15"
- ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "ed7d496e-8ef4-4aa2-a90d-5790b196f447"
+ "581da19b-7ecf-4803-ac02-5f97b9c99daa"
],
"x-ms-client-request-id": [
- "ac892f02-88de-4b91-9608-f7ddd6f4c5d1",
- "ac892f02-88de-4b91-9608-f7ddd6f4c5d1"
+ "e4dbe893-daeb-4803-9a2a-4729876127b3",
+ "e4dbe893-daeb-4803-9a2a-4729876127b3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4097,17 +76401,17 @@
"X-Powered-By": [
"ASP.NET"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1186"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10948"
],
"x-ms-correlation-request-id": [
- "ed7d496e-8ef4-4aa2-a90d-5790b196f447"
+ "581da19b-7ecf-4803-ac02-5f97b9c99daa"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075735Z:ed7d496e-8ef4-4aa2-a90d-5790b196f447"
+ "WESTINDIA:20200319T095746Z:581da19b-7ecf-4803-ac02-5f97b9c99daa"
],
"Date": [
- "Mon, 03 Feb 2020 07:57:34 GMT"
+ "Thu, 19 Mar 2020 09:57:45 GMT"
],
"Expires": [
"-1"
@@ -4120,28 +76424,22 @@
"StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3Bfs1/recoveryPoints/26388373513716/restore?api-version=2019-06-15",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQmZzMS9yZWNvdmVyeVBvaW50cy8yNjM4ODM3MzUxMzcxNi9yZXN0b3JlP2FwaS12ZXJzaW9uPTIwMTktMDYtMTU=",
- "RequestMethod": "POST",
- "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"AzureFileShareRestoreRequest\",\r\n \"recoveryType\": \"OriginalLocation\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"copyOptions\": \"Overwrite\",\r\n \"restoreRequestType\": \"ItemLevelRestore\",\r\n \"restoreFileSpecs\": [\r\n {\r\n \"path\": \"pstestfolder1bca8f8e/pstestfile1bca8f8e.txt\",\r\n \"fileSpecType\": \"File\"\r\n }\r\n ]\r\n }\r\n}",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "921cfb70-842a-4175-b9ab-5d166c003592"
+ "73f77042-0ab3-42af-bc28-f8ff14c1b15f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "513"
]
},
"ResponseHeaders": {
@@ -4152,23 +76450,20 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;fs1/operationResults/2af83b94-41f6-42fc-bab6-84e796eba0d6?api-version=2019-06-15"
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
],
"Retry-After": [
"60"
],
- "Azure-AsyncOperation": [
- "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;fs1/operationsStatus/2af83b94-41f6-42fc-bab6-84e796eba0d6?api-version=2019-06-15"
- ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "b3cae897-b574-4d5b-bee6-3e44e11b7314"
+ "23ba5486-8a07-4a51-918d-f1d67981c398"
],
"x-ms-client-request-id": [
- "921cfb70-842a-4175-b9ab-5d166c003592",
- "921cfb70-842a-4175-b9ab-5d166c003592"
+ "73f77042-0ab3-42af-bc28-f8ff14c1b15f",
+ "73f77042-0ab3-42af-bc28-f8ff14c1b15f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4176,17 +76471,17 @@
"X-Powered-By": [
"ASP.NET"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1185"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10947"
],
"x-ms-correlation-request-id": [
- "b3cae897-b574-4d5b-bee6-3e44e11b7314"
+ "23ba5486-8a07-4a51-918d-f1d67981c398"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075846Z:b3cae897-b574-4d5b-bee6-3e44e11b7314"
+ "WESTINDIA:20200319T095746Z:23ba5486-8a07-4a51-918d-f1d67981c398"
],
"Date": [
- "Mon, 03 Feb 2020 07:58:46 GMT"
+ "Thu, 19 Mar 2020 09:57:45 GMT"
],
"Expires": [
"-1"
@@ -4199,28 +76494,22 @@
"StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3Bfs1/recoveryPoints/26388373513716/restore?api-version=2019-06-15",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQmZzMS9yZWNvdmVyeVBvaW50cy8yNjM4ODM3MzUxMzcxNi9yZXN0b3JlP2FwaS12ZXJzaW9uPTIwMTktMDYtMTU=",
- "RequestMethod": "POST",
- "RequestBody": "{\r\n \"properties\": {\r\n \"objectType\": \"AzureFileShareRestoreRequest\",\r\n \"recoveryType\": \"OriginalLocation\",\r\n \"sourceResourceId\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.Storage/storageAccounts/pstestsa8895\",\r\n \"copyOptions\": \"Overwrite\",\r\n \"restoreRequestType\": \"FullShareRestore\"\r\n }\r\n}",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0bda6dc9-11b7-4f93-bdaf-e99a7feb0d57"
+ "d0b9901b-278f-4319-b5f1-f0a869ba6a0d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "364"
]
},
"ResponseHeaders": {
@@ -4231,23 +76520,20 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;fs1/operationResults/648ba999-44a4-4ff3-a0d1-7f5c1c6536f0?api-version=2019-06-15"
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
],
"Retry-After": [
"60"
],
- "Azure-AsyncOperation": [
- "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer;storage;pstestrg8895;pstestsa8895/protectedItems/AzureFileShare;fs1/operationsStatus/648ba999-44a4-4ff3-a0d1-7f5c1c6536f0?api-version=2019-06-15"
- ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "5a3e4c3e-d777-4044-9a12-0bb89a000f79"
+ "a8c440f6-b102-43c9-ad9b-a8a1d5076225"
],
"x-ms-client-request-id": [
- "0bda6dc9-11b7-4f93-bdaf-e99a7feb0d57",
- "0bda6dc9-11b7-4f93-bdaf-e99a7feb0d57"
+ "d0b9901b-278f-4319-b5f1-f0a869ba6a0d",
+ "d0b9901b-278f-4319-b5f1-f0a869ba6a0d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4255,17 +76541,17 @@
"X-Powered-By": [
"ASP.NET"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1184"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10946"
],
"x-ms-correlation-request-id": [
- "5a3e4c3e-d777-4044-9a12-0bb89a000f79"
+ "a8c440f6-b102-43c9-ad9b-a8a1d5076225"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075951Z:5a3e4c3e-d777-4044-9a12-0bb89a000f79"
+ "WESTINDIA:20200319T095746Z:a8c440f6-b102-43c9-ad9b-a8a1d5076225"
],
"Date": [
- "Mon, 03 Feb 2020 07:59:50 GMT"
+ "Thu, 19 Mar 2020 09:57:46 GMT"
],
"Expires": [
"-1"
@@ -4278,21 +76564,21 @@
"StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/17581924-2144-4f1c-a99d-57222e5af0dc?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8xNzU4MTkyNC0yMTQ0LTRmMWMtYTk5ZC01NzIyMmU1YWYwZGM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "28800d7c-a282-450d-8ed1-0b550527eb37"
+ "9d8297b1-dca5-4339-8d5d-2ba93a4ee9d7"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -4303,66 +76589,66 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "50dccfeb-3993-4bcc-a088-48df9afdc257"
+ "82ed5c51-5388-4574-aa75-1381d30edd91"
],
"x-ms-client-request-id": [
- "28800d7c-a282-450d-8ed1-0b550527eb37",
- "28800d7c-a282-450d-8ed1-0b550527eb37"
+ "9d8297b1-dca5-4339-8d5d-2ba93a4ee9d7",
+ "9d8297b1-dca5-4339-8d5d-2ba93a4ee9d7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11799"
+ "10945"
],
"x-ms-correlation-request-id": [
- "50dccfeb-3993-4bcc-a088-48df9afdc257"
+ "82ed5c51-5388-4574-aa75-1381d30edd91"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075628Z:50dccfeb-3993-4bcc-a088-48df9afdc257"
+ "WESTINDIA:20200319T095747Z:82ed5c51-5388-4574-aa75-1381d30edd91"
],
"Date": [
- "Mon, 03 Feb 2020 07:56:28 GMT"
- ],
- "Content-Length": [
- "304"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:57:46 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"17581924-2144-4f1c-a99d-57222e5af0dc\",\r\n \"name\": \"17581924-2144-4f1c-a99d-57222e5af0dc\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-02-03T07:56:27.2939438Z\",\r\n \"endTime\": \"2020-02-03T07:56:27.2939438Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"43f281a7-12ab-4d12-92c5-69a60152bfd5\"\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/17581924-2144-4f1c-a99d-57222e5af0dc?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8xNzU4MTkyNC0yMTQ0LTRmMWMtYTk5ZC01NzIyMmU1YWYwZGM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "702031a1-9489-46bb-ae73-67b43e3c73f6"
+ "f66c8131-1f26-4b82-a453-6f17c0b111d2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -4373,66 +76659,66 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "60039bf8-d9eb-438d-ae5f-813e7013e339"
+ "70ac65c8-c4ab-4e54-a02d-a9f1a02bdd58"
],
"x-ms-client-request-id": [
- "702031a1-9489-46bb-ae73-67b43e3c73f6",
- "702031a1-9489-46bb-ae73-67b43e3c73f6"
+ "f66c8131-1f26-4b82-a453-6f17c0b111d2",
+ "f66c8131-1f26-4b82-a453-6f17c0b111d2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11798"
+ "10944"
],
"x-ms-correlation-request-id": [
- "60039bf8-d9eb-438d-ae5f-813e7013e339"
+ "70ac65c8-c4ab-4e54-a02d-a9f1a02bdd58"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075628Z:60039bf8-d9eb-438d-ae5f-813e7013e339"
+ "WESTINDIA:20200319T095747Z:70ac65c8-c4ab-4e54-a02d-a9f1a02bdd58"
],
"Date": [
- "Mon, 03 Feb 2020 07:56:28 GMT"
- ],
- "Content-Length": [
- "304"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:57:46 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"17581924-2144-4f1c-a99d-57222e5af0dc\",\r\n \"name\": \"17581924-2144-4f1c-a99d-57222e5af0dc\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-02-03T07:56:27.2939438Z\",\r\n \"endTime\": \"2020-02-03T07:56:27.2939438Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"43f281a7-12ab-4d12-92c5-69a60152bfd5\"\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/43f281a7-12ab-4d12-92c5-69a60152bfd5?api-version=2019-06-15",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy80M2YyODFhNy0xMmFiLTRkMTItOTJjNS02OWE2MDE1MmJmZDU/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6cfb7ff8-7c15-4ed2-a47d-fae99094231f"
+ "c0d65c6f-7c4e-41ea-90dc-72d44da9fdf8"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -4443,67 +76729,66 @@
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-IIS/10.0",
- "Microsoft-IIS/10.0"
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "07b9820e-afff-4de0-8f2e-7fa3b33b0b96"
+ "e37398f0-d248-4ff0-8fda-e9ca0f17c313"
],
"x-ms-client-request-id": [
- "6cfb7ff8-7c15-4ed2-a47d-fae99094231f",
- "6cfb7ff8-7c15-4ed2-a47d-fae99094231f"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "c0d65c6f-7c4e-41ea-90dc-72d44da9fdf8",
+ "c0d65c6f-7c4e-41ea-90dc-72d44da9fdf8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11797"
+ "10943"
],
"x-ms-correlation-request-id": [
- "07b9820e-afff-4de0-8f2e-7fa3b33b0b96"
+ "e37398f0-d248-4ff0-8fda-e9ca0f17c313"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075629Z:07b9820e-afff-4de0-8f2e-7fa3b33b0b96"
+ "WESTINDIA:20200319T095747Z:e37398f0-d248-4ff0-8fda-e9ca0f17c313"
],
"Date": [
- "Mon, 03 Feb 2020 07:56:29 GMT"
- ],
- "Content-Length": [
- "1103"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:57:46 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/43f281a7-12ab-4d12-92c5-69a60152bfd5\",\r\n \"name\": \"43f281a7-12ab-4d12-92c5-69a60152bfd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT1.913935S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-02-03T07:56:27.2939438Z\",\r\n \"activityId\": \"7cb74a21-6668-4632-8a17-97a55501805d\"\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/43f281a7-12ab-4d12-92c5-69a60152bfd5?api-version=2019-06-15",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy80M2YyODFhNy0xMmFiLTRkMTItOTJjNS02OWE2MDE1MmJmZDU/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "26885f49-56a8-4bad-933b-7eb80770b5eb"
+ "1c68c741-47ea-4645-8e65-cdb05556256d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -4514,67 +76799,66 @@
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-IIS/10.0",
- "Microsoft-IIS/10.0"
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "239b251d-f91a-46a2-abe9-37615dbc2033"
+ "3698749d-06e3-4156-8eff-0f2513ad70d9"
],
"x-ms-client-request-id": [
- "26885f49-56a8-4bad-933b-7eb80770b5eb",
- "26885f49-56a8-4bad-933b-7eb80770b5eb"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "1c68c741-47ea-4645-8e65-cdb05556256d",
+ "1c68c741-47ea-4645-8e65-cdb05556256d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11796"
+ "10942"
],
"x-ms-correlation-request-id": [
- "239b251d-f91a-46a2-abe9-37615dbc2033"
+ "3698749d-06e3-4156-8eff-0f2513ad70d9"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075629Z:239b251d-f91a-46a2-abe9-37615dbc2033"
+ "WESTINDIA:20200319T095747Z:3698749d-06e3-4156-8eff-0f2513ad70d9"
],
"Date": [
- "Mon, 03 Feb 2020 07:56:29 GMT"
- ],
- "Content-Length": [
- "1104"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:57:47 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/43f281a7-12ab-4d12-92c5-69a60152bfd5\",\r\n \"name\": \"43f281a7-12ab-4d12-92c5-69a60152bfd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT2.5402407S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-02-03T07:56:27.2939438Z\",\r\n \"activityId\": \"7cb74a21-6668-4632-8a17-97a55501805d\"\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/43f281a7-12ab-4d12-92c5-69a60152bfd5?api-version=2019-06-15",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy80M2YyODFhNy0xMmFiLTRkMTItOTJjNS02OWE2MDE1MmJmZDU/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3087920a-5a27-4109-8d16-9d36244b0fe2"
+ "17ee5957-ddf0-48cf-b59f-1aa91a31c39d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -4585,67 +76869,66 @@
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-IIS/10.0",
- "Microsoft-IIS/10.0"
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "c61c5003-c7d5-46df-bbd3-a34151a16eb7"
+ "147b2cb3-8cc0-4a76-ba6c-1ebb56693f2f"
],
"x-ms-client-request-id": [
- "3087920a-5a27-4109-8d16-9d36244b0fe2",
- "3087920a-5a27-4109-8d16-9d36244b0fe2"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "17ee5957-ddf0-48cf-b59f-1aa91a31c39d",
+ "17ee5957-ddf0-48cf-b59f-1aa91a31c39d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11795"
+ "10941"
],
"x-ms-correlation-request-id": [
- "c61c5003-c7d5-46df-bbd3-a34151a16eb7"
+ "147b2cb3-8cc0-4a76-ba6c-1ebb56693f2f"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075700Z:c61c5003-c7d5-46df-bbd3-a34151a16eb7"
+ "WESTINDIA:20200319T095748Z:147b2cb3-8cc0-4a76-ba6c-1ebb56693f2f"
],
"Date": [
- "Mon, 03 Feb 2020 07:57:00 GMT"
- ],
- "Content-Length": [
- "1104"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:57:47 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/43f281a7-12ab-4d12-92c5-69a60152bfd5\",\r\n \"name\": \"43f281a7-12ab-4d12-92c5-69a60152bfd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT33.100038S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-02-03T07:56:27.2939438Z\",\r\n \"activityId\": \"7cb74a21-6668-4632-8a17-97a55501805d\"\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/43f281a7-12ab-4d12-92c5-69a60152bfd5?api-version=2019-06-15",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy80M2YyODFhNy0xMmFiLTRkMTItOTJjNS02OWE2MDE1MmJmZDU/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1dbb7087-a8c6-4e85-b3e2-412b403eacd1"
+ "231b287e-23cf-4205-8f78-1f05d12e6031"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -4656,67 +76939,66 @@
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-IIS/10.0",
- "Microsoft-IIS/10.0"
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "83f86b86-4557-4de9-87f0-3756bb13f731"
+ "bf61ca0b-2b16-4215-99e1-b126b65fe454"
],
"x-ms-client-request-id": [
- "1dbb7087-a8c6-4e85-b3e2-412b403eacd1",
- "1dbb7087-a8c6-4e85-b3e2-412b403eacd1"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "231b287e-23cf-4205-8f78-1f05d12e6031",
+ "231b287e-23cf-4205-8f78-1f05d12e6031"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11794"
+ "10940"
],
"x-ms-correlation-request-id": [
- "83f86b86-4557-4de9-87f0-3756bb13f731"
+ "bf61ca0b-2b16-4215-99e1-b126b65fe454"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075733Z:83f86b86-4557-4de9-87f0-3756bb13f731"
+ "WESTINDIA:20200319T095748Z:bf61ca0b-2b16-4215-99e1-b126b65fe454"
],
"Date": [
- "Mon, 03 Feb 2020 07:57:32 GMT"
- ],
- "Content-Length": [
- "1194"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:57:47 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/43f281a7-12ab-4d12-92c5-69a60152bfd5\",\r\n \"name\": \"43f281a7-12ab-4d12-92c5-69a60152bfd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT34.7702993S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"2/3/2020 7:55:51 AM\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"1\",\r\n \"Number Of Restored Files\": \"1\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2020-02-03T07:56:27.2939438Z\",\r\n \"endTime\": \"2020-02-03T07:57:02.0642431Z\",\r\n \"activityId\": \"7cb74a21-6668-4632-8a17-97a55501805d\"\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/3cb02084-4daa-4696-8d28-b4e70d8c8863?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zY2IwMjA4NC00ZGFhLTQ2OTYtOGQyOC1iNGU3MGQ4Yzg4NjM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8e13f584-0d58-4666-ad61-bd7126c3f3aa"
+ "db9281b2-0fb1-4695-bdac-ecf9b1c27673"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -4727,66 +77009,66 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "b819a26a-d557-4062-9d90-ab012f9af722"
+ "c357dffd-24ef-41d0-9198-479453a1d359"
],
"x-ms-client-request-id": [
- "8e13f584-0d58-4666-ad61-bd7126c3f3aa",
- "8e13f584-0d58-4666-ad61-bd7126c3f3aa"
+ "db9281b2-0fb1-4695-bdac-ecf9b1c27673",
+ "db9281b2-0fb1-4695-bdac-ecf9b1c27673"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11793"
+ "10939"
],
"x-ms-correlation-request-id": [
- "b819a26a-d557-4062-9d90-ab012f9af722"
+ "c357dffd-24ef-41d0-9198-479453a1d359"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075735Z:b819a26a-d557-4062-9d90-ab012f9af722"
+ "WESTINDIA:20200319T095748Z:c357dffd-24ef-41d0-9198-479453a1d359"
],
"Date": [
- "Mon, 03 Feb 2020 07:57:35 GMT"
- ],
- "Content-Length": [
- "187"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:57:47 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"3cb02084-4daa-4696-8d28-b4e70d8c8863\",\r\n \"name\": \"3cb02084-4daa-4696-8d28-b4e70d8c8863\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-02-03T07:57:34.794381Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/3cb02084-4daa-4696-8d28-b4e70d8c8863?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zY2IwMjA4NC00ZGFhLTQ2OTYtOGQyOC1iNGU3MGQ4Yzg4NjM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "70b66396-7b09-4083-8a95-ac922d6d9ed2"
+ "12b5fdff-2b55-4644-91af-2428883787ee"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -4797,66 +77079,66 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "b43babff-876b-4839-845a-fcc854d3c709"
+ "a5d1e91a-b520-429e-966e-778b95930510"
],
"x-ms-client-request-id": [
- "70b66396-7b09-4083-8a95-ac922d6d9ed2",
- "70b66396-7b09-4083-8a95-ac922d6d9ed2"
+ "12b5fdff-2b55-4644-91af-2428883787ee",
+ "12b5fdff-2b55-4644-91af-2428883787ee"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11792"
+ "10938"
],
"x-ms-correlation-request-id": [
- "b43babff-876b-4839-845a-fcc854d3c709"
+ "a5d1e91a-b520-429e-966e-778b95930510"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075741Z:b43babff-876b-4839-845a-fcc854d3c709"
+ "WESTINDIA:20200319T095748Z:a5d1e91a-b520-429e-966e-778b95930510"
],
"Date": [
- "Mon, 03 Feb 2020 07:57:41 GMT"
- ],
- "Content-Length": [
- "302"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:57:48 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"3cb02084-4daa-4696-8d28-b4e70d8c8863\",\r\n \"name\": \"3cb02084-4daa-4696-8d28-b4e70d8c8863\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-02-03T07:57:34.794381Z\",\r\n \"endTime\": \"2020-02-03T07:57:34.794381Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"b99b5916-bbef-4769-8dea-3b8962598cc2\"\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/3cb02084-4daa-4696-8d28-b4e70d8c8863?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8zY2IwMjA4NC00ZGFhLTQ2OTYtOGQyOC1iNGU3MGQ4Yzg4NjM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bfb68041-3d01-431f-a6e8-30bb56bd1475"
+ "6966f4ab-33ec-4782-8a72-b6767c9cdabf"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -4867,66 +77149,66 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "87a07a6b-9080-4032-8a3d-209ccda1cf15"
+ "9aca205a-7f22-46ab-8535-862928fa41eb"
],
"x-ms-client-request-id": [
- "bfb68041-3d01-431f-a6e8-30bb56bd1475",
- "bfb68041-3d01-431f-a6e8-30bb56bd1475"
+ "6966f4ab-33ec-4782-8a72-b6767c9cdabf",
+ "6966f4ab-33ec-4782-8a72-b6767c9cdabf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11791"
+ "10937"
],
"x-ms-correlation-request-id": [
- "87a07a6b-9080-4032-8a3d-209ccda1cf15"
+ "9aca205a-7f22-46ab-8535-862928fa41eb"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075741Z:87a07a6b-9080-4032-8a3d-209ccda1cf15"
+ "WESTINDIA:20200319T095749Z:9aca205a-7f22-46ab-8535-862928fa41eb"
],
"Date": [
- "Mon, 03 Feb 2020 07:57:41 GMT"
- ],
- "Content-Length": [
- "302"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:57:48 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"3cb02084-4daa-4696-8d28-b4e70d8c8863\",\r\n \"name\": \"3cb02084-4daa-4696-8d28-b4e70d8c8863\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-02-03T07:57:34.794381Z\",\r\n \"endTime\": \"2020-02-03T07:57:34.794381Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"b99b5916-bbef-4769-8dea-3b8962598cc2\"\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/b99b5916-bbef-4769-8dea-3b8962598cc2?api-version=2019-06-15",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9iOTliNTkxNi1iYmVmLTQ3NjktOGRlYS0zYjg5NjI1OThjYzI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b3d7eda8-d09f-4584-9690-6c80cc9b66f9"
+ "4673a756-3914-479b-a430-ad7b230e1260"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -4937,67 +77219,66 @@
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-IIS/10.0",
- "Microsoft-IIS/10.0"
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "91f9218f-d16f-4dca-9b7b-fc9199088ef9"
+ "355d6bb3-2fdc-416b-a5ba-7a6405893dd9"
],
"x-ms-client-request-id": [
- "b3d7eda8-d09f-4584-9690-6c80cc9b66f9",
- "b3d7eda8-d09f-4584-9690-6c80cc9b66f9"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "4673a756-3914-479b-a430-ad7b230e1260",
+ "4673a756-3914-479b-a430-ad7b230e1260"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11790"
+ "10936"
],
"x-ms-correlation-request-id": [
- "91f9218f-d16f-4dca-9b7b-fc9199088ef9"
+ "355d6bb3-2fdc-416b-a5ba-7a6405893dd9"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075742Z:91f9218f-d16f-4dca-9b7b-fc9199088ef9"
+ "WESTINDIA:20200319T095749Z:355d6bb3-2fdc-416b-a5ba-7a6405893dd9"
],
"Date": [
- "Mon, 03 Feb 2020 07:57:42 GMT"
- ],
- "Content-Length": [
- "1103"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:57:48 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/b99b5916-bbef-4769-8dea-3b8962598cc2\",\r\n \"name\": \"b99b5916-bbef-4769-8dea-3b8962598cc2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT7.3712439S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-02-03T07:57:34.794381Z\",\r\n \"activityId\": \"ac892f02-88de-4b91-9608-f7ddd6f4c5d1\"\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/b99b5916-bbef-4769-8dea-3b8962598cc2?api-version=2019-06-15",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9iOTliNTkxNi1iYmVmLTQ3NjktOGRlYS0zYjg5NjI1OThjYzI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cd9a2971-80f1-41e2-b1ae-207a7f2b74d8"
+ "0d00f4ce-fcf1-44ed-b848-ba94c1d95c46"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -5008,67 +77289,66 @@
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-IIS/10.0",
- "Microsoft-IIS/10.0"
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "5ad20ea0-3606-43a7-8bf6-4e03a449e720"
+ "0ca39bb2-955e-41a0-a805-4ea13feacbd1"
],
"x-ms-client-request-id": [
- "cd9a2971-80f1-41e2-b1ae-207a7f2b74d8",
- "cd9a2971-80f1-41e2-b1ae-207a7f2b74d8"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "0d00f4ce-fcf1-44ed-b848-ba94c1d95c46",
+ "0d00f4ce-fcf1-44ed-b848-ba94c1d95c46"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11789"
+ "10935"
],
"x-ms-correlation-request-id": [
- "5ad20ea0-3606-43a7-8bf6-4e03a449e720"
+ "0ca39bb2-955e-41a0-a805-4ea13feacbd1"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075742Z:5ad20ea0-3606-43a7-8bf6-4e03a449e720"
+ "WESTINDIA:20200319T095750Z:0ca39bb2-955e-41a0-a805-4ea13feacbd1"
],
"Date": [
- "Mon, 03 Feb 2020 07:57:42 GMT"
- ],
- "Content-Length": [
- "1103"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:57:49 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/b99b5916-bbef-4769-8dea-3b8962598cc2\",\r\n \"name\": \"b99b5916-bbef-4769-8dea-3b8962598cc2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT7.9366935S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-02-03T07:57:34.794381Z\",\r\n \"activityId\": \"ac892f02-88de-4b91-9608-f7ddd6f4c5d1\"\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/b99b5916-bbef-4769-8dea-3b8962598cc2?api-version=2019-06-15",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9iOTliNTkxNi1iYmVmLTQ3NjktOGRlYS0zYjg5NjI1OThjYzI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4e12a32b-ef7a-46af-bb55-3a12085ee2c1"
+ "84b184a7-cd21-470f-963b-d5ba878abe05"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -5079,67 +77359,66 @@
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-IIS/10.0",
- "Microsoft-IIS/10.0"
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "72eaa3bb-7315-4177-9c95-527ee7b61d9c"
+ "71f8e843-9185-41b6-8547-7bb7b9b39e30"
],
"x-ms-client-request-id": [
- "4e12a32b-ef7a-46af-bb55-3a12085ee2c1",
- "4e12a32b-ef7a-46af-bb55-3a12085ee2c1"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "84b184a7-cd21-470f-963b-d5ba878abe05",
+ "84b184a7-cd21-470f-963b-d5ba878abe05"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11788"
+ "10934"
],
"x-ms-correlation-request-id": [
- "72eaa3bb-7315-4177-9c95-527ee7b61d9c"
+ "71f8e843-9185-41b6-8547-7bb7b9b39e30"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075813Z:72eaa3bb-7315-4177-9c95-527ee7b61d9c"
+ "WESTINDIA:20200319T095750Z:71f8e843-9185-41b6-8547-7bb7b9b39e30"
],
"Date": [
- "Mon, 03 Feb 2020 07:58:12 GMT"
- ],
- "Content-Length": [
- "1103"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:57:49 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/b99b5916-bbef-4769-8dea-3b8962598cc2\",\r\n \"name\": \"b99b5916-bbef-4769-8dea-3b8962598cc2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT38.500525S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-02-03T07:57:34.794381Z\",\r\n \"activityId\": \"ac892f02-88de-4b91-9608-f7ddd6f4c5d1\"\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/b99b5916-bbef-4769-8dea-3b8962598cc2?api-version=2019-06-15",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9iOTliNTkxNi1iYmVmLTQ3NjktOGRlYS0zYjg5NjI1OThjYzI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "01310af3-1bac-4170-b191-5768fe89a9a6"
+ "1d606167-f929-4eb8-a838-77c20a03fb4c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -5150,67 +77429,66 @@
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-IIS/10.0",
- "Microsoft-IIS/10.0"
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "a3939ab6-c1bd-428b-b9d9-2373b6ea50f7"
+ "bed0e037-7540-45f4-b1a6-a41f3306fefb"
],
"x-ms-client-request-id": [
- "01310af3-1bac-4170-b191-5768fe89a9a6",
- "01310af3-1bac-4170-b191-5768fe89a9a6"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "1d606167-f929-4eb8-a838-77c20a03fb4c",
+ "1d606167-f929-4eb8-a838-77c20a03fb4c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11787"
+ "10933"
],
"x-ms-correlation-request-id": [
- "a3939ab6-c1bd-428b-b9d9-2373b6ea50f7"
+ "bed0e037-7540-45f4-b1a6-a41f3306fefb"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075844Z:a3939ab6-c1bd-428b-b9d9-2373b6ea50f7"
+ "WESTINDIA:20200319T095750Z:bed0e037-7540-45f4-b1a6-a41f3306fefb"
],
"Date": [
- "Mon, 03 Feb 2020 07:58:44 GMT"
- ],
- "Content-Length": [
- "1193"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:57:49 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/b99b5916-bbef-4769-8dea-3b8962598cc2\",\r\n \"name\": \"b99b5916-bbef-4769-8dea-3b8962598cc2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT43.8961162S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"2/3/2020 7:55:51 AM\",\r\n \"Target File Share Name\": \"fs1\",\r\n \"Target Storage Account Name\": \"pstesttargetsa8896\",\r\n \"Job Type\": \"Recover to an alternate file share\",\r\n \"RestoreDestination\": \"pstesttargetsa8896/fs1/pstestfolder3rty7d7s\",\r\n \"Data Transferred (in MB)\": \"1\",\r\n \"Number Of Restored Files\": \"1\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2020-02-03T07:57:34.794381Z\",\r\n \"endTime\": \"2020-02-03T07:58:18.6904972Z\",\r\n \"activityId\": \"ac892f02-88de-4b91-9608-f7ddd6f4c5d1\"\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2af83b94-41f6-42fc-bab6-84e796eba0d6?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYWY4M2I5NC00MWY2LTQyZmMtYmFiNi04NGU3OTZlYmEwZDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "51dc0ee3-bbfe-4491-be5c-9762655c7837"
+ "c938f487-17e6-4952-b4e2-a4ddf519aa51"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -5221,66 +77499,66 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "badecad3-1176-4d25-ade8-cae540ed7bdc"
+ "679e1470-244d-4824-9a92-0eef4a816176"
],
"x-ms-client-request-id": [
- "51dc0ee3-bbfe-4491-be5c-9762655c7837",
- "51dc0ee3-bbfe-4491-be5c-9762655c7837"
+ "c938f487-17e6-4952-b4e2-a4ddf519aa51",
+ "c938f487-17e6-4952-b4e2-a4ddf519aa51"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11786"
+ "10932"
],
"x-ms-correlation-request-id": [
- "badecad3-1176-4d25-ade8-cae540ed7bdc"
+ "679e1470-244d-4824-9a92-0eef4a816176"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075846Z:badecad3-1176-4d25-ade8-cae540ed7bdc"
+ "WESTINDIA:20200319T095750Z:679e1470-244d-4824-9a92-0eef4a816176"
],
"Date": [
- "Mon, 03 Feb 2020 07:58:46 GMT"
- ],
- "Content-Length": [
- "304"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:57:49 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"2af83b94-41f6-42fc-bab6-84e796eba0d6\",\r\n \"name\": \"2af83b94-41f6-42fc-bab6-84e796eba0d6\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-02-03T07:58:46.1818034Z\",\r\n \"endTime\": \"2020-02-03T07:58:46.1818034Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"01604ec5-5095-4129-90cb-44f1a5767842\"\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/2af83b94-41f6-42fc-bab6-84e796eba0d6?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy8yYWY4M2I5NC00MWY2LTQyZmMtYmFiNi04NGU3OTZlYmEwZDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "47598d32-58a6-415a-a3cc-7564ccc3401d"
+ "9bab0118-8235-42c5-8cdd-f15f52e9efb0"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -5291,66 +77569,66 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "03f04225-d115-408c-8e08-d7279aff920d"
+ "71ef68ec-802b-4d45-b1cd-968924a1d81c"
],
"x-ms-client-request-id": [
- "47598d32-58a6-415a-a3cc-7564ccc3401d",
- "47598d32-58a6-415a-a3cc-7564ccc3401d"
+ "9bab0118-8235-42c5-8cdd-f15f52e9efb0",
+ "9bab0118-8235-42c5-8cdd-f15f52e9efb0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11785"
+ "10931"
],
"x-ms-correlation-request-id": [
- "03f04225-d115-408c-8e08-d7279aff920d"
+ "71ef68ec-802b-4d45-b1cd-968924a1d81c"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075847Z:03f04225-d115-408c-8e08-d7279aff920d"
+ "WESTINDIA:20200319T095750Z:71ef68ec-802b-4d45-b1cd-968924a1d81c"
],
"Date": [
- "Mon, 03 Feb 2020 07:58:47 GMT"
- ],
- "Content-Length": [
- "304"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:57:50 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"2af83b94-41f6-42fc-bab6-84e796eba0d6\",\r\n \"name\": \"2af83b94-41f6-42fc-bab6-84e796eba0d6\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-02-03T07:58:46.1818034Z\",\r\n \"endTime\": \"2020-02-03T07:58:46.1818034Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"01604ec5-5095-4129-90cb-44f1a5767842\"\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/01604ec5-5095-4129-90cb-44f1a5767842?api-version=2019-06-15",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8wMTYwNGVjNS01MDk1LTQxMjktOTBjYi00NGYxYTU3Njc4NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d4a9a4b1-df4a-4751-822c-8f6239f95d96"
+ "99064080-c6ab-48ba-9dfa-4b76a17ab961"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -5361,67 +77639,66 @@
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-IIS/10.0",
- "Microsoft-IIS/10.0"
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "6ee7939b-3630-473c-b86a-a39a0814b7a9"
+ "a7c167ce-973e-4a34-80a5-1aa5f3d5d1b4"
],
"x-ms-client-request-id": [
- "d4a9a4b1-df4a-4751-822c-8f6239f95d96",
- "d4a9a4b1-df4a-4751-822c-8f6239f95d96"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "99064080-c6ab-48ba-9dfa-4b76a17ab961",
+ "99064080-c6ab-48ba-9dfa-4b76a17ab961"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11784"
+ "10930"
],
"x-ms-correlation-request-id": [
- "6ee7939b-3630-473c-b86a-a39a0814b7a9"
+ "a7c167ce-973e-4a34-80a5-1aa5f3d5d1b4"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075848Z:6ee7939b-3630-473c-b86a-a39a0814b7a9"
+ "WESTINDIA:20200319T095751Z:a7c167ce-973e-4a34-80a5-1aa5f3d5d1b4"
],
"Date": [
- "Mon, 03 Feb 2020 07:58:47 GMT"
- ],
- "Content-Length": [
- "999"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:57:50 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/01604ec5-5095-4129-90cb-44f1a5767842\",\r\n \"name\": \"01604ec5-5095-4129-90cb-44f1a5767842\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT1.7924613S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-02-03T07:58:46.1818034Z\",\r\n \"activityId\": \"921cfb70-842a-4175-b9ab-5d166c003592\"\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/01604ec5-5095-4129-90cb-44f1a5767842?api-version=2019-06-15",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8wMTYwNGVjNS01MDk1LTQxMjktOTBjYi00NGYxYTU3Njc4NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "78853b0d-7289-4d0e-8f7c-e75393c480a9"
+ "34a3542b-e12c-4503-b980-76c5fa5ecfa0"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -5432,67 +77709,66 @@
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-IIS/10.0",
- "Microsoft-IIS/10.0"
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "87816f10-887e-43f5-87e8-2017ec4b1f85"
+ "dd0d3e8f-becb-44ff-a9da-3e4893b43afb"
],
"x-ms-client-request-id": [
- "78853b0d-7289-4d0e-8f7c-e75393c480a9",
- "78853b0d-7289-4d0e-8f7c-e75393c480a9"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "34a3542b-e12c-4503-b980-76c5fa5ecfa0",
+ "34a3542b-e12c-4503-b980-76c5fa5ecfa0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11783"
+ "10929"
],
"x-ms-correlation-request-id": [
- "87816f10-887e-43f5-87e8-2017ec4b1f85"
+ "dd0d3e8f-becb-44ff-a9da-3e4893b43afb"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075848Z:87816f10-887e-43f5-87e8-2017ec4b1f85"
+ "WESTINDIA:20200319T095751Z:dd0d3e8f-becb-44ff-a9da-3e4893b43afb"
],
"Date": [
- "Mon, 03 Feb 2020 07:58:48 GMT"
- ],
- "Content-Length": [
- "999"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:57:50 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/01604ec5-5095-4129-90cb-44f1a5767842\",\r\n \"name\": \"01604ec5-5095-4129-90cb-44f1a5767842\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT2.3706083S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-02-03T07:58:46.1818034Z\",\r\n \"activityId\": \"921cfb70-842a-4175-b9ab-5d166c003592\"\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/01604ec5-5095-4129-90cb-44f1a5767842?api-version=2019-06-15",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8wMTYwNGVjNS01MDk1LTQxMjktOTBjYi00NGYxYTU3Njc4NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8a9eb79d-155e-405d-850c-e55a2c194f7b"
+ "e5cb36bb-679e-4a1c-a6b8-6ad32dc79f57"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -5503,67 +77779,66 @@
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-IIS/10.0",
- "Microsoft-IIS/10.0"
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "4b9fc7c0-f50b-4358-a746-829b783944fe"
+ "8b4d5b36-c292-4e50-8eea-64be78c9d894"
],
"x-ms-client-request-id": [
- "8a9eb79d-155e-405d-850c-e55a2c194f7b",
- "8a9eb79d-155e-405d-850c-e55a2c194f7b"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "e5cb36bb-679e-4a1c-a6b8-6ad32dc79f57",
+ "e5cb36bb-679e-4a1c-a6b8-6ad32dc79f57"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11782"
+ "10928"
],
"x-ms-correlation-request-id": [
- "4b9fc7c0-f50b-4358-a746-829b783944fe"
+ "8b4d5b36-c292-4e50-8eea-64be78c9d894"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075919Z:4b9fc7c0-f50b-4358-a746-829b783944fe"
+ "WESTINDIA:20200319T095751Z:8b4d5b36-c292-4e50-8eea-64be78c9d894"
],
"Date": [
- "Mon, 03 Feb 2020 07:59:19 GMT"
- ],
- "Content-Length": [
- "1000"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:57:50 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/01604ec5-5095-4129-90cb-44f1a5767842\",\r\n \"name\": \"01604ec5-5095-4129-90cb-44f1a5767842\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT32.9682284S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-02-03T07:58:46.1818034Z\",\r\n \"activityId\": \"921cfb70-842a-4175-b9ab-5d166c003592\"\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/01604ec5-5095-4129-90cb-44f1a5767842?api-version=2019-06-15",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy8wMTYwNGVjNS01MDk1LTQxMjktOTBjYi00NGYxYTU3Njc4NDI/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f0cb0088-353c-412f-9ff9-9469070aeef3"
+ "22df6562-4b7f-4b06-9a10-c1c49e9da95c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -5574,67 +77849,66 @@
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-IIS/10.0",
- "Microsoft-IIS/10.0"
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "66caae21-cffd-4f3d-92b9-0aec0efa205c"
+ "55e09cec-020f-4936-bf80-7d49841c533d"
],
"x-ms-client-request-id": [
- "f0cb0088-353c-412f-9ff9-9469070aeef3",
- "f0cb0088-353c-412f-9ff9-9469070aeef3"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "22df6562-4b7f-4b06-9a10-c1c49e9da95c",
+ "22df6562-4b7f-4b06-9a10-c1c49e9da95c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11781"
+ "10927"
],
"x-ms-correlation-request-id": [
- "66caae21-cffd-4f3d-92b9-0aec0efa205c"
+ "55e09cec-020f-4936-bf80-7d49841c533d"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075949Z:66caae21-cffd-4f3d-92b9-0aec0efa205c"
+ "WESTINDIA:20200319T095751Z:55e09cec-020f-4936-bf80-7d49841c533d"
],
"Date": [
- "Mon, 03 Feb 2020 07:59:49 GMT"
- ],
- "Content-Length": [
- "1089"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:57:51 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/01604ec5-5095-4129-90cb-44f1a5767842\",\r\n \"name\": \"01604ec5-5095-4129-90cb-44f1a5767842\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT33.0550223S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"2/3/2020 7:55:51 AM\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"1\",\r\n \"Number Of Restored Files\": \"1\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2020-02-03T07:58:46.1818034Z\",\r\n \"endTime\": \"2020-02-03T07:59:19.2368257Z\",\r\n \"activityId\": \"921cfb70-842a-4175-b9ab-5d166c003592\"\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/648ba999-44a4-4ff3-a0d1-7f5c1c6536f0?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy82NDhiYTk5OS00NGE0LTRmZjMtYTBkMS03ZjVjMWM2NTM2ZjA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f8417d77-d1e4-4185-a7af-77051b79a2cd"
+ "cecf8dc0-8942-4299-9e30-0f0d8375be38"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -5645,66 +77919,66 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "e88ab9af-0991-4f2e-91b6-364b858d966a"
+ "99ea6f8f-a1da-45bc-8c1b-34f78206f474"
],
"x-ms-client-request-id": [
- "f8417d77-d1e4-4185-a7af-77051b79a2cd",
- "f8417d77-d1e4-4185-a7af-77051b79a2cd"
+ "cecf8dc0-8942-4299-9e30-0f0d8375be38",
+ "cecf8dc0-8942-4299-9e30-0f0d8375be38"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11780"
+ "10926"
],
"x-ms-correlation-request-id": [
- "e88ab9af-0991-4f2e-91b6-364b858d966a"
+ "99ea6f8f-a1da-45bc-8c1b-34f78206f474"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075951Z:e88ab9af-0991-4f2e-91b6-364b858d966a"
+ "WESTINDIA:20200319T095752Z:99ea6f8f-a1da-45bc-8c1b-34f78206f474"
],
"Date": [
- "Mon, 03 Feb 2020 07:59:51 GMT"
- ],
- "Content-Length": [
- "304"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:57:51 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"648ba999-44a4-4ff3-a0d1-7f5c1c6536f0\",\r\n \"name\": \"648ba999-44a4-4ff3-a0d1-7f5c1c6536f0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-02-03T07:59:51.0131061Z\",\r\n \"endTime\": \"2020-02-03T07:59:51.0131061Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"ebef760f-511d-4f5f-9986-4effeac6ccad\"\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/648ba999-44a4-4ff3-a0d1-7f5c1c6536f0?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy82NDhiYTk5OS00NGE0LTRmZjMtYTBkMS03ZjVjMWM2NTM2ZjA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8966b0ee-95dc-49b3-994f-9196e83f5920"
+ "2857894a-1bbe-4421-a484-b28ab7f6fe28"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -5715,66 +77989,66 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "6888af0a-db93-4b60-a6fa-9e7de5720730"
+ "a9e67eb3-654e-4fc1-b98a-3af7b4a35033"
],
"x-ms-client-request-id": [
- "8966b0ee-95dc-49b3-994f-9196e83f5920",
- "8966b0ee-95dc-49b3-994f-9196e83f5920"
+ "2857894a-1bbe-4421-a484-b28ab7f6fe28",
+ "2857894a-1bbe-4421-a484-b28ab7f6fe28"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11779"
+ "10925"
],
"x-ms-correlation-request-id": [
- "6888af0a-db93-4b60-a6fa-9e7de5720730"
+ "a9e67eb3-654e-4fc1-b98a-3af7b4a35033"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075952Z:6888af0a-db93-4b60-a6fa-9e7de5720730"
+ "WESTINDIA:20200319T095752Z:a9e67eb3-654e-4fc1-b98a-3af7b4a35033"
],
"Date": [
- "Mon, 03 Feb 2020 07:59:51 GMT"
- ],
- "Content-Length": [
- "304"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:57:51 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"648ba999-44a4-4ff3-a0d1-7f5c1c6536f0\",\r\n \"name\": \"648ba999-44a4-4ff3-a0d1-7f5c1c6536f0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-02-03T07:59:51.0131061Z\",\r\n \"endTime\": \"2020-02-03T07:59:51.0131061Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"ebef760f-511d-4f5f-9986-4effeac6ccad\"\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/ebef760f-511d-4f5f-9986-4effeac6ccad?api-version=2019-06-15",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lYmVmNzYwZi01MTFkLTRmNWYtOTk4Ni00ZWZmZWFjNmNjYWQ/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "53c1b9b9-5421-4500-aadc-8a6c0dd0f0f5"
+ "e501915b-1520-4286-abba-7d39b91fc438"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -5785,67 +78059,66 @@
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-IIS/10.0",
- "Microsoft-IIS/10.0"
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "60b01e1d-268b-4b4c-8f8e-358719e65ba6"
+ "73ecf17e-f7e8-405b-9755-af30f1e6d0e9"
],
"x-ms-client-request-id": [
- "53c1b9b9-5421-4500-aadc-8a6c0dd0f0f5",
- "53c1b9b9-5421-4500-aadc-8a6c0dd0f0f5"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "e501915b-1520-4286-abba-7d39b91fc438",
+ "e501915b-1520-4286-abba-7d39b91fc438"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11778"
+ "10924"
],
"x-ms-correlation-request-id": [
- "60b01e1d-268b-4b4c-8f8e-358719e65ba6"
+ "73ecf17e-f7e8-405b-9755-af30f1e6d0e9"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075953Z:60b01e1d-268b-4b4c-8f8e-358719e65ba6"
+ "WESTINDIA:20200319T095752Z:73ecf17e-f7e8-405b-9755-af30f1e6d0e9"
],
"Date": [
- "Mon, 03 Feb 2020 07:59:53 GMT"
- ],
- "Content-Length": [
- "704"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:57:52 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/ebef760f-511d-4f5f-9986-4effeac6ccad\",\r\n \"name\": \"ebef760f-511d-4f5f-9986-4effeac6ccad\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT2.0172787S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {}\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-02-03T07:59:51.0131061Z\",\r\n \"activityId\": \"0bda6dc9-11b7-4f93-bdaf-e99a7feb0d57\"\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/ebef760f-511d-4f5f-9986-4effeac6ccad?api-version=2019-06-15",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lYmVmNzYwZi01MTFkLTRmNWYtOTk4Ni00ZWZmZWFjNmNjYWQ/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5c4ad6db-6de0-4def-9926-60edaa2b9ef1"
+ "e62ed2c9-0968-447e-86bd-6c7b2f7e6908"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -5856,67 +78129,66 @@
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-IIS/10.0",
- "Microsoft-IIS/10.0"
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "a87de7ef-b46f-47b9-8aae-50ddd8b29246"
+ "4cb14367-f7d2-446f-b14e-40e7f726a2cf"
],
"x-ms-client-request-id": [
- "5c4ad6db-6de0-4def-9926-60edaa2b9ef1",
- "5c4ad6db-6de0-4def-9926-60edaa2b9ef1"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "e62ed2c9-0968-447e-86bd-6c7b2f7e6908",
+ "e62ed2c9-0968-447e-86bd-6c7b2f7e6908"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11777"
+ "10923"
],
"x-ms-correlation-request-id": [
- "a87de7ef-b46f-47b9-8aae-50ddd8b29246"
+ "4cb14367-f7d2-446f-b14e-40e7f726a2cf"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T075953Z:a87de7ef-b46f-47b9-8aae-50ddd8b29246"
+ "WESTINDIA:20200319T095753Z:4cb14367-f7d2-446f-b14e-40e7f726a2cf"
],
"Date": [
- "Mon, 03 Feb 2020 07:59:53 GMT"
- ],
- "Content-Length": [
- "999"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:57:52 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/ebef760f-511d-4f5f-9986-4effeac6ccad\",\r\n \"name\": \"ebef760f-511d-4f5f-9986-4effeac6ccad\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT2.5675808S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-02-03T07:59:51.0131061Z\",\r\n \"activityId\": \"0bda6dc9-11b7-4f93-bdaf-e99a7feb0d57\"\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/ebef760f-511d-4f5f-9986-4effeac6ccad?api-version=2019-06-15",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lYmVmNzYwZi01MTFkLTRmNWYtOTk4Ni00ZWZmZWFjNmNjYWQ/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a3173f74-dd7c-4f78-8d69-fc4ec5efec9b"
+ "02848f37-baae-4d11-b638-96e39c42eabe"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -5927,138 +78199,66 @@
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-IIS/10.0",
- "Microsoft-IIS/10.0"
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "cf2f0c72-d481-4ca6-b249-05be31006b29"
+ "bce8fa90-994d-4244-9088-c94b8e234016"
],
"x-ms-client-request-id": [
- "a3173f74-dd7c-4f78-8d69-fc4ec5efec9b",
- "a3173f74-dd7c-4f78-8d69-fc4ec5efec9b"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "02848f37-baae-4d11-b638-96e39c42eabe",
+ "02848f37-baae-4d11-b638-96e39c42eabe"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11776"
+ "10922"
],
"x-ms-correlation-request-id": [
- "cf2f0c72-d481-4ca6-b249-05be31006b29"
+ "bce8fa90-994d-4244-9088-c94b8e234016"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T080024Z:cf2f0c72-d481-4ca6-b249-05be31006b29"
+ "WESTINDIA:20200319T095753Z:bce8fa90-994d-4244-9088-c94b8e234016"
],
"Date": [
- "Mon, 03 Feb 2020 08:00:23 GMT"
- ],
- "Content-Length": [
- "1000"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:57:52 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/ebef760f-511d-4f5f-9986-4effeac6ccad\",\r\n \"name\": \"ebef760f-511d-4f5f-9986-4effeac6ccad\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT33.1774256S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"0\",\r\n \"Number Of Restored Files\": \"0\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-02-03T07:59:51.0131061Z\",\r\n \"activityId\": \"0bda6dc9-11b7-4f93-bdaf-e99a7feb0d57\"\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/ebef760f-511d-4f5f-9986-4effeac6ccad?api-version=2019-06-15",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy9lYmVmNzYwZi01MTFkLTRmNWYtOTk4Ni00ZWZmZWFjNmNjYWQ/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2653cdfc-0b01-41f8-ae20-f7381473c329"
+ "f3262afd-3b22-4678-9723-d38b8ecb1ada"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-IIS/10.0",
- "Microsoft-IIS/10.0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "x-ms-request-id": [
- "169447f3-e57c-4a90-8f83-1d31b3420314"
- ],
- "x-ms-client-request-id": [
- "2653cdfc-0b01-41f8-ae20-f7381473c329",
- "2653cdfc-0b01-41f8-ae20-f7381473c329"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11775"
- ],
- "x-ms-correlation-request-id": [
- "169447f3-e57c-4a90-8f83-1d31b3420314"
- ],
- "x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T080055Z:169447f3-e57c-4a90-8f83-1d31b3420314"
- ],
- "Date": [
- "Mon, 03 Feb 2020 08:00:55 GMT"
- ],
- "Content-Length": [
- "1089"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/ebef760f-511d-4f5f-9986-4effeac6ccad\",\r\n \"name\": \"ebef760f-511d-4f5f-9986-4effeac6ccad\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT33.3860447S\",\r\n \"actionsInfo\": [\r\n 1\r\n ],\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"ClassicCompute\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"Source File Share Name\": \"fs1\",\r\n \"Source Storage Account Name\": \"pstestsa8895\",\r\n \"RestoreRecoveryPointTime\": \"2/3/2020 7:55:51 AM\",\r\n \"Job Type\": \"Recovering to the original file share\",\r\n \"RestoreDestination\": \"pstestsa8895/fs1/\",\r\n \"Data Transferred (in MB)\": \"1\",\r\n \"Number Of Restored Files\": \"1\",\r\n \"Number Of Skipped Files\": \"0\",\r\n \"Number Of Failed Files\": \"0\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"Restore\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2020-02-03T07:59:51.0131061Z\",\r\n \"endTime\": \"2020-02-03T08:00:24.3991508Z\",\r\n \"activityId\": \"0bda6dc9-11b7-4f93-bdaf-e99a7feb0d57\"\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bpstestrg8895%3Bpstestsa8895/protectedItems/AzureFileShare%3Bfs1?api-version=2019-06-15",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCc3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NS9wcm90ZWN0ZWRJdGVtcy9BenVyZUZpbGVTaGFyZSUzQmZzMT9hcGktdmVyc2lvbj0yMDE5LTA2LTE1",
- "RequestMethod": "DELETE",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "b4f3c250-24f6-45ad-83fd-d9690219c51d"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -6070,23 +78270,20 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperationResults/f998e5b3-e265-4a40-987a-3e1e7a93fc58?api-version=2019-06-15"
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
],
"Retry-After": [
"60"
],
- "Azure-AsyncOperation": [
- "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/f998e5b3-e265-4a40-987a-3e1e7a93fc58?api-version=2019-06-15"
- ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "1d9ba553-f0ae-467d-bd49-67429ac34d9b"
+ "aca8bc36-0a25-480b-afb6-bfa3029cd919"
],
"x-ms-client-request-id": [
- "b4f3c250-24f6-45ad-83fd-d9690219c51d",
- "b4f3c250-24f6-45ad-83fd-d9690219c51d"
+ "f3262afd-3b22-4678-9723-d38b8ecb1ada",
+ "f3262afd-3b22-4678-9723-d38b8ecb1ada"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6094,17 +78291,17 @@
"X-Powered-By": [
"ASP.NET"
],
- "x-ms-ratelimit-remaining-subscription-deletes": [
- "14993"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10921"
],
"x-ms-correlation-request-id": [
- "1d9ba553-f0ae-467d-bd49-67429ac34d9b"
+ "aca8bc36-0a25-480b-afb6-bfa3029cd919"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T080056Z:1d9ba553-f0ae-467d-bd49-67429ac34d9b"
+ "WESTINDIA:20200319T095753Z:aca8bc36-0a25-480b-afb6-bfa3029cd919"
],
"Date": [
- "Mon, 03 Feb 2020 08:00:56 GMT"
+ "Thu, 19 Mar 2020 09:57:52 GMT"
],
"Expires": [
"-1"
@@ -6117,21 +78314,21 @@
"StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/f998e5b3-e265-4a40-987a-3e1e7a93fc58?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mOTk4ZTViMy1lMjY1LTRhNDAtOTg3YS0zZTFlN2E5M2ZjNTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6a0ea319-ab0f-491e-a4e2-00dc2ad49c1e"
+ "cf15bf02-4edb-4840-b18f-26d062b5f1e9"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -6142,66 +78339,66 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "a8eb5b20-5dbf-48a8-aaba-c0f4c451f17a"
+ "120f585f-fb5f-4cd2-aa9c-b43e44405dc5"
],
"x-ms-client-request-id": [
- "6a0ea319-ab0f-491e-a4e2-00dc2ad49c1e",
- "6a0ea319-ab0f-491e-a4e2-00dc2ad49c1e"
+ "cf15bf02-4edb-4840-b18f-26d062b5f1e9",
+ "cf15bf02-4edb-4840-b18f-26d062b5f1e9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11774"
+ "10920"
],
"x-ms-correlation-request-id": [
- "a8eb5b20-5dbf-48a8-aaba-c0f4c451f17a"
+ "120f585f-fb5f-4cd2-aa9c-b43e44405dc5"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T080057Z:a8eb5b20-5dbf-48a8-aaba-c0f4c451f17a"
+ "WESTINDIA:20200319T095753Z:120f585f-fb5f-4cd2-aa9c-b43e44405dc5"
],
"Date": [
- "Mon, 03 Feb 2020 08:00:56 GMT"
- ],
- "Content-Length": [
- "188"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:57:52 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"f998e5b3-e265-4a40-987a-3e1e7a93fc58\",\r\n \"name\": \"f998e5b3-e265-4a40-987a-3e1e7a93fc58\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-02-03T08:00:56.4627816Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/f998e5b3-e265-4a40-987a-3e1e7a93fc58?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mOTk4ZTViMy1lMjY1LTRhNDAtOTg3YS0zZTFlN2E5M2ZjNTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f6ead7c9-eab8-4f71-a566-3173e6d8dfbd"
+ "6f630b60-6ac6-4fe5-820d-d4d797456ecf"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -6212,66 +78409,66 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "00be20c2-d9c6-405d-bda5-697f1b865f8a"
+ "2bea21c5-262b-4471-abce-fc590d871dc9"
],
"x-ms-client-request-id": [
- "f6ead7c9-eab8-4f71-a566-3173e6d8dfbd",
- "f6ead7c9-eab8-4f71-a566-3173e6d8dfbd"
+ "6f630b60-6ac6-4fe5-820d-d4d797456ecf",
+ "6f630b60-6ac6-4fe5-820d-d4d797456ecf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11773"
+ "10919"
],
"x-ms-correlation-request-id": [
- "00be20c2-d9c6-405d-bda5-697f1b865f8a"
+ "2bea21c5-262b-4471-abce-fc590d871dc9"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T080102Z:00be20c2-d9c6-405d-bda5-697f1b865f8a"
+ "WESTINDIA:20200319T095753Z:2bea21c5-262b-4471-abce-fc590d871dc9"
],
"Date": [
- "Mon, 03 Feb 2020 08:01:02 GMT"
- ],
- "Content-Length": [
- "188"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:57:53 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"f998e5b3-e265-4a40-987a-3e1e7a93fc58\",\r\n \"name\": \"f998e5b3-e265-4a40-987a-3e1e7a93fc58\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-02-03T08:00:56.4627816Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/f998e5b3-e265-4a40-987a-3e1e7a93fc58?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mOTk4ZTViMy1lMjY1LTRhNDAtOTg3YS0zZTFlN2E5M2ZjNTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7e118d8b-15ff-4d37-accb-3aa1957e8c55"
+ "0bddbab0-7a32-4bb6-9c47-96d7bacbd0e2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -6282,66 +78479,66 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "1a06b3e9-c61b-4167-a10c-4063c31f847f"
+ "ead0f395-e160-4156-bfd6-d2d2773322db"
],
"x-ms-client-request-id": [
- "7e118d8b-15ff-4d37-accb-3aa1957e8c55",
- "7e118d8b-15ff-4d37-accb-3aa1957e8c55"
+ "0bddbab0-7a32-4bb6-9c47-96d7bacbd0e2",
+ "0bddbab0-7a32-4bb6-9c47-96d7bacbd0e2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11772"
+ "10918"
],
"x-ms-correlation-request-id": [
- "1a06b3e9-c61b-4167-a10c-4063c31f847f"
+ "ead0f395-e160-4156-bfd6-d2d2773322db"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T080108Z:1a06b3e9-c61b-4167-a10c-4063c31f847f"
+ "WESTINDIA:20200319T095754Z:ead0f395-e160-4156-bfd6-d2d2773322db"
],
"Date": [
- "Mon, 03 Feb 2020 08:01:08 GMT"
- ],
- "Content-Length": [
- "188"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:57:53 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"f998e5b3-e265-4a40-987a-3e1e7a93fc58\",\r\n \"name\": \"f998e5b3-e265-4a40-987a-3e1e7a93fc58\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-02-03T08:00:56.4627816Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/f998e5b3-e265-4a40-987a-3e1e7a93fc58?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mOTk4ZTViMy1lMjY1LTRhNDAtOTg3YS0zZTFlN2E5M2ZjNTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "55ada297-6565-457f-a9af-db963c4cb787"
+ "cded7d5f-24c7-4764-ab06-99caa37e80cd"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -6352,66 +78549,66 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "07a99fd8-1882-4c6e-a4ae-883b6c1ddb68"
+ "1dbcca9c-9eea-408b-a944-3db2ef7390df"
],
"x-ms-client-request-id": [
- "55ada297-6565-457f-a9af-db963c4cb787",
- "55ada297-6565-457f-a9af-db963c4cb787"
+ "cded7d5f-24c7-4764-ab06-99caa37e80cd",
+ "cded7d5f-24c7-4764-ab06-99caa37e80cd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11771"
+ "10917"
],
"x-ms-correlation-request-id": [
- "07a99fd8-1882-4c6e-a4ae-883b6c1ddb68"
+ "1dbcca9c-9eea-408b-a944-3db2ef7390df"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T080113Z:07a99fd8-1882-4c6e-a4ae-883b6c1ddb68"
+ "WESTINDIA:20200319T095754Z:1dbcca9c-9eea-408b-a944-3db2ef7390df"
],
"Date": [
- "Mon, 03 Feb 2020 08:01:13 GMT"
- ],
- "Content-Length": [
- "188"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:57:53 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"f998e5b3-e265-4a40-987a-3e1e7a93fc58\",\r\n \"name\": \"f998e5b3-e265-4a40-987a-3e1e7a93fc58\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-02-03T08:00:56.4627816Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/f998e5b3-e265-4a40-987a-3e1e7a93fc58?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mOTk4ZTViMy1lMjY1LTRhNDAtOTg3YS0zZTFlN2E5M2ZjNTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "31fd9bca-8752-479d-97fd-0dd5e6434531"
+ "1132dd60-93a4-469f-b277-e1be24533c78"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -6422,66 +78619,66 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "2e3b25df-76aa-45d1-85a4-4df57056cd0e"
+ "b9b6503b-5f45-42b1-8bf6-11fa771ab3dc"
],
"x-ms-client-request-id": [
- "31fd9bca-8752-479d-97fd-0dd5e6434531",
- "31fd9bca-8752-479d-97fd-0dd5e6434531"
+ "1132dd60-93a4-469f-b277-e1be24533c78",
+ "1132dd60-93a4-469f-b277-e1be24533c78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11770"
+ "10916"
],
"x-ms-correlation-request-id": [
- "2e3b25df-76aa-45d1-85a4-4df57056cd0e"
+ "b9b6503b-5f45-42b1-8bf6-11fa771ab3dc"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T080119Z:2e3b25df-76aa-45d1-85a4-4df57056cd0e"
+ "WESTINDIA:20200319T095754Z:b9b6503b-5f45-42b1-8bf6-11fa771ab3dc"
],
"Date": [
- "Mon, 03 Feb 2020 08:01:19 GMT"
- ],
- "Content-Length": [
- "304"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:57:53 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"f998e5b3-e265-4a40-987a-3e1e7a93fc58\",\r\n \"name\": \"f998e5b3-e265-4a40-987a-3e1e7a93fc58\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-02-03T08:00:56.4627816Z\",\r\n \"endTime\": \"2020-02-03T08:00:56.4627816Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"87c9b8bc-1a69-49b5-9cd0-31919d4988fd\"\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperations/f998e5b3-e265-4a40-987a-3e1e7a93fc58?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwT3BlcmF0aW9ucy9mOTk4ZTViMy1lMjY1LTRhNDAtOTg3YS0zZTFlN2E5M2ZjNTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d0f98adc-8f5c-4b6e-b4d3-5d813b0f1b40"
+ "2f1d51eb-3712-44f1-8733-d545c25f3e94"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -6492,137 +78689,66 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "143c3538-7e7f-43da-ab0c-583ecf460bee"
+ "ecb728bb-b0bb-484a-811e-b07eb8cef529"
],
"x-ms-client-request-id": [
- "d0f98adc-8f5c-4b6e-b4d3-5d813b0f1b40",
- "d0f98adc-8f5c-4b6e-b4d3-5d813b0f1b40"
+ "2f1d51eb-3712-44f1-8733-d545c25f3e94",
+ "2f1d51eb-3712-44f1-8733-d545c25f3e94"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
"X-Powered-By": [
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11769"
+ "10915"
],
"x-ms-correlation-request-id": [
- "143c3538-7e7f-43da-ab0c-583ecf460bee"
+ "ecb728bb-b0bb-484a-811e-b07eb8cef529"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T080120Z:143c3538-7e7f-43da-ab0c-583ecf460bee"
+ "WESTINDIA:20200319T095754Z:ecb728bb-b0bb-484a-811e-b07eb8cef529"
],
"Date": [
- "Mon, 03 Feb 2020 08:01:19 GMT"
- ],
- "Content-Length": [
- "304"
- ],
- "Content-Type": [
- "application/json"
+ "Thu, 19 Mar 2020 09:57:53 GMT"
],
"Expires": [
"-1"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"f998e5b3-e265-4a40-987a-3e1e7a93fc58\",\r\n \"name\": \"f998e5b3-e265-4a40-987a-3e1e7a93fc58\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-02-03T08:00:56.4627816Z\",\r\n \"endTime\": \"2020-02-03T08:00:56.4627816Z\",\r\n \"properties\": {\r\n \"objectType\": \"OperationStatusJobExtendedInfo\",\r\n \"jobId\": \"87c9b8bc-1a69-49b5-9cd0-31919d4988fd\"\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/87c9b8bc-1a69-49b5-9cd0-31919d4988fd?api-version=2019-06-15",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwSm9icy84N2M5YjhiYy0xYTY5LTQ5YjUtOWNkMC0zMTkxOWQ0OTg4ZmQ/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "be1cd06f-f182-440d-a0df-a02bbecf7d61"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.04",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-IIS/10.0",
- "Microsoft-IIS/10.0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "x-ms-request-id": [
- "7361b731-8dd8-4725-98e5-68787dd0ac47"
- ],
- "x-ms-client-request-id": [
- "be1cd06f-f182-440d-a0df-a02bbecf7d61",
- "be1cd06f-f182-440d-a0df-a02bbecf7d61"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11768"
- ],
- "x-ms-correlation-request-id": [
- "7361b731-8dd8-4725-98e5-68787dd0ac47"
- ],
- "x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T080120Z:7361b731-8dd8-4725-98e5-68787dd0ac47"
- ],
- "Date": [
- "Mon, 03 Feb 2020 08:01:20 GMT"
],
"Content-Length": [
- "796"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupJobs/87c9b8bc-1a69-49b5-9cd0-31919d4988fd\",\r\n \"name\": \"87c9b8bc-1a69-49b5-9cd0-31919d4988fd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupJobs\",\r\n \"properties\": {\r\n \"jobType\": \"AzureStorageJob\",\r\n \"duration\": \"PT21.9893364S\",\r\n \"storageAccountName\": \"pstestsa8895\",\r\n \"storageAccountVersion\": \"Storage\",\r\n \"extendedInfo\": {\r\n \"tasksList\": [],\r\n \"propertyBag\": {\r\n \"File Share Name\": \"fs1\",\r\n \"Storage Account Name\": \"pstestsa8895\"\r\n }\r\n },\r\n \"entityFriendlyName\": \"fs1\",\r\n \"backupManagementType\": \"AzureStorage\",\r\n \"operation\": \"DeleteBackupData\",\r\n \"status\": \"Completed\",\r\n \"startTime\": \"2020-02-03T08:00:56.4627816Z\",\r\n \"endTime\": \"2020-02-03T08:01:18.452118Z\",\r\n \"activityId\": \"b4f3c250-24f6-45ad-83fd-d9690219c51d\"\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bpstestrg8895%3Bpstestsa8895?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9wcm90ZWN0aW9uQ29udGFpbmVycy9TdG9yYWdlQ29udGFpbmVyJTNCU3RvcmFnZSUzQnBzdGVzdHJnODg5NSUzQnBzdGVzdHNhODg5NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
- "RequestMethod": "DELETE",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "65f22480-e8a1-42db-9489-d5cde2783606"
+ "e4f563dc-089e-4377-816a-1a521692b42a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -6634,23 +78760,20 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupOperationResults/dbb4f37a-2c96-49a6-b8ad-81f3c9680053?fabricName=Azure?api-version=2016-12-01"
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
],
"Retry-After": [
"60"
],
- "Azure-AsyncOperation": [
- "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationsStatus/dbb4f37a-2c96-49a6-b8ad-81f3c9680053?api-version=2019-05-13-preview"
- ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "1e748c14-f481-4c04-8fda-e7355c82c1cf"
+ "c8743d87-463d-4765-aac3-49df4dd431be"
],
"x-ms-client-request-id": [
- "65f22480-e8a1-42db-9489-d5cde2783606",
- "65f22480-e8a1-42db-9489-d5cde2783606"
+ "e4f563dc-089e-4377-816a-1a521692b42a",
+ "e4f563dc-089e-4377-816a-1a521692b42a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6658,17 +78781,17 @@
"X-Powered-By": [
"ASP.NET"
],
- "x-ms-ratelimit-remaining-subscription-deletes": [
- "14992"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "10914"
],
"x-ms-correlation-request-id": [
- "1e748c14-f481-4c04-8fda-e7355c82c1cf"
+ "c8743d87-463d-4765-aac3-49df4dd431be"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T080121Z:1e748c14-f481-4c04-8fda-e7355c82c1cf"
+ "WESTINDIA:20200319T095755Z:c8743d87-463d-4765-aac3-49df4dd431be"
],
"Date": [
- "Mon, 03 Feb 2020 08:01:20 GMT"
+ "Thu, 19 Mar 2020 09:57:54 GMT"
],
"Expires": [
"-1"
@@ -6681,21 +78804,21 @@
"StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/dbb4f37a-2c96-49a6-b8ad-81f3c9680053?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2RiYjRmMzdhLTJjOTYtNDlhNi1iOGFkLTgxZjNjOTY4MDA1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f6247573-f08d-493e-903c-3a48db5b73a7"
+ "36380b6b-fd8f-48de-be13-7906efae8187"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -6707,7 +78830,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/dbb4f37a-2c96-49a6-b8ad-81f3c9680053?api-version=2016-12-01"
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
],
"Retry-After": [
"60"
@@ -6716,11 +78839,11 @@
"nosniff"
],
"x-ms-request-id": [
- "c03527e8-0012-4a40-b54a-7f978c5b0166"
+ "8274fad4-f451-4b03-be4c-85dc5acf76b6"
],
"x-ms-client-request-id": [
- "f6247573-f08d-493e-903c-3a48db5b73a7",
- "f6247573-f08d-493e-903c-3a48db5b73a7"
+ "36380b6b-fd8f-48de-be13-7906efae8187",
+ "36380b6b-fd8f-48de-be13-7906efae8187"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6729,16 +78852,16 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11767"
+ "10913"
],
"x-ms-correlation-request-id": [
- "c03527e8-0012-4a40-b54a-7f978c5b0166"
+ "8274fad4-f451-4b03-be4c-85dc5acf76b6"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T080121Z:c03527e8-0012-4a40-b54a-7f978c5b0166"
+ "WESTINDIA:20200319T095755Z:8274fad4-f451-4b03-be4c-85dc5acf76b6"
],
"Date": [
- "Mon, 03 Feb 2020 08:01:21 GMT"
+ "Thu, 19 Mar 2020 09:57:54 GMT"
],
"Expires": [
"-1"
@@ -6751,21 +78874,21 @@
"StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/dbb4f37a-2c96-49a6-b8ad-81f3c9680053?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2RiYjRmMzdhLTJjOTYtNDlhNi1iOGFkLTgxZjNjOTY4MDA1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f06c3c62-1fa2-4e97-82e9-035811e9ff8a"
+ "d0fa88bb-a30d-4d89-80dd-dc9f7b469be4"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -6777,7 +78900,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/dbb4f37a-2c96-49a6-b8ad-81f3c9680053?api-version=2016-12-01"
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
],
"Retry-After": [
"60"
@@ -6786,11 +78909,11 @@
"nosniff"
],
"x-ms-request-id": [
- "46672132-5212-409c-897c-d426f48da046"
+ "2ab63cd8-9b7a-4e8a-9322-df59856a13af"
],
"x-ms-client-request-id": [
- "f06c3c62-1fa2-4e97-82e9-035811e9ff8a",
- "f06c3c62-1fa2-4e97-82e9-035811e9ff8a"
+ "d0fa88bb-a30d-4d89-80dd-dc9f7b469be4",
+ "d0fa88bb-a30d-4d89-80dd-dc9f7b469be4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6799,16 +78922,16 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11766"
+ "10912"
],
"x-ms-correlation-request-id": [
- "46672132-5212-409c-897c-d426f48da046"
+ "2ab63cd8-9b7a-4e8a-9322-df59856a13af"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T080127Z:46672132-5212-409c-897c-d426f48da046"
+ "WESTINDIA:20200319T095755Z:2ab63cd8-9b7a-4e8a-9322-df59856a13af"
],
"Date": [
- "Mon, 03 Feb 2020 08:01:26 GMT"
+ "Thu, 19 Mar 2020 09:57:54 GMT"
],
"Expires": [
"-1"
@@ -6821,21 +78944,21 @@
"StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/dbb4f37a-2c96-49a6-b8ad-81f3c9680053?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2RiYjRmMzdhLTJjOTYtNDlhNi1iOGFkLTgxZjNjOTY4MDA1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d3768573-0afe-464c-891c-e14493e5e221"
+ "69a3d96d-c160-4122-9766-b2645b722b26"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -6847,7 +78970,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/dbb4f37a-2c96-49a6-b8ad-81f3c9680053?api-version=2016-12-01"
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
],
"Retry-After": [
"60"
@@ -6856,11 +78979,11 @@
"nosniff"
],
"x-ms-request-id": [
- "4c4f8256-97eb-4931-9ebf-d63caa4e23d9"
+ "d165df0d-b97d-43dd-8999-0f124c8c9230"
],
"x-ms-client-request-id": [
- "d3768573-0afe-464c-891c-e14493e5e221",
- "d3768573-0afe-464c-891c-e14493e5e221"
+ "69a3d96d-c160-4122-9766-b2645b722b26",
+ "69a3d96d-c160-4122-9766-b2645b722b26"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6869,16 +78992,16 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11765"
+ "10911"
],
"x-ms-correlation-request-id": [
- "4c4f8256-97eb-4931-9ebf-d63caa4e23d9"
+ "d165df0d-b97d-43dd-8999-0f124c8c9230"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T080133Z:4c4f8256-97eb-4931-9ebf-d63caa4e23d9"
+ "WESTINDIA:20200319T095755Z:d165df0d-b97d-43dd-8999-0f124c8c9230"
],
"Date": [
- "Mon, 03 Feb 2020 08:01:33 GMT"
+ "Thu, 19 Mar 2020 09:57:54 GMT"
],
"Expires": [
"-1"
@@ -6891,21 +79014,21 @@
"StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/dbb4f37a-2c96-49a6-b8ad-81f3c9680053?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2RiYjRmMzdhLTJjOTYtNDlhNi1iOGFkLTgxZjNjOTY4MDA1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "729a2416-29f1-401c-bf4c-74affeee5d0a"
+ "b7733b76-6288-4526-a0e7-09e6886dfb50"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -6917,7 +79040,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/dbb4f37a-2c96-49a6-b8ad-81f3c9680053?api-version=2016-12-01"
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
],
"Retry-After": [
"60"
@@ -6926,11 +79049,11 @@
"nosniff"
],
"x-ms-request-id": [
- "e9f1a977-420c-4b9d-8bb3-a7f2055f39a0"
+ "24d0f40a-2cf8-40e2-9a93-509c0bf63418"
],
"x-ms-client-request-id": [
- "729a2416-29f1-401c-bf4c-74affeee5d0a",
- "729a2416-29f1-401c-bf4c-74affeee5d0a"
+ "b7733b76-6288-4526-a0e7-09e6886dfb50",
+ "b7733b76-6288-4526-a0e7-09e6886dfb50"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6939,16 +79062,16 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11764"
+ "10910"
],
"x-ms-correlation-request-id": [
- "e9f1a977-420c-4b9d-8bb3-a7f2055f39a0"
+ "24d0f40a-2cf8-40e2-9a93-509c0bf63418"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T080138Z:e9f1a977-420c-4b9d-8bb3-a7f2055f39a0"
+ "WESTINDIA:20200319T095756Z:24d0f40a-2cf8-40e2-9a93-509c0bf63418"
],
"Date": [
- "Mon, 03 Feb 2020 08:01:38 GMT"
+ "Thu, 19 Mar 2020 09:57:55 GMT"
],
"Expires": [
"-1"
@@ -6961,21 +79084,21 @@
"StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/dbb4f37a-2c96-49a6-b8ad-81f3c9680053?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2RiYjRmMzdhLTJjOTYtNDlhNi1iOGFkLTgxZjNjOTY4MDA1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "48ccd70e-5e81-4683-9abf-8ce47600e371"
+ "09ab49f9-c207-4ba5-b68c-023b68551e37"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -6987,7 +79110,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/dbb4f37a-2c96-49a6-b8ad-81f3c9680053?api-version=2016-12-01"
+ "https://management.azure.com/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01"
],
"Retry-After": [
"60"
@@ -6996,11 +79119,11 @@
"nosniff"
],
"x-ms-request-id": [
- "a5814f81-3bf9-430a-85c8-1787ee0e2de2"
+ "c5694c16-1eb3-4134-840a-376dd42cc853"
],
"x-ms-client-request-id": [
- "48ccd70e-5e81-4683-9abf-8ce47600e371",
- "48ccd70e-5e81-4683-9abf-8ce47600e371"
+ "09ab49f9-c207-4ba5-b68c-023b68551e37",
+ "09ab49f9-c207-4ba5-b68c-023b68551e37"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7009,16 +79132,16 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11763"
+ "10909"
],
"x-ms-correlation-request-id": [
- "a5814f81-3bf9-430a-85c8-1787ee0e2de2"
+ "c5694c16-1eb3-4134-840a-376dd42cc853"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T080144Z:a5814f81-3bf9-430a-85c8-1787ee0e2de2"
+ "WESTINDIA:20200319T095756Z:c5694c16-1eb3-4134-840a-376dd42cc853"
],
"Date": [
- "Mon, 03 Feb 2020 08:01:44 GMT"
+ "Thu, 19 Mar 2020 09:57:55 GMT"
],
"Expires": [
"-1"
@@ -7031,21 +79154,21 @@
"StatusCode": 202
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/dbb4f37a-2c96-49a6-b8ad-81f3c9680053?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2RiYjRmMzdhLTJjOTYtNDlhNi1iOGFkLTgxZjNjOTY4MDA1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fdcd5485-8d7b-4852-a30a-129b1b253c2b"
+ "9b34d351-9148-4a8f-8d6d-87450b4779a4"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -7060,11 +79183,11 @@
"nosniff"
],
"x-ms-request-id": [
- "a4f595f2-1071-4f4a-b8ad-a9984e013f69"
+ "b6c42ac3-e0ff-414b-bae6-af619a5bc991"
],
"x-ms-client-request-id": [
- "fdcd5485-8d7b-4852-a30a-129b1b253c2b",
- "fdcd5485-8d7b-4852-a30a-129b1b253c2b"
+ "9b34d351-9148-4a8f-8d6d-87450b4779a4",
+ "9b34d351-9148-4a8f-8d6d-87450b4779a4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7073,16 +79196,16 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11762"
+ "10908"
],
"x-ms-correlation-request-id": [
- "a4f595f2-1071-4f4a-b8ad-a9984e013f69"
+ "b6c42ac3-e0ff-414b-bae6-af619a5bc991"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T080149Z:a4f595f2-1071-4f4a-b8ad-a9984e013f69"
+ "WESTINDIA:20200319T095756Z:b6c42ac3-e0ff-414b-bae6-af619a5bc991"
],
"Date": [
- "Mon, 03 Feb 2020 08:01:49 GMT"
+ "Thu, 19 Mar 2020 09:57:55 GMT"
],
"Expires": [
"-1"
@@ -7092,21 +79215,21 @@
"StatusCode": 204
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/dbb4f37a-2c96-49a6-b8ad-81f3c9680053?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2RiYjRmMzdhLTJjOTYtNDlhNi1iOGFkLTgxZjNjOTY4MDA1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/pstestrg8895/providers/Microsoft.RecoveryServices/vaults/pstestrsv8895/backupFabrics/Azure/operationResults/e00304be-7265-4662-9136-00eb452176ac?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3BzdGVzdHJzdjg4OTUvYmFja3VwRmFicmljcy9BenVyZS9vcGVyYXRpb25SZXN1bHRzL2UwMDMwNGJlLTcyNjUtNDY2Mi05MTM2LTAwZWI0NTIxNzZhYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5fe65899-cab8-4846-97e8-9bcb3c3ca1f4"
+ "281f6205-c0c7-48e6-bc09-b58680843a2b"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28207.04",
+ "FxVersion/4.6.28325.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
+ "OSVersion/Microsoft.Windows.10.0.17134.",
"Microsoft.Azure.Management.RecoveryServices.Backup.RecoveryServicesBackupClient/4.0.1.0"
]
},
@@ -7121,11 +79244,11 @@
"nosniff"
],
"x-ms-request-id": [
- "cce6abf7-c36f-4192-afd7-cdc25a9a1093"
+ "7d6f3dc3-c2c6-4daf-bf7e-c2bb37ee8e3e"
],
"x-ms-client-request-id": [
- "5fe65899-cab8-4846-97e8-9bcb3c3ca1f4",
- "5fe65899-cab8-4846-97e8-9bcb3c3ca1f4"
+ "281f6205-c0c7-48e6-bc09-b58680843a2b",
+ "281f6205-c0c7-48e6-bc09-b58680843a2b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7134,16 +79257,16 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11761"
+ "10907"
],
"x-ms-correlation-request-id": [
- "cce6abf7-c36f-4192-afd7-cdc25a9a1093"
+ "7d6f3dc3-c2c6-4daf-bf7e-c2bb37ee8e3e"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200203T080150Z:cce6abf7-c36f-4192-afd7-cdc25a9a1093"
+ "WESTINDIA:20200319T095756Z:7d6f3dc3-c2c6-4daf-bf7e-c2bb37ee8e3e"
],
"Date": [
- "Mon, 03 Feb 2020 08:01:49 GMT"
+ "Thu, 19 Mar 2020 09:57:55 GMT"
],
"Expires": [
"-1"
diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.PolicyTests/TestAzureVMPolicy.json b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.PolicyTests/TestAzureVMPolicy.json
index f950e914bfbe..4826269d13e9 100644
--- a/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.PolicyTests/TestAzureVMPolicy.json
+++ b/src/RecoveryServices/RecoveryServices.Backup.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Backup.Test.ScenarioTests.PolicyTests/TestAzureVMPolicy.json
@@ -1,13 +1,13 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/PSTestRG25077474?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHMjUwNzc0NzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/PSTestRGa4694aff?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHYTQ2OTRhZmY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dfe27ea4-4721-4cb3-9010-afedaccfb7f6"
+ "8615de17-f732-42e6-8e3c-b8de1fc60378"
],
"Accept-Language": [
"en-US"
@@ -16,7 +16,7 @@
"FxVersion/4.6.28207.04",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9"
]
},
"ResponseHeaders": {
@@ -33,13 +33,13 @@
"11999"
],
"x-ms-request-id": [
- "1024ddef-b39e-43e9-b41e-fa9cdd5ec21f"
+ "0a154f24-882a-47b2-a056-e49c950d1ed9"
],
"x-ms-correlation-request-id": [
- "1024ddef-b39e-43e9-b41e-fa9cdd5ec21f"
+ "0a154f24-882a-47b2-a056-e49c950d1ed9"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200202T133137Z:1024ddef-b39e-43e9-b41e-fa9cdd5ec21f"
+ "CENTRALUSEUAP:20200321T153859Z:0a154f24-882a-47b2-a056-e49c950d1ed9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -48,7 +48,7 @@
"nosniff"
],
"Date": [
- "Sun, 02 Feb 2020 13:31:37 GMT"
+ "Sat, 21 Mar 2020 15:38:58 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -60,17 +60,17 @@
"108"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'PSTestRG25077474' could not be found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'PSTestRGa4694aff' could not be found.\"\r\n }\r\n}",
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/PSTestRG25077474?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHMjUwNzc0NzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/PSTestRGa4694aff?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHYTQ2OTRhZmY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "63519c8b-28b5-4fcb-a93f-4f08c6bdc221"
+ "4f457804-13e2-4f69-a4a5-ec3bbb549c0b"
],
"Accept-Language": [
"en-US"
@@ -79,7 +79,7 @@
"FxVersion/4.6.28207.04",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9"
]
},
"ResponseHeaders": {
@@ -90,16 +90,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11998"
],
"x-ms-request-id": [
- "e5394fd6-8f91-46b9-b828-43e52def7802"
+ "f1bc488d-7083-4076-a31e-31f458309189"
],
"x-ms-correlation-request-id": [
- "e5394fd6-8f91-46b9-b828-43e52def7802"
+ "f1bc488d-7083-4076-a31e-31f458309189"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200202T133207Z:e5394fd6-8f91-46b9-b828-43e52def7802"
+ "CENTRALUSEUAP:20200321T153939Z:f1bc488d-7083-4076-a31e-31f458309189"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -108,7 +108,7 @@
"nosniff"
],
"Date": [
- "Sun, 02 Feb 2020 13:32:06 GMT"
+ "Sat, 21 Mar 2020 15:39:39 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -120,17 +120,17 @@
"192"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474\",\r\n \"name\": \"PSTestRG25077474\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff\",\r\n \"name\": \"PSTestRGa4694aff\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/PSTestRG25077474?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHMjUwNzc0NzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/PSTestRGa4694aff?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHYTQ2OTRhZmY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"southeastasia\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8dc8f094-e5ff-44cb-aa6a-58875395285f"
+ "63a227a2-08a5-4d9c-a7c5-aa8909a24459"
],
"Accept-Language": [
"en-US"
@@ -139,7 +139,7 @@
"FxVersion/4.6.28207.04",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -159,13 +159,13 @@
"1199"
],
"x-ms-request-id": [
- "900299f3-b3c7-4182-9371-525dff4403d9"
+ "28d82d6d-1136-45b9-ab8e-039d667d0ee1"
],
"x-ms-correlation-request-id": [
- "900299f3-b3c7-4182-9371-525dff4403d9"
+ "28d82d6d-1136-45b9-ab8e-039d667d0ee1"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200202T133144Z:900299f3-b3c7-4182-9371-525dff4403d9"
+ "CENTRALUSEUAP:20200321T153906Z:28d82d6d-1136-45b9-ab8e-039d667d0ee1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -174,7 +174,7 @@
"nosniff"
],
"Date": [
- "Sun, 02 Feb 2020 13:31:44 GMT"
+ "Sat, 21 Mar 2020 15:39:06 GMT"
],
"Content-Length": [
"192"
@@ -186,17 +186,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474\",\r\n \"name\": \"PSTestRG25077474\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff\",\r\n \"name\": \"PSTestRGa4694aff\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474?api-version=2016-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMjUwNzc0NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyNTA3NzQ3ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx",
+ "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff?api-version=2016-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYTQ2OTRhZmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhNDY5NGFmZj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8bc7bc8f-eca1-491d-81be-968c8459fea7-2020-02-02 13:31:45Z-P"
+ "6fbc3bc1-75f5-4527-85b0-c2c1ca5d3724-2020-03-21 15:39:06Z-P"
],
"Accept-Language": [
"en-US"
@@ -219,13 +219,13 @@
"gateway"
],
"x-ms-request-id": [
- "1de70e93-4f85-4439-b2a3-9450f9665096"
+ "4ad7b32b-2f77-4082-a313-feb7b238c47b"
],
"x-ms-correlation-request-id": [
- "1de70e93-4f85-4439-b2a3-9450f9665096"
+ "4ad7b32b-2f77-4082-a313-feb7b238c47b"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200202T133145Z:1de70e93-4f85-4439-b2a3-9450f9665096"
+ "CENTRALUSEUAP:20200321T153908Z:4ad7b32b-2f77-4082-a313-feb7b238c47b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -234,7 +234,7 @@
"nosniff"
],
"Date": [
- "Sun, 02 Feb 2020 13:31:45 GMT"
+ "Sat, 21 Mar 2020 15:39:08 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -246,17 +246,17 @@
"171"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.RecoveryServices/vaults/PSTestRSV25077474' under resource group 'PSTestRG25077474' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff' under resource group 'PSTestRGa4694aff' was not found.\"\r\n }\r\n}",
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474?api-version=2016-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMjUwNzc0NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyNTA3NzQ3ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx",
+ "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff?api-version=2016-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYTQ2OTRhZmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhNDY5NGFmZj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3eba6359-e8f0-4b2e-975a-f17576e6081f-2020-02-02 13:31:46Z-P"
+ "f3a7d72e-827a-4112-af99-d502b22f8d72-2020-03-21 15:39:08Z-P"
],
"Accept-Language": [
"en-US"
@@ -285,10 +285,10 @@
"nosniff"
],
"x-ms-request-id": [
- "9156bcf9-2370-4f27-b94f-3f146d3d647b"
+ "e80f485c-d261-4ca4-91b3-889b707b03ce"
],
"x-ms-client-request-id": [
- "3eba6359-e8f0-4b2e-975a-f17576e6081f-2020-02-02 13:31:46Z-P"
+ "f3a7d72e-827a-4112-af99-d502b22f8d72-2020-03-21 15:39:08Z-P"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -300,16 +300,16 @@
"199"
],
"x-ms-correlation-request-id": [
- "9156bcf9-2370-4f27-b94f-3f146d3d647b"
+ "e80f485c-d261-4ca4-91b3-889b707b03ce"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200202T133158Z:9156bcf9-2370-4f27-b94f-3f146d3d647b"
+ "CENTRALUSEUAP:20200321T153929Z:e80f485c-d261-4ca4-91b3-889b707b03ce"
],
"Date": [
- "Sun, 02 Feb 2020 13:31:58 GMT"
+ "Sat, 21 Mar 2020 15:39:29 GMT"
],
"Content-Length": [
- "351"
+ "466"
],
"Content-Type": [
"application/json"
@@ -318,17 +318,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSV25077474\",\r\n \"etag\": \"W/\\\"datetime'2020-02-02T13%3A31%3A56.9489053Z'\\\"\",\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSVa4694aff\",\r\n \"etag\": \"W/\\\"datetime'2020-03-21T15%3A39%3A28.1714167Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474/backupPolicies/newPolicy?api-version=2019-06-15",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMjUwNzc0NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyNTA3NzQ3NC9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff/backupPolicies/newPolicy?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYTQ2OTRhZmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhNDY5NGFmZi9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c5616a5a-b7e7-45b9-9474-a3d359e54505"
+ "b7eba1d0-d8a7-43a2-81bc-434ab34c4d5b"
],
"Accept-Language": [
"en-US"
@@ -351,11 +351,11 @@
"nosniff"
],
"x-ms-request-id": [
- "1249c4c7-f8d6-43a3-95bc-eed5fef5b791"
+ "5b4bc556-86bf-4181-a8eb-fade978c8a56"
],
"x-ms-client-request-id": [
- "c5616a5a-b7e7-45b9-9474-a3d359e54505",
- "c5616a5a-b7e7-45b9-9474-a3d359e54505"
+ "b7eba1d0-d8a7-43a2-81bc-434ab34c4d5b",
+ "b7eba1d0-d8a7-43a2-81bc-434ab34c4d5b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -367,16 +367,16 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11998"
],
"x-ms-correlation-request-id": [
- "1249c4c7-f8d6-43a3-95bc-eed5fef5b791"
+ "5b4bc556-86bf-4181-a8eb-fade978c8a56"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200202T133159Z:1249c4c7-f8d6-43a3-95bc-eed5fef5b791"
+ "CENTRALUSEUAP:20200321T153931Z:5b4bc556-86bf-4181-a8eb-fade978c8a56"
],
"Date": [
- "Sun, 02 Feb 2020 13:31:59 GMT"
+ "Sat, 21 Mar 2020 15:39:31 GMT"
],
"Content-Length": [
"2"
@@ -392,13 +392,13 @@
"StatusCode": 404
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474/backupPolicies/newPolicy?api-version=2019-06-15",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMjUwNzc0NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyNTA3NzQ3NC9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff/backupPolicies/newPolicy?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYTQ2OTRhZmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhNDY5NGFmZi9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7d9a4bd5-216c-4035-a53e-caa993482f9a"
+ "2ffdb392-a54b-49ea-9a90-f932929830f5"
],
"Accept-Language": [
"en-US"
@@ -421,11 +421,11 @@
"nosniff"
],
"x-ms-request-id": [
- "1fae79a3-f141-4332-9632-2e96e48fd2fb"
+ "fa8c49e7-b8ee-4ff7-8dab-9655c42dccb6"
],
"x-ms-client-request-id": [
- "7d9a4bd5-216c-4035-a53e-caa993482f9a",
- "7d9a4bd5-216c-4035-a53e-caa993482f9a"
+ "2ffdb392-a54b-49ea-9a90-f932929830f5",
+ "2ffdb392-a54b-49ea-9a90-f932929830f5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -437,16 +437,16 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11997"
],
"x-ms-correlation-request-id": [
- "1fae79a3-f141-4332-9632-2e96e48fd2fb"
+ "fa8c49e7-b8ee-4ff7-8dab-9655c42dccb6"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200202T133201Z:1fae79a3-f141-4332-9632-2e96e48fd2fb"
+ "CENTRALUSEUAP:20200321T153933Z:fa8c49e7-b8ee-4ff7-8dab-9655c42dccb6"
],
"Date": [
- "Sun, 02 Feb 2020 13:32:01 GMT"
+ "Sat, 21 Mar 2020 15:39:32 GMT"
],
"Content-Length": [
"1407"
@@ -458,17 +458,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474/backupPolicies/newPolicy\",\r\n \"name\": \"newPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff/backupPolicies/newPolicy\",\r\n \"name\": \"newPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474/backupPolicies/newPolicy?api-version=2019-06-15",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMjUwNzc0NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyNTA3NzQ3NC9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff/backupPolicies/newPolicy?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYTQ2OTRhZmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhNDY5NGFmZi9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "be206ff8-f27e-4bdc-bb09-cfc38f853e91"
+ "c9947cd8-fb15-43d8-93e5-939acaf67a88"
],
"Accept-Language": [
"en-US"
@@ -491,11 +491,11 @@
"nosniff"
],
"x-ms-request-id": [
- "3f9ed01c-ddea-4e4e-98d4-2fd962485b86"
+ "e7b1d765-77e1-46ea-91d3-c08958d0e0c2"
],
"x-ms-client-request-id": [
- "be206ff8-f27e-4bdc-bb09-cfc38f853e91",
- "be206ff8-f27e-4bdc-bb09-cfc38f853e91"
+ "c9947cd8-fb15-43d8-93e5-939acaf67a88",
+ "c9947cd8-fb15-43d8-93e5-939acaf67a88"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -507,16 +507,16 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11994"
],
"x-ms-correlation-request-id": [
- "3f9ed01c-ddea-4e4e-98d4-2fd962485b86"
+ "e7b1d765-77e1-46ea-91d3-c08958d0e0c2"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200202T133203Z:3f9ed01c-ddea-4e4e-98d4-2fd962485b86"
+ "CENTRALUSEUAP:20200321T153935Z:e7b1d765-77e1-46ea-91d3-c08958d0e0c2"
],
"Date": [
- "Sun, 02 Feb 2020 13:32:02 GMT"
+ "Sat, 21 Mar 2020 15:39:35 GMT"
],
"Content-Length": [
"1407"
@@ -528,17 +528,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474/backupPolicies/newPolicy\",\r\n \"name\": \"newPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff/backupPolicies/newPolicy\",\r\n \"name\": \"newPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474/backupPolicies/newPolicy?api-version=2019-06-15",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMjUwNzc0NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyNTA3NzQ3NC9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff/backupPolicies/newPolicy?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYTQ2OTRhZmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhNDY5NGFmZi9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "018bc079-7661-4452-9f81-560670303766"
+ "260021f5-8302-410c-9a85-0d614d122bce"
],
"Accept-Language": [
"en-US"
@@ -561,11 +561,11 @@
"nosniff"
],
"x-ms-request-id": [
- "aaa76571-3d8e-414a-aaf7-d29f9bc4abd2"
+ "4c4966cd-7274-4cb7-917c-1314f883a756"
],
"x-ms-client-request-id": [
- "018bc079-7661-4452-9f81-560670303766",
- "018bc079-7661-4452-9f81-560670303766"
+ "260021f5-8302-410c-9a85-0d614d122bce",
+ "260021f5-8302-410c-9a85-0d614d122bce"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -577,16 +577,16 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11992"
],
"x-ms-correlation-request-id": [
- "aaa76571-3d8e-414a-aaf7-d29f9bc4abd2"
+ "4c4966cd-7274-4cb7-917c-1314f883a756"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200202T133204Z:aaa76571-3d8e-414a-aaf7-d29f9bc4abd2"
+ "CENTRALUSEUAP:20200321T153936Z:4c4966cd-7274-4cb7-917c-1314f883a756"
],
"Date": [
- "Sun, 02 Feb 2020 13:32:03 GMT"
+ "Sat, 21 Mar 2020 15:39:36 GMT"
],
"Content-Length": [
"1407"
@@ -598,17 +598,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474/backupPolicies/newPolicy\",\r\n \"name\": \"newPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff/backupPolicies/newPolicy\",\r\n \"name\": \"newPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474/backupPolicies/newPolicy?api-version=2019-06-15",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMjUwNzc0NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyNTA3NzQ3NC9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff/backupPolicies/newPolicy?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYTQ2OTRhZmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhNDY5NGFmZi9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0fe6a059-706c-4a55-a804-33bbb297bf9b"
+ "7ac50759-f475-4e49-b5b7-22a329d88406"
],
"Accept-Language": [
"en-US"
@@ -631,11 +631,11 @@
"nosniff"
],
"x-ms-request-id": [
- "ed76b4a7-2394-447c-9c4d-21e2af3f2bf9"
+ "4f608274-8089-4dfe-84d9-8c05bd3f554e"
],
"x-ms-client-request-id": [
- "0fe6a059-706c-4a55-a804-33bbb297bf9b",
- "0fe6a059-706c-4a55-a804-33bbb297bf9b"
+ "7ac50759-f475-4e49-b5b7-22a329d88406",
+ "7ac50759-f475-4e49-b5b7-22a329d88406"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -647,19 +647,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
+ "11991"
],
"x-ms-correlation-request-id": [
- "ed76b4a7-2394-447c-9c4d-21e2af3f2bf9"
+ "4f608274-8089-4dfe-84d9-8c05bd3f554e"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200202T133206Z:ed76b4a7-2394-447c-9c4d-21e2af3f2bf9"
+ "CENTRALUSEUAP:20200321T153937Z:4f608274-8089-4dfe-84d9-8c05bd3f554e"
],
"Date": [
- "Sun, 02 Feb 2020 13:32:06 GMT"
+ "Sat, 21 Mar 2020 15:39:37 GMT"
],
"Content-Length": [
- "1407"
+ "1486"
],
"Content-Type": [
"application/json"
@@ -668,17 +668,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474/backupPolicies/newPolicy\",\r\n \"name\": \"newPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2020-02-02T05:30:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2020-02-02T05:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2020-02-02T05:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-02-02T05:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-02-02T05:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 5,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff/backupPolicies/newPolicy\",\r\n \"name\": \"newPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"instantRPDetails\": {\r\n \"azureBackupRGNamePrefix\": \"RecoveryServices\",\r\n \"azureBackupRGNameSuffix\": \"Policy\"\r\n },\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2020-03-21T05:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2020-03-21T05:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2020-03-21T05:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-03-21T05:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-03-21T05:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 5,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474/backupPolicies/newPolicy?api-version=2019-06-15",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMjUwNzc0NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyNTA3NzQ3NC9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff/backupPolicies/newPolicy?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYTQ2OTRhZmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhNDY5NGFmZi9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ]\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ]\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c53f4841-136e-45fa-a21a-38df8e6726d5"
+ "d65add22-7e4b-4dee-8a47-739239e72046"
],
"Accept-Language": [
"en-US"
@@ -707,11 +707,11 @@
"nosniff"
],
"x-ms-request-id": [
- "7c7dc40e-fdcf-4f1d-adf6-b4e185b0cb0e"
+ "2dd278f8-3668-4d1c-9a51-b7c3da76719a"
],
"x-ms-client-request-id": [
- "c53f4841-136e-45fa-a21a-38df8e6726d5",
- "c53f4841-136e-45fa-a21a-38df8e6726d5"
+ "d65add22-7e4b-4dee-8a47-739239e72046",
+ "d65add22-7e4b-4dee-8a47-739239e72046"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -723,16 +723,16 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1199"
],
"x-ms-correlation-request-id": [
- "7c7dc40e-fdcf-4f1d-adf6-b4e185b0cb0e"
+ "2dd278f8-3668-4d1c-9a51-b7c3da76719a"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200202T133201Z:7c7dc40e-fdcf-4f1d-adf6-b4e185b0cb0e"
+ "CENTRALUSEUAP:20200321T153932Z:2dd278f8-3668-4d1c-9a51-b7c3da76719a"
],
"Date": [
- "Sun, 02 Feb 2020 13:32:01 GMT"
+ "Sat, 21 Mar 2020 15:39:32 GMT"
],
"Content-Length": [
"1407"
@@ -744,17 +744,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474/backupPolicies/newPolicy\",\r\n \"name\": \"newPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-02-02T09:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff/backupPolicies/newPolicy\",\r\n \"name\": \"newPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-03-21T10:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474/backupPolicies/newPolicy?api-version=2019-06-15",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMjUwNzc0NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyNTA3NzQ3NC9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff/backupPolicies/newPolicy?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYTQ2OTRhZmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhNDY5NGFmZi9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAxOS0wNi0xNQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2020-02-02T05:30:00Z\"\r\n ]\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2020-02-02T05:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2020-02-02T05:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-02-02T05:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-02-02T05:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 5,\r\n \"timeZone\": \"UTC\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"instantRPDetails\": {\r\n \"azureBackupRGNamePrefix\": \"RecoveryServices\",\r\n \"azureBackupRGNameSuffix\": \"Policy\"\r\n },\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2020-03-21T05:00:00Z\"\r\n ]\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2020-03-21T05:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2020-03-21T05:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-03-21T05:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-03-21T05:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 5,\r\n \"timeZone\": \"UTC\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e5fef035-3952-4912-a2cf-27f2ab5529c2"
+ "2c949893-3fe7-4484-83d8-b09a3b103e08"
],
"Accept-Language": [
"en-US"
@@ -769,7 +769,7 @@
"application/json; charset=utf-8"
],
"Content-Length": [
- "1864"
+ "1996"
]
},
"ResponseHeaders": {
@@ -783,11 +783,11 @@
"nosniff"
],
"x-ms-request-id": [
- "892ad3ab-e3e5-4762-ac7a-fc3bb77a5819"
+ "b6727ae4-0ca9-486b-ad12-8d7164ad2022"
],
"x-ms-client-request-id": [
- "e5fef035-3952-4912-a2cf-27f2ab5529c2",
- "e5fef035-3952-4912-a2cf-27f2ab5529c2"
+ "2c949893-3fe7-4484-83d8-b09a3b103e08",
+ "2c949893-3fe7-4484-83d8-b09a3b103e08"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -799,19 +799,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1198"
],
"x-ms-correlation-request-id": [
- "892ad3ab-e3e5-4762-ac7a-fc3bb77a5819"
+ "b6727ae4-0ca9-486b-ad12-8d7164ad2022"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200202T133205Z:892ad3ab-e3e5-4762-ac7a-fc3bb77a5819"
+ "CENTRALUSEUAP:20200321T153937Z:b6727ae4-0ca9-486b-ad12-8d7164ad2022"
],
"Date": [
- "Sun, 02 Feb 2020 13:32:05 GMT"
+ "Sat, 21 Mar 2020 15:39:37 GMT"
],
"Content-Length": [
- "1407"
+ "1486"
],
"Content-Type": [
"application/json"
@@ -820,7 +820,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474/backupPolicies/newPolicy\",\r\n \"name\": \"newPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2020-02-02T05:30:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2020-02-02T05:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2020-02-02T05:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-02-02T05:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-02-02T05:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 5,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff/backupPolicies/newPolicy\",\r\n \"name\": \"newPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"instantRPDetails\": {\r\n \"azureBackupRGNamePrefix\": \"RecoveryServices\",\r\n \"azureBackupRGNameSuffix\": \"Policy\"\r\n },\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2020-03-21T05:00:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2020-03-21T05:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 180,\r\n \"durationType\": \"Days\"\r\n }\r\n },\r\n \"weeklySchedule\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"retentionTimes\": [\r\n \"2020-03-21T05:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 104,\r\n \"durationType\": \"Weeks\"\r\n }\r\n },\r\n \"monthlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-03-21T05:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 60,\r\n \"durationType\": \"Months\"\r\n }\r\n },\r\n \"yearlySchedule\": {\r\n \"retentionScheduleFormatType\": \"Weekly\",\r\n \"monthsOfYear\": [\r\n \"January\"\r\n ],\r\n \"retentionScheduleWeekly\": {\r\n \"daysOfTheWeek\": [\r\n \"Sunday\"\r\n ],\r\n \"weeksOfTheMonth\": [\r\n \"First\"\r\n ]\r\n },\r\n \"retentionTimes\": [\r\n \"2020-03-21T05:00:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 10,\r\n \"durationType\": \"Years\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 5,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -830,7 +830,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0e5b1df7-bb97-4642-b7d9-8b24042cef27-2020-02-02 13:32:01Z-P"
+ "448d5952-cc18-4212-b108-3345a777224b-2020-03-21 15:39:33Z-P"
],
"Accept-Language": [
"en-US"
@@ -853,10 +853,10 @@
"nosniff"
],
"x-ms-request-id": [
- "e77f632a-e951-4c20-8255-df08eba78978"
+ "44921b98-47e9-4e1e-97b5-ceeeb61bf54b"
],
"x-ms-client-request-id": [
- "0e5b1df7-bb97-4642-b7d9-8b24042cef27-2020-02-02 13:32:01Z-P"
+ "448d5952-cc18-4212-b108-3345a777224b-2020-03-21 15:39:33Z-P"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -865,19 +865,19 @@
"Microsoft-IIS/10.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11996"
],
"x-ms-correlation-request-id": [
- "e77f632a-e951-4c20-8255-df08eba78978"
+ "44921b98-47e9-4e1e-97b5-ceeeb61bf54b"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200202T133202Z:e77f632a-e951-4c20-8255-df08eba78978"
+ "CENTRALUSEUAP:20200321T153933Z:44921b98-47e9-4e1e-97b5-ceeeb61bf54b"
],
"Date": [
- "Sun, 02 Feb 2020 13:32:01 GMT"
+ "Sat, 21 Mar 2020 15:39:33 GMT"
],
"Content-Length": [
- "335"
+ "450"
],
"Content-Type": [
"application/json"
@@ -886,7 +886,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sambit\",\r\n \"etag\": \"W/\\\"datetime'2019-07-19T10%3A05%3A53.2667115Z'\\\"\",\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.RecoveryServices/vaults/sambit\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"sambit\",\r\n \"etag\": \"W/\\\"datetime'2019-07-19T10%3A05%3A53.2667115Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/sambit_rg/providers/Microsoft.RecoveryServices/vaults/sambit\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -896,7 +896,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e9244367-d9aa-49b9-a872-ebc2c5975faa"
+ "4ef4b613-5f1f-40b3-b83a-0ecbad1978d3"
],
"Accept-Language": [
"en-US"
@@ -919,11 +919,11 @@
"nosniff"
],
"x-ms-request-id": [
- "0d2abb54-4b41-49fa-8815-0f4d4c62bae9"
+ "850b575f-d8af-4b09-9577-f628ce7c58b3"
],
"x-ms-client-request-id": [
- "e9244367-d9aa-49b9-a872-ebc2c5975faa",
- "e9244367-d9aa-49b9-a872-ebc2c5975faa"
+ "4ef4b613-5f1f-40b3-b83a-0ecbad1978d3",
+ "4ef4b613-5f1f-40b3-b83a-0ecbad1978d3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -935,16 +935,16 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11995"
],
"x-ms-correlation-request-id": [
- "0d2abb54-4b41-49fa-8815-0f4d4c62bae9"
+ "850b575f-d8af-4b09-9577-f628ce7c58b3"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200202T133202Z:0d2abb54-4b41-49fa-8815-0f4d4c62bae9"
+ "CENTRALUSEUAP:20200321T153934Z:850b575f-d8af-4b09-9577-f628ce7c58b3"
],
"Date": [
- "Sun, 02 Feb 2020 13:32:02 GMT"
+ "Sat, 21 Mar 2020 15:39:33 GMT"
],
"Content-Length": [
"1461"
@@ -960,13 +960,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474/backupPolicies/DefaultPolicy?api-version=2019-06-15",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMjUwNzc0NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyNTA3NzQ3NC9iYWNrdXBQb2xpY2llcy9EZWZhdWx0UG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDYtMTU=",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff/backupPolicies/DefaultPolicy?api-version=2019-06-15",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYTQ2OTRhZmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhNDY5NGFmZi9iYWNrdXBQb2xpY2llcy9EZWZhdWx0UG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMDYtMTU=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "974aee49-df03-432e-964c-077d6a6f35fd"
+ "6de6a51c-069c-40c1-9188-47155ca044c8"
],
"Accept-Language": [
"en-US"
@@ -989,11 +989,11 @@
"nosniff"
],
"x-ms-request-id": [
- "7125a871-527c-4d9c-a66a-d51b60a0fdf6"
+ "91bed845-0958-46b8-b493-5fa37fa097cd"
],
"x-ms-client-request-id": [
- "974aee49-df03-432e-964c-077d6a6f35fd",
- "974aee49-df03-432e-964c-077d6a6f35fd"
+ "6de6a51c-069c-40c1-9188-47155ca044c8",
+ "6de6a51c-069c-40c1-9188-47155ca044c8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1005,16 +1005,16 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11993"
],
"x-ms-correlation-request-id": [
- "7125a871-527c-4d9c-a66a-d51b60a0fdf6"
+ "91bed845-0958-46b8-b493-5fa37fa097cd"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200202T133203Z:7125a871-527c-4d9c-a66a-d51b60a0fdf6"
+ "CENTRALUSEUAP:20200321T153935Z:91bed845-0958-46b8-b493-5fa37fa097cd"
],
"Date": [
- "Sun, 02 Feb 2020 13:32:03 GMT"
+ "Sat, 21 Mar 2020 15:39:35 GMT"
],
"Content-Length": [
"762"
@@ -1026,17 +1026,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474/backupPolicies/DefaultPolicy\",\r\n \"name\": \"DefaultPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2020-02-02T23:30:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2020-02-02T23:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 30,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff/backupPolicies/DefaultPolicy\",\r\n \"name\": \"DefaultPolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/backupPolicies\",\r\n \"properties\": {\r\n \"backupManagementType\": \"AzureIaasVM\",\r\n \"instantRPDetails\": {},\r\n \"schedulePolicy\": {\r\n \"schedulePolicyType\": \"SimpleSchedulePolicy\",\r\n \"scheduleRunFrequency\": \"Daily\",\r\n \"scheduleRunTimes\": [\r\n \"2020-03-22T01:30:00Z\"\r\n ],\r\n \"scheduleWeeklyFrequency\": 0\r\n },\r\n \"retentionPolicy\": {\r\n \"retentionPolicyType\": \"LongTermRetentionPolicy\",\r\n \"dailySchedule\": {\r\n \"retentionTimes\": [\r\n \"2020-03-22T01:30:00Z\"\r\n ],\r\n \"retentionDuration\": {\r\n \"count\": 30,\r\n \"durationType\": \"Days\"\r\n }\r\n }\r\n },\r\n \"instantRpRetentionRangeInDays\": 2,\r\n \"timeZone\": \"UTC\",\r\n \"protectedItemsCount\": 0\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474/backupPolicies/newPolicy?api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMjUwNzc0NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyNTA3NzQ3NC9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff/backupPolicies/newPolicy?api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYTQ2OTRhZmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhNDY5NGFmZi9iYWNrdXBQb2xpY2llcy9uZXdQb2xpY3k/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "67c2184b-8eb9-4692-bc23-013975fab133"
+ "29e79e49-7d97-4fe4-b3e0-6b43c5aded2c"
],
"Accept-Language": [
"en-US"
@@ -1059,11 +1059,11 @@
"nosniff"
],
"x-ms-request-id": [
- "d289a60d-2a02-421c-acdd-0eb9551c03bf"
+ "eea2fc04-72c8-408b-baf3-06d2a63547c7"
],
"x-ms-client-request-id": [
- "67c2184b-8eb9-4692-bc23-013975fab133",
- "67c2184b-8eb9-4692-bc23-013975fab133"
+ "29e79e49-7d97-4fe4-b3e0-6b43c5aded2c",
+ "29e79e49-7d97-4fe4-b3e0-6b43c5aded2c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1072,16 +1072,16 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14998"
+ "14999"
],
"x-ms-correlation-request-id": [
- "d289a60d-2a02-421c-acdd-0eb9551c03bf"
+ "eea2fc04-72c8-408b-baf3-06d2a63547c7"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200202T133206Z:d289a60d-2a02-421c-acdd-0eb9551c03bf"
+ "CENTRALUSEUAP:20200321T153938Z:eea2fc04-72c8-408b-baf3-06d2a63547c7"
],
"Date": [
- "Sun, 02 Feb 2020 13:32:06 GMT"
+ "Sat, 21 Mar 2020 15:39:38 GMT"
],
"Expires": [
"-1"
@@ -1094,13 +1094,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMjUwNzc0NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx",
+ "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYTQ2OTRhZmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "49b6fd35-741c-424b-81f2-7333dd9cb0be-2020-02-02 13:32:07Z-P"
+ "53937f3f-797f-48e3-adbe-29c45e1585a0-2020-03-21 15:39:39Z-P"
],
"Accept-Language": [
"en-US"
@@ -1123,10 +1123,10 @@
"nosniff"
],
"x-ms-request-id": [
- "934d0925-0dd7-42a4-aa31-4e09e747aa62"
+ "0c8b68e2-0b49-49b8-bac3-8b482ff39654"
],
"x-ms-client-request-id": [
- "49b6fd35-741c-424b-81f2-7333dd9cb0be-2020-02-02 13:32:07Z-P"
+ "53937f3f-797f-48e3-adbe-29c45e1585a0-2020-03-21 15:39:39Z-P"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1135,19 +1135,19 @@
"Microsoft-IIS/10.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11990"
],
"x-ms-correlation-request-id": [
- "934d0925-0dd7-42a4-aa31-4e09e747aa62"
+ "0c8b68e2-0b49-49b8-bac3-8b482ff39654"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200202T133207Z:934d0925-0dd7-42a4-aa31-4e09e747aa62"
+ "CENTRALUSEUAP:20200321T153939Z:0c8b68e2-0b49-49b8-bac3-8b482ff39654"
],
"Date": [
- "Sun, 02 Feb 2020 13:32:06 GMT"
+ "Sat, 21 Mar 2020 15:39:38 GMT"
],
"Content-Length": [
- "363"
+ "478"
],
"Content-Type": [
"application/json"
@@ -1156,17 +1156,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSV25077474\",\r\n \"etag\": \"W/\\\"datetime'2020-02-02T13%3A31%3A56.9489053Z'\\\"\",\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"PSTestRSVa4694aff\",\r\n \"etag\": \"W/\\\"datetime'2020-03-21T15%3A39%3A28.1714167Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2016-12-01",
- "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMjUwNzc0NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyNTA3NzQ3NC9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
+ "RequestUri": "/Subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff/backupProtectionContainers?$filter=backupManagementType%20eq%20'AzureIaasVM'%20and%20status%20eq%20'Registered'&api-version=2016-12-01",
+ "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYTQ2OTRhZmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhNDY5NGFmZi9iYWNrdXBQcm90ZWN0aW9uQ29udGFpbmVycz8kZmlsdGVyPWJhY2t1cE1hbmFnZW1lbnRUeXBlJTIwZXElMjAnQXp1cmVJYWFzVk0nJTIwYW5kJTIwc3RhdHVzJTIwZXElMjAnUmVnaXN0ZXJlZCcmYXBpLXZlcnNpb249MjAxNi0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "50c06969-0da4-420d-b8c5-78ea138eeec5"
+ "bfbd182e-9e57-4294-8b57-9f2e38cb2166"
],
"Accept-Language": [
"en-US"
@@ -1189,11 +1189,11 @@
"nosniff"
],
"x-ms-request-id": [
- "5410edbc-5b19-4ed9-984f-51a8fcbeb12f"
+ "71e22ea8-d8d2-4e25-a041-0e0dbe401487"
],
"x-ms-client-request-id": [
- "50c06969-0da4-420d-b8c5-78ea138eeec5",
- "50c06969-0da4-420d-b8c5-78ea138eeec5"
+ "bfbd182e-9e57-4294-8b57-9f2e38cb2166",
+ "bfbd182e-9e57-4294-8b57-9f2e38cb2166"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1205,16 +1205,16 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
+ "11989"
],
"x-ms-correlation-request-id": [
- "5410edbc-5b19-4ed9-984f-51a8fcbeb12f"
+ "71e22ea8-d8d2-4e25-a041-0e0dbe401487"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200202T133208Z:5410edbc-5b19-4ed9-984f-51a8fcbeb12f"
+ "CENTRALUSEUAP:20200321T153940Z:71e22ea8-d8d2-4e25-a041-0e0dbe401487"
],
"Date": [
- "Sun, 02 Feb 2020 13:32:07 GMT"
+ "Sat, 21 Mar 2020 15:39:40 GMT"
],
"Content-Length": [
"12"
@@ -1230,13 +1230,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRG25077474/providers/Microsoft.RecoveryServices/vaults/PSTestRSV25077474?api-version=2016-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHMjUwNzc0NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1YyNTA3NzQ3ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx",
+ "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourceGroups/PSTestRGa4694aff/providers/Microsoft.RecoveryServices/vaults/PSTestRSVa4694aff?api-version=2016-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlR3JvdXBzL1BTVGVzdFJHYTQ2OTRhZmYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9QU1Rlc3RSU1ZhNDY5NGFmZj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7cf5eb80-f44e-4e0c-ab97-4b1742621316-2020-02-02 13:32:08Z-P"
+ "c44a9f46-3d52-4580-9455-c02d592849c7-2020-03-21 15:39:40Z-P"
],
"Accept-Language": [
"en-US"
@@ -1259,10 +1259,10 @@
"nosniff"
],
"x-ms-request-id": [
- "10216ced-e5d4-4a13-8241-f549fd7c9c81"
+ "e6e38367-809b-4fb2-80bf-58b39fc63f58"
],
"x-ms-client-request-id": [
- "7cf5eb80-f44e-4e0c-ab97-4b1742621316-2020-02-02 13:32:08Z-P"
+ "c44a9f46-3d52-4580-9455-c02d592849c7-2020-03-21 15:39:40Z-P"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1271,13 +1271,13 @@
"199"
],
"x-ms-correlation-request-id": [
- "10216ced-e5d4-4a13-8241-f549fd7c9c81"
+ "e6e38367-809b-4fb2-80bf-58b39fc63f58"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200202T133211Z:10216ced-e5d4-4a13-8241-f549fd7c9c81"
+ "CENTRALUSEUAP:20200321T153944Z:e6e38367-809b-4fb2-80bf-58b39fc63f58"
],
"Date": [
- "Sun, 02 Feb 2020 13:32:12 GMT"
+ "Sat, 21 Mar 2020 15:39:43 GMT"
],
"Expires": [
"-1"
@@ -1290,13 +1290,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/PSTestRG25077474?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHMjUwNzc0NzQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/resourcegroups/PSTestRGa4694aff?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL3Jlc291cmNlZ3JvdXBzL1BTVGVzdFJHYTQ2OTRhZmY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "af94c9d0-96a5-4777-9e3c-ef627cfe2a9b"
+ "605e4e1b-ead9-4c03-ba4f-4efea4c712f3"
],
"Accept-Language": [
"en-US"
@@ -1305,7 +1305,7 @@
"FxVersion/4.6.28207.04",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9"
]
},
"ResponseHeaders": {
@@ -1316,7 +1316,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI1MDc3NDc0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0E0Njk0QUZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -1325,13 +1325,13 @@
"14999"
],
"x-ms-request-id": [
- "c53326dc-52e6-403b-a17e-e4781bf813a0"
+ "c4b0fc9c-9940-4e40-976d-4b383149c31e"
],
"x-ms-correlation-request-id": [
- "c53326dc-52e6-403b-a17e-e4781bf813a0"
+ "c4b0fc9c-9940-4e40-976d-4b383149c31e"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200202T133216Z:c53326dc-52e6-403b-a17e-e4781bf813a0"
+ "CENTRALUSEUAP:20200321T153949Z:c4b0fc9c-9940-4e40-976d-4b383149c31e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1340,7 +1340,7 @@
"nosniff"
],
"Date": [
- "Sun, 02 Feb 2020 13:32:16 GMT"
+ "Sat, 21 Mar 2020 15:39:49 GMT"
],
"Expires": [
"-1"
@@ -1353,8 +1353,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI1MDc3NDc0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekkxTURjM05EYzBMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0E0Njk0QUZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEUwTmprMFFVWkdMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1362,7 +1362,7 @@
"FxVersion/4.6.28207.04",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9"
]
},
"ResponseHeaders": {
@@ -1373,22 +1373,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI1MDc3NDc0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0E0Njk0QUZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11997"
],
"x-ms-request-id": [
- "ec709eda-be27-41bb-b1df-ce7ff8a52c12"
+ "e09db15b-d9c9-487a-ba92-35fece9ce7ea"
],
"x-ms-correlation-request-id": [
- "ec709eda-be27-41bb-b1df-ce7ff8a52c12"
+ "e09db15b-d9c9-487a-ba92-35fece9ce7ea"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200202T133232Z:ec709eda-be27-41bb-b1df-ce7ff8a52c12"
+ "CENTRALUSEUAP:20200321T154004Z:e09db15b-d9c9-487a-ba92-35fece9ce7ea"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1397,7 +1397,7 @@
"nosniff"
],
"Date": [
- "Sun, 02 Feb 2020 13:32:31 GMT"
+ "Sat, 21 Mar 2020 15:40:04 GMT"
],
"Expires": [
"-1"
@@ -1410,8 +1410,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI1MDc3NDc0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekkxTURjM05EYzBMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0E0Njk0QUZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEUwTmprMFFVWkdMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1419,7 +1419,7 @@
"FxVersion/4.6.28207.04",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9"
]
},
"ResponseHeaders": {
@@ -1430,22 +1430,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI1MDc3NDc0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0E0Njk0QUZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11996"
],
"x-ms-request-id": [
- "e17f1fc6-ed6e-491a-8de2-947361003d43"
+ "68fd33e6-9e69-4547-983c-9d3fc7047cb8"
],
"x-ms-correlation-request-id": [
- "e17f1fc6-ed6e-491a-8de2-947361003d43"
+ "68fd33e6-9e69-4547-983c-9d3fc7047cb8"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200202T133247Z:e17f1fc6-ed6e-491a-8de2-947361003d43"
+ "CENTRALUSEUAP:20200321T154020Z:68fd33e6-9e69-4547-983c-9d3fc7047cb8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1454,7 +1454,7 @@
"nosniff"
],
"Date": [
- "Sun, 02 Feb 2020 13:32:46 GMT"
+ "Sat, 21 Mar 2020 15:40:20 GMT"
],
"Expires": [
"-1"
@@ -1467,8 +1467,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI1MDc3NDc0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekkxTURjM05EYzBMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0E0Njk0QUZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEUwTmprMFFVWkdMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1476,7 +1476,7 @@
"FxVersion/4.6.28207.04",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9"
]
},
"ResponseHeaders": {
@@ -1487,16 +1487,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11995"
],
"x-ms-request-id": [
- "817d6c47-2429-482a-b1e1-68bedd4754a5"
+ "06e3c034-cfad-4c57-8586-576939c3f53d"
],
"x-ms-correlation-request-id": [
- "817d6c47-2429-482a-b1e1-68bedd4754a5"
+ "06e3c034-cfad-4c57-8586-576939c3f53d"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200202T133303Z:817d6c47-2429-482a-b1e1-68bedd4754a5"
+ "CENTRALUSEUAP:20200321T154036Z:06e3c034-cfad-4c57-8586-576939c3f53d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1505,7 +1505,7 @@
"nosniff"
],
"Date": [
- "Sun, 02 Feb 2020 13:33:02 GMT"
+ "Sat, 21 Mar 2020 15:40:36 GMT"
],
"Expires": [
"-1"
@@ -1518,8 +1518,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI1MDc3NDc0LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekkxTURjM05EYzBMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/38304e13-357e-405e-9e9a-220351dcce8c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSR0E0Njk0QUZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzgzMDRlMTMtMzU3ZS00MDVlLTllOWEtMjIwMzUxZGNjZThjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSMEUwTmprMFFVWkdMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1527,7 +1527,7 @@
"FxVersion/4.6.28207.04",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9"
]
},
"ResponseHeaders": {
@@ -1538,16 +1538,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11994"
],
"x-ms-request-id": [
- "a62ba1d8-00a2-4113-8329-b6fb17d129f4"
+ "9b96b858-aa71-4fc6-8876-7d47caded49b"
],
"x-ms-correlation-request-id": [
- "a62ba1d8-00a2-4113-8329-b6fb17d129f4"
+ "9b96b858-aa71-4fc6-8876-7d47caded49b"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200202T133304Z:a62ba1d8-00a2-4113-8329-b6fb17d129f4"
+ "CENTRALUSEUAP:20200321T154036Z:9b96b858-aa71-4fc6-8876-7d47caded49b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1556,7 +1556,7 @@
"nosniff"
],
"Date": [
- "Sun, 02 Feb 2020 13:33:04 GMT"
+ "Sat, 21 Mar 2020 15:40:36 GMT"
],
"Expires": [
"-1"
@@ -1572,6 +1572,6 @@
"Names": {},
"Variables": {
"SubscriptionId": "38304e13-357e-405e-9e9a-220351dcce8c",
- "NamingSuffix": "25077474-0a00-4db2-ac04-7a03d0c439f3"
+ "NamingSuffix": "a4694aff-cec8-4576-bd51-df62f7678947"
}
}
\ No newline at end of file
diff --git a/src/RecoveryServices/RecoveryServices.Backup/Cmdlets/Restore/RestoreAzureRMRecoveryServicesBackupItem.cs b/src/RecoveryServices/RecoveryServices.Backup/Cmdlets/Restore/RestoreAzureRMRecoveryServicesBackupItem.cs
index 9689b1575504..e3305dbab4ae 100644
--- a/src/RecoveryServices/RecoveryServices.Backup/Cmdlets/Restore/RestoreAzureRMRecoveryServicesBackupItem.cs
+++ b/src/RecoveryServices/RecoveryServices.Backup/Cmdlets/Restore/RestoreAzureRMRecoveryServicesBackupItem.cs
@@ -133,6 +133,13 @@ public class RestoreAzureRmRecoveryServicesBackupItem : RSBackupVaultCmdletBase
[ValidateNotNullOrEmpty]
public string TargetFolder { get; set; }
+ ///
+ /// Array of source file paths to be recovered
+ ///
+ [Parameter(Mandatory = false, ParameterSetName = AzureFileParameterSet,
+ HelpMessage = ParamHelpMsgs.RestoreFS.MultipleSourceFilePath)]
+ public string[] MultipleSourceFilePath { get; set; }
+
///
/// Use this switch if the disks from the recovery point are to be restored to their original storage accounts
///
@@ -207,6 +214,11 @@ public override void ExecuteCmdlet()
providerParameters.Add(RestoreFSBackupItemParams.SourceFileType, SourceFileType.ToString());
}
+ if(MultipleSourceFilePath != null)
+ {
+ providerParameters.Add(RestoreFSBackupItemParams.MultipleSourceFilePath, MultipleSourceFilePath);
+ }
+
PsBackupProviderManager providerManager =
new PsBackupProviderManager(providerParameters, ServiceClientAdapter);
IPsBackupProvider psBackupProvider = null;
diff --git a/src/RecoveryServices/RecoveryServices.Backup/ParamHelpMsgs.cs b/src/RecoveryServices/RecoveryServices.Backup/ParamHelpMsgs.cs
index 57ea1085747b..d8f8fb2d5eab 100644
--- a/src/RecoveryServices/RecoveryServices.Backup/ParamHelpMsgs.cs
+++ b/src/RecoveryServices/RecoveryServices.Backup/ParamHelpMsgs.cs
@@ -155,7 +155,7 @@ internal static class RestoreFS
public const string TargetStorageAccountName = "The storage account to which the file share has to be restored to.";
public const string TargetFileShareName = "The File Share to which the file share has to be restored to.";
public const string TargetFolder = "The folder under which the file share has to be restored to within the targetFileShareName.Leave the variable empty to restore under root folder.";
-
+ public const string MultipleSourceFilePath = "Used for Multiple files restore from a file share. The paths of the items to be restored within the file share.";
}
internal static class ProtectionCheck
diff --git a/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1 b/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1
index 238a2a18adfc..73ced4ab231c 100644
--- a/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1
+++ b/src/RecoveryServices/RecoveryServices/Az.RecoveryServices.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
-# Generated on: 2/11/2020
+# Generated on: 3/26/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '2.7.0'
+ModuleVersion = '2.8.0'
# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'
@@ -54,7 +54,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'AutoMapper.dll',
@@ -266,7 +266,12 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Added Support for Restore-as-files for SQL Databases.'
+ ReleaseNotes = '* Azure Site Recovery added support for doing reprotect and updated vm properties for Azure disk encrypted Virtual Machines.
+* Added Azure Site Recovery VmwareToAzure properties DR monitoring
+* Azure Backup added support for retrying policy update for failed items.
+* Azure Backup Added support for disk exclusion settings during backup and restore.
+* Azure Backup Added Support for Restoring Multiple files/folders in AzureFileShare
+* Azure Backup Added support for User-specified Resourcegroup support while updating IaasVM Policy'
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/RecoveryServices/RecoveryServices/ChangeLog.md b/src/RecoveryServices/RecoveryServices/ChangeLog.md
index 9ddaeb3f8d31..0108102fb860 100644
--- a/src/RecoveryServices/RecoveryServices/ChangeLog.md
+++ b/src/RecoveryServices/RecoveryServices/ChangeLog.md
@@ -18,10 +18,14 @@
- Additional information about change #1
-->
## Upcoming Release
+
+## Version 2.8.0
* Azure Site Recovery added support for doing reprotect and updated vm properties for Azure disk encrypted Virtual Machines.
* Added Azure Site Recovery VmwareToAzure properties DR monitoring
* Azure Backup added support for retrying policy update for failed items.
* Azure Backup Added support for disk exclusion settings during backup and restore.
+* Azure Backup Added Support for Restoring Multiple files/folders in AzureFileShare
+* Azure Backup Added support for User-specified Resourcegroup support while updating IaasVM Policy
## Version 2.7.0
* Added Support for Restore-as-files for SQL Databases.
diff --git a/src/RecoveryServices/RecoveryServices/Properties/AssemblyInfo.cs b/src/RecoveryServices/RecoveryServices/Properties/AssemblyInfo.cs
index 5eb7afadbfa6..dfe71086f87b 100644
--- a/src/RecoveryServices/RecoveryServices/Properties/AssemblyInfo.cs
+++ b/src/RecoveryServices/RecoveryServices/Properties/AssemblyInfo.cs
@@ -42,5 +42,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
-[assembly: AssemblyVersion("2.7.0")]
-[assembly: AssemblyFileVersion("2.7.0")]
+[assembly: AssemblyVersion("2.8.0")]
+[assembly: AssemblyFileVersion("2.8.0")]
diff --git a/src/RecoveryServices/RecoveryServices/help/Restore-AzRecoveryServicesBackupItem.md b/src/RecoveryServices/RecoveryServices/help/Restore-AzRecoveryServicesBackupItem.md
index 6d4543e80345..eb91fbc309a9 100644
--- a/src/RecoveryServices/RecoveryServices/help/Restore-AzRecoveryServicesBackupItem.md
+++ b/src/RecoveryServices/RecoveryServices/help/Restore-AzRecoveryServicesBackupItem.md
@@ -28,8 +28,8 @@ Restore-AzRecoveryServicesBackupItem [-VaultLocation ] [-RecoveryPoint]
Restore-AzRecoveryServicesBackupItem [-VaultLocation ] [-RecoveryPoint]
-ResolveConflict [-SourceFilePath ]
[-SourceFileType ] [-TargetStorageAccountName ] [-TargetFileShareName ]
- [-TargetFolder ] [-VaultId ] [-DefaultProfile ] [-WhatIf] [-Confirm]
- []
+ [-TargetFolder ] [-MultipleSourceFilePath ] [-VaultId ]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
```
### AzureWorkloadParameterSet
@@ -76,6 +76,25 @@ The date range specified is the last 7 days.
The seventh command specifies which disks to restore from the recovery point and stores it in $restoreDiskLUNs variable.
The last command restores the disks to the target storage account DestAccount in the DestRG resource group.
+### Example 2: Restore Multiple files of an AzureFileShare item
+
+```powershell
+PS C:\> $vault = Get-AzRecoveryServicesVault -ResourceGroupName "resourceGroup" -Name "vaultName"
+PS C:\> $BackupItem = Get-AzRecoveryServicesBackupItem -BackupManagementType AzureStorage -WorkloadType AzureVM -VaultId $vault.ID -Name "fileshareitem"
+PS C:\> $RP = Get-AzRecoveryServicesBackupRecoveryPoint -Item $BackupItem -VaultId $vault.ID
+PS C:\> $files = ("file1.txt", "file2.txt")
+PS C:\> $RestoreJob = Restore-AzRecoveryServicesBackupItem -RecoveryPoint $RP[0] -MultipleSourceFilePath $files -SourceFileType File -ResolveConflict Overwrite -VaultId $vault.ID -VaultLocation $vault.Location
+ WorkloadName Operation Status StartTime EndTime
+ ------------ --------- ------ --------- -------
+ fileshareitem Restore InProgress 26-Apr-16 1:14:01 PM 01-Jan-01 12:00:00 AM
+```
+
+The first command gets the Backup container of type AzureVM, and then stores it in the $Container variable.
+The second command gets the Backup item named fileshareitem and then stores it in the $BackupItem variable.
+The third command gets a list of recovery points for the specific backup item.
+The fourth command spceifies which files to restore and stores it in $files variable.
+The last command restores the specified files to its original location.
+
## PARAMETERS
### -DefaultProfile
@@ -94,6 +113,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```
+### -MultipleSourceFilePath
+Used for Multiple files restore from a file share. The paths of the items to be restored within the file share.
+
+```yaml
+Type: System.String[]
+Parameter Sets: AzureFileParameterSet
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
### -RecoveryPoint
Specifies the recovery point to which to restore the virtual machine.
diff --git a/src/RecoveryServices/RecoveryServices/help/Set-AzRecoveryServicesBackupProtectionPolicy.md b/src/RecoveryServices/RecoveryServices/help/Set-AzRecoveryServicesBackupProtectionPolicy.md
index 03f770f61a1b..6f7c581bbe18 100644
--- a/src/RecoveryServices/RecoveryServices/help/Set-AzRecoveryServicesBackupProtectionPolicy.md
+++ b/src/RecoveryServices/RecoveryServices/help/Set-AzRecoveryServicesBackupProtectionPolicy.md
@@ -43,6 +43,8 @@ PS C:\> $SchPol.ScheduleRunTimes.Add($DT.ToUniversalTime())
PS C:\> $RetPol = Get-AzRecoveryServicesBackupRetentionPolicyObject -WorkloadType "AzureVM"
PS C:\> $RetPol.DailySchedule.DurationCountInDays = 365
PS C:\> $Pol = Get-AzRecoveryServicesBackupProtectionPolicy -Name "NewPolicy"
+PS C:\> $Pol.AzureBackupRGName = "RG_prefix"
+PS C:\> $Pol.AzureBackupRGNameSuffix = "RG_suffix"
PS C:\> Set-AzRecoveryServicesBackupProtectionPolicy -Policy $Pol -SchedulePolicy $SchPol -RetentionPolicy $RetPol
```
@@ -53,6 +55,7 @@ The fourth command adds the date and time in $DT to the schedule run time for th
The fifth command gets a base retention policy object, and then stores it in the $RetPol variable.
The sixth command sets the retention duration to 365 days.
The seventh command gets the Backup protection policy named NewPolicy, and then stores it in the $Pol variable.
+The eighth and ninth sets the resource group parameters associated with policy which stores the restore points.
The final command modifies the Backup protection policy in $Pol using schedule policy in $SchPol and the retention policy in $RetPol.
## PARAMETERS
diff --git a/src/RedisCache/RedisCache/Az.RedisCache.psd1 b/src/RedisCache/RedisCache/Az.RedisCache.psd1
index 24a970155770..7d34850106a9 100644
--- a/src/RedisCache/RedisCache/Az.RedisCache.psd1
+++ b/src/RedisCache/RedisCache/Az.RedisCache.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Insights.dll',
diff --git a/src/Relay/Relay/Az.Relay.psd1 b/src/Relay/Relay/Az.Relay.psd1
index 094e7e5bdd50..287c3f84763d 100644
--- a/src/Relay/Relay/Az.Relay.psd1
+++ b/src/Relay/Relay/Az.Relay.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Relay.dll'
diff --git a/src/Reservations/Reservations/Az.Reservations.psd1 b/src/Reservations/Reservations/Az.Reservations.psd1
index 83e11d448add..16eac99f93ee 100644
--- a/src/Reservations/Reservations/Az.Reservations.psd1
+++ b/src/Reservations/Reservations/Az.Reservations.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Reservations.dll'
diff --git a/src/ResourceGraph/ResourceGraph/Az.ResourceGraph.psd1 b/src/ResourceGraph/ResourceGraph/Az.ResourceGraph.psd1
index 567735dc30d1..42188a13491c 100644
--- a/src/ResourceGraph/ResourceGraph/Az.ResourceGraph.psd1
+++ b/src/ResourceGraph/ResourceGraph/Az.ResourceGraph.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.ResourceGraph.dll'
diff --git a/src/Resources/Resources/Az.Resources.psd1 b/src/Resources/Resources/Az.Resources.psd1
index b75f4f62ce0c..81a3652d4988 100644
--- a/src/Resources/Resources/Az.Resources.psd1
+++ b/src/Resources/Resources/Az.Resources.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
-# Generated on: 3/3/2020
+# Generated on: 3/26/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '1.12.0'
+ModuleVersion = '1.13.0'
# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'
@@ -54,7 +54,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Authorization.dll',
@@ -141,8 +141,8 @@ CmdletsToExport = 'Get-AzProviderOperation', 'Remove-AzRoleAssignment',
'Get-AzTenantDeploymentOperation',
'Save-AzTenantDeploymentTemplate', 'Stop-AzTenantDeployment',
'Remove-AzTenantDeployment', 'Get-AzPolicyAlias', 'Remove-AzTag',
- 'Get-AzTag', 'New-AzTag', 'Get-AzDenyAssignment', 'Update-AzTag',
- 'Get-AzDeploymentScript', 'Get-AzDeploymentScriptLog',
+ 'Get-AzTag', 'New-AzTag', 'Get-AzDenyAssignment', 'Update-AzTag',
+ 'Get-AzDeploymentScript', 'Get-AzDeploymentScriptLog',
'Save-AzDeploymentScriptLog', 'Remove-AzDeploymentScript'
# Variables to export from this module
@@ -187,20 +187,11 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Fixed for null reference bug in ''Get-AzRoleAssignment''
-* Marked switch ''-Force'' and ''-PassThru'' optional in ''Remove-AzADGroup'' [#10849]
-* Fixed issue that ''MailNickname'' doesn''t return in ''Remove-AzADGroup'' [#11167]
-* Fixed issue that ''Remove-AzADGroup'' pipe operation doesn''t work [#11171]
-* Fixed for null reference bug in GetAzureRoleAssignmentCommand
-* Added breaking change attributes for upcoming changes to policy cmdlets
-* Updated ''Get-AzResourceGroup'' to perform resource group tag filtering on server-side
-* Extended Tag cmdlets to accept -ResourceId
- - Get-AzTag -ResourceId
- - New-AzTag -ResourceId
- - Remove-AzTag -ResourceId
-* Added new Tag cmdlet
- - Update-AzTag -ResourceId
-* Brought ScopedDeployment from SDK 3.3.0 '
+ ReleaseNotes = '* Fixed ''Get-AzResource -ResourceGroupName -Name -ExpandProperties -ResourceType'' to use actual apiVersion of resources instead of default apiVersion [#11267]
+* Added correlationId logging for error scenarios
+* Small documentation change to ''Get-AzResourceLock''. Added example.
+* Escaped single quote in parameter value of ''Get-AzADUser'' [#11317]
+* Added new cmdlets for Deployment Scripts (''Get-AzDeploymentScript'', ''Get-AzDeploymentScriptLog'', ''Save-AzDeploymentScriptLog'', ''Remove-AzDeploymentScript'')'
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/Resources/Resources/ChangeLog.md b/src/Resources/Resources/ChangeLog.md
index 28b7e3f6ac8f..cf73c1de6bcd 100644
--- a/src/Resources/Resources/ChangeLog.md
+++ b/src/Resources/Resources/ChangeLog.md
@@ -18,6 +18,8 @@
- Additional information about change #1
-->
## Upcoming Release
+
+## Version 1.13.0
* Fixed `Get-AzResource -ResourceGroupName -Name -ExpandProperties -ResourceType` to use actual apiVersion of resources instead of default apiVersion [#11267]
* Added correlationId logging for error scenarios
* Small documentation change to `Get-AzResourceLock`. Added example.
diff --git a/src/Resources/Resources/Properties/AssemblyInfo.cs b/src/Resources/Resources/Properties/AssemblyInfo.cs
index 0cee722ba41b..347b6b41d170 100644
--- a/src/Resources/Resources/Properties/AssemblyInfo.cs
+++ b/src/Resources/Resources/Properties/AssemblyInfo.cs
@@ -25,8 +25,8 @@
[assembly: ComVisible(false)]
[assembly: CLSCompliant(false)]
[assembly: Guid("e386b843-f3f0-4db3-8664-37d16b860dde")]
-[assembly: AssemblyVersion("1.12.0")]
-[assembly: AssemblyFileVersion("1.12.0")]
+[assembly: AssemblyVersion("1.13.0")]
+[assembly: AssemblyFileVersion("1.13.0")]
#if !SIGN
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Resources.Test")]
#endif
diff --git a/src/Search/Search/Az.Search.psd1 b/src/Search/Search/Az.Search.psd1
index 4d5e6341e2c5..785fa2aa3794 100644
--- a/src/Search/Search/Az.Search.psd1
+++ b/src/Search/Search/Az.Search.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Search.dll'
diff --git a/src/Security/Security/Az.Security.psd1 b/src/Security/Security/Az.Security.psd1
index 662f58af45f1..99d694b40be5 100644
--- a/src/Security/Security/Az.Security.psd1
+++ b/src/Security/Security/Az.Security.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.SecurityCenter.dll'
diff --git a/src/ServiceBus/ServiceBus/Az.ServiceBus.psd1 b/src/ServiceBus/ServiceBus/Az.ServiceBus.psd1
index 1eb7e380ecbd..83857888f829 100644
--- a/src/ServiceBus/ServiceBus/Az.ServiceBus.psd1
+++ b/src/ServiceBus/ServiceBus/Az.ServiceBus.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.ServiceBus.dll'
diff --git a/src/ServiceFabric/ServiceFabric/Az.ServiceFabric.psd1 b/src/ServiceFabric/ServiceFabric/Az.ServiceFabric.psd1
index db217611702d..3e08453a4372 100644
--- a/src/ServiceFabric/ServiceFabric/Az.ServiceFabric.psd1
+++ b/src/ServiceFabric/ServiceFabric/Az.ServiceFabric.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.KeyVault.dll',
diff --git a/src/SignalR/SignalR/Az.SignalR.psd1 b/src/SignalR/SignalR/Az.SignalR.psd1
index 15621ca5c4af..c8e74a67e750 100644
--- a/src/SignalR/SignalR/Az.SignalR.psd1
+++ b/src/SignalR/SignalR/Az.SignalR.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.SignalR.dll'
diff --git a/src/Sql/Sql/Az.Sql.psd1 b/src/Sql/Sql/Az.Sql.psd1
index e2a09ef29701..84a9b1c5666a 100644
--- a/src/Sql/Sql/Az.Sql.psd1
+++ b/src/Sql/Sql/Az.Sql.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
-# Generated on: 3/5/2020
+# Generated on: 3/26/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '2.4.0'
+ModuleVersion = '2.5.0'
# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Sql.dll',
@@ -313,15 +313,9 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Added PublicNetworkAccess to ''New-AzSqlServer'' and ''Set-AzSqlServer''
-* Added support for Long Term Retention backup configuration for Managed Databases
- - Get/Set LTR policy on a managed database
- - Get LTR backup(s) by managed database, managed instance, or by location
- - Remove an LTR backup
- - Restore an LTR backup to create a new managed database
-* Added MinimalTlsVersion to ''New-AzSqlServer'' and ''Set-AzSqlServer''
-* Added MinimalTlsVersion to ''New-AzSqlInstance'' and ''Set-AzSqlInstance''
-* Bumped SQL SDK version for Az.Network'
+ ReleaseNotes = '* Added readable secondary parameter to ''Invoke-AzSqlDatabaseFailover''
+* Added cmdlet ''Disable-AzSqlServerActiveDirectoryOnlyAuthentication''
+* Saved sensitivity rank when classifying columns in the database.'
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/Sql/Sql/ChangeLog.md b/src/Sql/Sql/ChangeLog.md
index f45be7ef66d3..872a525d3cbd 100644
--- a/src/Sql/Sql/ChangeLog.md
+++ b/src/Sql/Sql/ChangeLog.md
@@ -18,6 +18,8 @@
- Additional information about change #1
-->
## Upcoming Release
+
+## Version 2.5.0
* Added readable secondary parameter to `Invoke-AzSqlDatabaseFailover`
* Added cmdlet `Disable-AzSqlServerActiveDirectoryOnlyAuthentication`
* Saved sensitivity rank when classifying columns in the database.
diff --git a/src/Sql/Sql/Properties/AssemblyInfo.cs b/src/Sql/Sql/Properties/AssemblyInfo.cs
index 2f8a93541953..72b977d98f26 100644
--- a/src/Sql/Sql/Properties/AssemblyInfo.cs
+++ b/src/Sql/Sql/Properties/AssemblyInfo.cs
@@ -44,8 +44,8 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
-[assembly: AssemblyVersion("2.4.0")]
-[assembly: AssemblyFileVersion("2.4.0")]
+[assembly: AssemblyVersion("2.5.0")]
+[assembly: AssemblyFileVersion("2.5.0")]
#if !SIGN
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Resources.Test")]
#endif
diff --git a/src/Storage/Storage.Management/Az.Storage.psd1 b/src/Storage/Storage.Management/Az.Storage.psd1
index f0ea5908da6e..ec7a46f36779 100644
--- a/src/Storage/Storage.Management/Az.Storage.psd1
+++ b/src/Storage/Storage.Management/Az.Storage.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Storage.dll',
diff --git a/src/StorageSync/StorageSync/Az.StorageSync.psd1 b/src/StorageSync/StorageSync/Az.StorageSync.psd1
index 6393d004ddd4..ada1b70c8252 100644
--- a/src/StorageSync/StorageSync/Az.StorageSync.psd1
+++ b/src/StorageSync/StorageSync/Az.StorageSync.psd1
@@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.StorageSync.dll',
diff --git a/src/StreamAnalytics/StreamAnalytics/Az.StreamAnalytics.psd1 b/src/StreamAnalytics/StreamAnalytics/Az.StreamAnalytics.psd1
index 35d80d6fc270..a5bbe54f748b 100644
--- a/src/StreamAnalytics/StreamAnalytics/Az.StreamAnalytics.psd1
+++ b/src/StreamAnalytics/StreamAnalytics/Az.StreamAnalytics.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.StreamAnalytics.dll'
diff --git a/src/Subscription/Subscription/Az.Subscription.psd1 b/src/Subscription/Subscription/Az.Subscription.psd1
index 4f981dc34bb9..69026e5a9d8c 100644
--- a/src/Subscription/Subscription/Az.Subscription.psd1
+++ b/src/Subscription/Subscription/Az.Subscription.psd1
@@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Subscription.dll'
diff --git a/src/Support/Support.Test/SessionRecords/Microsoft.Azure.Commands.Support.Test.ScenarioTests.SupportTicketTests/NewAzSupportTicketTechnicalWithContactDetail.json b/src/Support/Support.Test/SessionRecords/Microsoft.Azure.Commands.Support.Test.ScenarioTests.SupportTicketTests/NewAzSupportTicketTechnicalWithContactDetail.json
index 137ab5b0562b..40f20433683f 100644
--- a/src/Support/Support.Test/SessionRecords/Microsoft.Azure.Commands.Support.Test.ScenarioTests.SupportTicketTests/NewAzSupportTicketTechnicalWithContactDetail.json
+++ b/src/Support/Support.Test/SessionRecords/Microsoft.Azure.Commands.Support.Test.ScenarioTests.SupportTicketTests/NewAzSupportTicketTechnicalWithContactDetail.json
@@ -7,16 +7,16 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "945a6121-c865-4bd9-9294-65963edc2d0e"
+ "90366f27-a67b-4ec9-a66f-c8f2aeda4adf"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.28516.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
]
},
"ResponseHeaders": {
@@ -27,16 +27,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11984"
+ "11999"
],
"x-ms-request-id": [
- "c666dc3d-9c1a-4b07-b7fb-3d83c89a9a0d"
+ "44ce9e99-f4be-4334-a90d-9f8984579542"
],
"x-ms-correlation-request-id": [
- "c666dc3d-9c1a-4b07-b7fb-3d83c89a9a0d"
+ "44ce9e99-f4be-4334-a90d-9f8984579542"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200315T071727Z:c666dc3d-9c1a-4b07-b7fb-3d83c89a9a0d"
+ "CENTRALUSEUAP:20200327T043633Z:44ce9e99-f4be-4334-a90d-9f8984579542"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -45,7 +45,7 @@
"nosniff"
],
"Date": [
- "Sun, 15 Mar 2020 07:17:27 GMT"
+ "Fri, 27 Mar 2020 04:36:33 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -54,10 +54,10 @@
"-1"
],
"Content-Length": [
- "138062"
+ "141080"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/microsoft.alertsManagement/smartDetectorAlertRules/Failure Anomalies - BotHandle_Test22fur434\",\r\n \"name\": \"Failure Anomalies - BotHandle_Test22fur434\",\r\n \"type\": \"microsoft.alertsManagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.AppPlatform/Spring/dfsds\",\r\n \"name\": \"dfsds\",\r\n \"type\": \"Microsoft.AppPlatform/Spring\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.BotService/botServices/BotHandle_Test22\",\r\n \"name\": \"BotHandle_Test22\",\r\n \"type\": \"Microsoft.BotService/botServices\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"sdk\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AARONNEWGROUP/providers/Microsoft.Compute/disks/ibiza-vm_OsDisk_1_108c8b1619e949529c67583013b383a4\",\r\n \"name\": \"ibiza-vm_OsDisk_1_108c8b1619e949529c67583013b383a4\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"location\": \"southindia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AARONNEWGROUP/providers/Microsoft.Compute/disks/Testing_disk1_db14fc3bbb344f169bc8e7aeb41bc081\",\r\n \"name\": \"Testing_disk1_db14fc3bbb344f169bc8e7aeb41bc081\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Compute/virtualMachines/Testing\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AARONNEWGROUP/providers/Microsoft.Compute/disks/VMNotification_OsDisk_1_159ec7beb94a4cc8b0fd42c1dcdfa961\",\r\n \"name\": \"VMNotification_OsDisk_1_159ec7beb94a4cc8b0fd42c1dcdfa961\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Compute/virtualMachines/Testing\",\r\n \"name\": \"Testing\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Compute/virtualMachines/Testing/extensions/BMCCtmAgent\",\r\n \"name\": \"Testing/BMCCtmAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AARONNEWGROUP/providers/Microsoft.Compute/virtualMachines/Testing/extensions/OmsAgentForLinux\",\r\n \"name\": \"Testing/OmsAgentForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/microsoft.insights/components/BotHandle_Test22fur434\",\r\n \"name\": \"BotHandle_Test22fur434\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.BotService/botServices/BotHandle_Test22\": \"Resource\",\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Web/sites/bothandletest22\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Network/networkInterfaces/testing290\",\r\n \"name\": \"testing290\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Network/networkSecurityGroups/Testing-nsg\",\r\n \"name\": \"Testing-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Network/publicIPAddresses/Testing-ip\",\r\n \"name\": \"Testing-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Network/virtualNetworks/aaronnewgroup-vnet\",\r\n \"name\": \"aaronnewgroup-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Sql/servers/qmstesting\",\r\n \"name\": \"qmstesting\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"australiaeast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Sql/servers/qmstesting/databases/master\",\r\n \"name\": \"qmstesting/master\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"sku\": {\r\n \"name\": \"System\",\r\n \"tier\": \"System\",\r\n \"capacity\": 0\r\n },\r\n \"kind\": \"v12.0,system\",\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Sql/servers/qmstesting\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Storage/storageAccounts/aaronnewgroupdiag\",\r\n \"name\": \"aaronnewgroupdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Web/sites/bothandletest22\",\r\n \"name\": \"bothandletest22\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.AppPlatform/Spring/springtest\",\r\n \"name\": \"springtest\",\r\n \"type\": \"Microsoft.AppPlatform/Spring\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.BingMaps/mapApis/BingMapsTest\",\r\n \"name\": \"BingMapsTest\",\r\n \"type\": \"Microsoft.BingMaps/mapApis\",\r\n \"location\": \"westus\",\r\n \"plan\": {\r\n \"name\": \"public1\",\r\n \"promotionCode\": \"\",\r\n \"product\": \"mapapis\",\r\n \"publisher\": \"bingmaps\"\r\n },\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AARONTEST/providers/Microsoft.Compute/disks/TestSubscription_disk1_3be4162706d9460fb7aece2642a719cf\",\r\n \"name\": \"TestSubscription_disk1_3be4162706d9460fb7aece2642a719cf\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Compute/virtualMachines/TestSubscription\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Compute/virtualMachines/TestSubscription\",\r\n \"name\": \"TestSubscription\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AARONTEST/providers/Microsoft.Compute/virtualMachines/TestSubscription/extensions/OmsAgentForLinux\",\r\n \"name\": \"TestSubscription/OmsAgentForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Databricks/workspaces/bricksTest\",\r\n \"name\": \"bricksTest\",\r\n \"type\": \"Microsoft.Databricks/workspaces\",\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Maps/accounts/MapsTestASEP\",\r\n \"name\": \"MapsTestASEP\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"sku\": {\r\n \"name\": \"s1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"global\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Network/networkInterfaces/testsubscription52\",\r\n \"name\": \"testsubscription52\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Network/networkSecurityGroups/TestSubscription-nsg\",\r\n \"name\": \"TestSubscription-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Network/publicIPAddresses/TestSubscription-ip\",\r\n \"name\": \"TestSubscription-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Network/virtualNetworks/AaronTest-vnet\",\r\n \"name\": \"AaronTest-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.PowerBI/workspaceCollections/hcltestpowerbi\",\r\n \"name\": \"hcltestpowerbi\",\r\n \"type\": \"Microsoft.PowerBI/workspaceCollections\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Storage/storageAccounts/aarontestdiag737\",\r\n \"name\": \"aarontestdiag737\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Web/certificates/37E9CED2A6E746C96AE86B921CAF902D8AEA82F4#AaronTest-WestUSwebspace\",\r\n \"name\": \"37E9CED2A6E746C96AE86B921CAF902D8AEA82F4#AaronTest-WestUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Web/certificates/A448339CF032F5FD576825992FD718D167E22D58#AaronTest-CentralUSwebspace\",\r\n \"name\": \"A448339CF032F5FD576825992FD718D167E22D58#AaronTest-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AcisExtensionsResourceGroup/providers/Microsoft.KeyVault/vaults/AllowedAcisExtensions\",\r\n \"name\": \"AllowedAcisExtensions\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AcisExtensionsResourceGroup/providers/Microsoft.KeyVault/vaults/UXAutomationTest\",\r\n \"name\": \"UXAutomationTest\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ACSExtension/providers/Microsoft.DataFactory/factories/FeedbackDataFacv2\",\r\n \"name\": \"FeedbackDataFacv2\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"location\": \"eastus\",\r\n \"identity\": {\r\n \"principalId\": \"a6ee88ee-4b20-4543-853e-323f74c5ff65\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ACSExtension/providers/Microsoft.DBforMySQL/servers/hcltestserver1\",\r\n \"name\": \"hcltestserver1\",\r\n \"type\": \"Microsoft.DBforMySQL/servers\",\r\n \"sku\": {\r\n \"name\": \"MYSQLB50\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 50\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ACSExtension/providers/Microsoft.KeyVault/vaults/AllowedACSExtension\",\r\n \"name\": \"AllowedACSExtension\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ACSExtension/providers/Microsoft.Network/networkInterfaces/hcltestvm294\",\r\n \"name\": \"hcltestvm294\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ACSExtension/providers/Microsoft.Network/networkSecurityGroups/HCLTestVM-nsg\",\r\n \"name\": \"HCLTestVM-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ACSExtension/providers/Microsoft.Network/publicIPAddresses/HCLTestVM-ip\",\r\n \"name\": \"HCLTestVM-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ACSExtension/providers/Microsoft.Network/virtualNetworks/ACSExtension-vnet\",\r\n \"name\": \"ACSExtension-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ACSExtension/providers/Microsoft.Storage/storageAccounts/acsextensiondiag821\",\r\n \"name\": \"acsextensiondiag821\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ACSExtension/providers/Microsoft.Storage/storageAccounts/acsextensiondisks257\",\r\n \"name\": \"acsextensiondisks257\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Akanksha-test/providers/Microsoft.Network/applicationGateways/AppGWTest\",\r\n \"name\": \"AppGWTest\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Akanksha-test/providers/Microsoft.Network/publicIPAddresses/AppGWTest-ip\",\r\n \"name\": \"AppGWTest-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n },\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Akanksha-test/providers/Microsoft.Network/virtualNetworks/Akanksha-test\",\r\n \"name\": \"Akanksha-test\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AKTest/providers/microsoft.cdn/profiles/HCLTestCDN\",\r\n \"name\": \"HCLTestCDN\",\r\n \"type\": \"microsoft.cdn/profiles\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AKTest/providers/microsoft.cdn/profiles/HCLTestCDN/endpoints/HCLTest\",\r\n \"name\": \"HCLTestCDN/HCLTest\",\r\n \"type\": \"microsoft.cdn/profiles/endpoints\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AKTest/providers/Microsoft.ClassicNetwork/virtualNetworks/AKTest\",\r\n \"name\": \"AKTest\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AKTest/providers/Microsoft.Logic/integrationAccounts/HCLTest2\",\r\n \"name\": \"HCLTest2\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AKTest/providers/Microsoft.Logic/integrationAccounts/HCLTestIA2\",\r\n \"name\": \"HCLTestIA2\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AKTest/providers/Microsoft.Logic/integrationAccounts/HCLTestIC\",\r\n \"name\": \"HCLTestIC\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AKTest/providers/Microsoft.Network/dnszones/hcltest.contoso.com\",\r\n \"name\": \"hcltest.contoso.com\",\r\n \"type\": \"Microsoft.Network/dnszones\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AKTest/providers/Microsoft.Storage/storageAccounts/akteststorage\",\r\n \"name\": \"akteststorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/alex-test-ml/providers/Microsoft.Storage/storageAccounts/alextestmlstorage\",\r\n \"name\": \"alextestmlstorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"mlteamAccount\": \"AlexTest\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Alex_test/providers/Microsoft.ClassicStorage/storageAccounts/alexzhangteststorage\",\r\n \"name\": \"alexzhangteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AlexTestVNetRG/providers/Microsoft.Network/privateDnsZones/test-private.com\",\r\n \"name\": \"test-private.com\",\r\n \"type\": \"Microsoft.Network/privateDnsZones\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AlexTestVNetRG/providers/Microsoft.Web/serverFarms/ServicePlan\",\r\n \"name\": \"ServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"P2\",\r\n \"tier\": \"Premium\",\r\n \"size\": \"P2\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/alexzhangtestgroup/providers/Microsoft.KeyVault/vaults/alexzhangTest\",\r\n \"name\": \"alexzhangTest\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/alexzhangtestgroup/providers/Microsoft.KeyVault/vaults/alexzhangtesttwo\",\r\n \"name\": \"alexzhangtesttwo\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/amsheteresourcegroup2/providers/Microsoft.Storage/storageAccounts/amshetestorage2\",\r\n \"name\": \"amshetestorage2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/amshetetestresourcegroup/providers/Microsoft.KeyVault/vaults/amshetetestkv\",\r\n \"name\": \"amshetetestkv\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/amshetetestresourcegroup/providers/Microsoft.Web/serverFarms/myFirstAzureWebappPlan\",\r\n \"name\": \"myFirstAzureWebappPlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"P2\",\r\n \"tier\": \"Premium\",\r\n \"size\": \"P2\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/amshetetestresourcegroup/providers/Microsoft.Web/sites/asmc-ppe-amshete\",\r\n \"name\": \"asmc-ppe-amshete\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/analysisservices/providers/Microsoft.AnalysisServices/servers/analysisservices\",\r\n \"name\": \"analysisservices\",\r\n \"type\": \"Microsoft.AnalysisServices/servers\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Automation/automationAccounts/AshuAutomationAccount\",\r\n \"name\": \"AshuAutomationAccount\",\r\n \"type\": \"Microsoft.Automation/automationAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Automation/automationAccounts/AshuAutomationAccount/runbooks/Get-AzureVMTutorial\",\r\n \"name\": \"AshuAutomationAccount/Get-AzureVMTutorial\",\r\n \"type\": \"Microsoft.Automation/automationAccounts/runbooks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Compute/virtualMachines/GangaTFSVM\",\r\n \"name\": \"GangaTFSVM\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Compute/virtualMachines/GangaTFSVM/extensions/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"name\": \"GangaTFSVM/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-GROUP/providers/Microsoft.Compute/virtualMachines/GangaTFSVM/extensions/MicrosoftMonitoringAgent\",\r\n \"name\": \"GangaTFSVM/MicrosoftMonitoringAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Network/networkInterfaces/demo1linuxvmv230\",\r\n \"name\": \"demo1linuxvmv230\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Network/networkInterfaces/gangatfsvm330\",\r\n \"name\": \"gangatfsvm330\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Network/networkSecurityGroups/ARM-VM-Group-default-NRMS\",\r\n \"name\": \"ARM-VM-Group-default-NRMS\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Creator\": \"Automatically added by NRMS Azure Policy\",\r\n \"NRMS-Info\": \"http://aka.ms/nrms\",\r\n \"NRMS-Version\": \"2019-03-20\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Network/networkSecurityGroups/demo1LinuxVMv2\",\r\n \"name\": \"demo1LinuxVMv2\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Network/networkSecurityGroups/GangaTFSVM\",\r\n \"name\": \"GangaTFSVM\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Network/publicIPAddresses/demo1LinuxVMv2\",\r\n \"name\": \"demo1LinuxVMv2\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Network/publicIPAddresses/GangaTFSVM\",\r\n \"name\": \"GangaTFSVM\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Network/trafficmanagerprofiles/tmtesttast\",\r\n \"name\": \"tmtesttast\",\r\n \"type\": \"Microsoft.Network/trafficmanagerprofiles\",\r\n \"location\": \"global\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Network/virtualNetworks/ARM-VM-Group\",\r\n \"name\": \"ARM-VM-Group\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Storage/storageAccounts/armvmgroup5257\",\r\n \"name\": \"armvmgroup5257\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ashuredhat/providers/microsoft.cdn/profiles/TestCDNStandard\",\r\n \"name\": \"TestCDNStandard\",\r\n \"type\": \"microsoft.cdn/profiles\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ashuredhat/providers/Microsoft.Compute/virtualMachines/AshuRedHat\",\r\n \"name\": \"AshuRedHat\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ashuredhat/providers/Microsoft.Compute/virtualMachines/AshuRedHat/extensions/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"name\": \"AshuRedHat/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ASHUREDHAT/providers/Microsoft.Compute/virtualMachines/AshuRedHat/extensions/OmsAgentForLinux\",\r\n \"name\": \"AshuRedHat/OmsAgentForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ashuredhat/providers/Microsoft.Network/networkInterfaces/ashuredhat792\",\r\n \"name\": \"ashuredhat792\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ashuredhat/providers/Microsoft.Network/networkSecurityGroups/AshuRedHat-nsg\",\r\n \"name\": \"AshuRedHat-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ashuredhat/providers/Microsoft.Network/publicIPAddresses/AshuRedHat-ip\",\r\n \"name\": \"AshuRedHat-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ashuredhat/providers/Microsoft.Network/virtualNetworks/ashuredhat-vnet\",\r\n \"name\": \"ashuredhat-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ashuredhat/providers/Microsoft.Storage/storageAccounts/ashuredhat841\",\r\n \"name\": \"ashuredhat841\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/asmc/providers/Microsoft.KeyVault/vaults/MissionControlKV\",\r\n \"name\": \"MissionControlKV\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/asmc/providers/Microsoft.Storage/storageAccounts/feedback\",\r\n \"name\": \"feedback\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/azalextest/providers/Microsoft.Storage/storageAccounts/azalextest\",\r\n \"name\": \"azalextest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/azsupportrp-vmss-dev/providers/Microsoft.Storage/storageAccounts/azsupportrpvmssdev\",\r\n \"name\": \"azsupportrpvmssdev\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"BlobStorage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AzSupportRPTestAppGateway/providers/Microsoft.Network/publicIPAddresses/AzSupportRPTest-ip\",\r\n \"name\": \"AzSupportRPTest-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/azurecustomerassist/providers/Microsoft.ClassicStorage/storageAccounts/azurecustomerassist\",\r\n \"name\": \"azurecustomerassist\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AzureFunctions-WestUS/providers/Microsoft.Storage/storageAccounts/azurefunctions82331d27\",\r\n \"name\": \"azurefunctions82331d27\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Bernardm_713/providers/Microsoft.Storage/storageAccounts/bernardm7139fa0\",\r\n \"name\": \"bernardm7139fa0\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Bernardmtest2/providers/Microsoft.Storage/storageAccounts/yolkatest\",\r\n \"name\": \"yolkatest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bewon_test/providers/microsoft.media/mediaservices/bewontestmediaservice\",\r\n \"name\": \"bewontestmediaservice\",\r\n \"type\": \"microsoft.media/mediaservices\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bewon_test/providers/Microsoft.Media/mediaservices/bewontestmediaservice/streamingEndpoints/default\",\r\n \"name\": \"bewontestmediaservice/default\",\r\n \"type\": \"Microsoft.Media/mediaservices/streamingEndpoints\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bhavintest/providers/Microsoft.Batch/batchAccounts/casesubmissiontest1\",\r\n \"name\": \"casesubmissiontest1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/BHAVINTEST/providers/Microsoft.Compute/disks/visualstudio_OsDisk_1_11e5480c4f424a02b8d20b53409854d1\",\r\n \"name\": \"visualstudio_OsDisk_1_11e5480c4f424a02b8d20b53409854d1\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bhavintest/providers/Microsoft.Compute/virtualMachines/visualstudio\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bhavintest/providers/Microsoft.Compute/virtualMachines/visualstudio\",\r\n \"name\": \"visualstudio\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bhavintest/providers/Microsoft.Compute/virtualMachines/visualstudio/extensions/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"name\": \"visualstudio/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/BHAVINTEST/providers/Microsoft.Compute/virtualMachines/visualstudio/extensions/MicrosoftMonitoringAgent\",\r\n \"name\": \"visualstudio/MicrosoftMonitoringAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bhavintest/providers/Microsoft.Network/networkInterfaces/visualstudio40\",\r\n \"name\": \"visualstudio40\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bhavintest/providers/Microsoft.Network/networkSecurityGroups/visualstudio-nsg\",\r\n \"name\": \"visualstudio-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bhavintest/providers/Microsoft.Network/publicIPAddresses/visualstudio-ip\",\r\n \"name\": \"visualstudio-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n },\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bhavintest/providers/Microsoft.Network/virtualNetworks/bhavintest-vnet\",\r\n \"name\": \"bhavintest-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bhavintest/providers/Microsoft.Storage/storageAccounts/bhavintestdiag\",\r\n \"name\": \"bhavintestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/buildoutautomation-cosmos/providers/Microsoft.DocumentDB/databaseAccounts/azsupportrp-chat-test\",\r\n \"name\": \"azsupportrp-chat-test\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"defaultExperience\": \"DocumentDB\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/buildoutautomation-dns/providers/Microsoft.Network/dnszones/azsupport-test.msftcloudes.com\",\r\n \"name\": \"azsupport-test.msftcloudes.com\",\r\n \"type\": \"Microsoft.Network/dnszones\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/buildoutautomation-ip/providers/Microsoft.Network/publicIPAddresses/PortalExtAPI-Test\",\r\n \"name\": \"PortalExtAPI-Test\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/buildoutautomation-kv/providers/Microsoft.KeyVault/vaults/AzureSupportRP-Test\",\r\n \"name\": \"AzureSupportRP-Test\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/buildoutautomation-msi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzureSupportRP_Cluster_Test\",\r\n \"name\": \"AzureSupportRP_Cluster_Test\",\r\n \"type\": \"Microsoft.ManagedIdentity/userAssignedIdentities\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/buildoutautomation-sb/providers/Microsoft.ServiceBus/namespaces/AzSupport-Tickets-Test\",\r\n \"name\": \"AzSupport-Tickets-Test\",\r\n \"type\": \"Microsoft.ServiceBus/namespaces\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/buildoutautomation-sb/providers/Microsoft.ServiceBus/namespaces/supportrp-test\",\r\n \"name\": \"supportrp-test\",\r\n \"type\": \"Microsoft.ServiceBus/namespaces\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/buildoutautomation-storage/providers/Microsoft.Storage/storageAccounts/azsupporttempticketstest\",\r\n \"name\": \"azsupporttempticketstest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/buildoutautomation-tm/providers/Microsoft.Network/dnszones/azsupport-test.msftcloudes.com\",\r\n \"name\": \"azsupport-test.msftcloudes.com\",\r\n \"type\": \"Microsoft.Network/dnszones\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/buildoutautomation-tm/providers/Microsoft.Network/trafficmanagerprofiles/azsupportextapi-test\",\r\n \"name\": \"azsupportextapi-test\",\r\n \"type\": \"Microsoft.Network/trafficmanagerprofiles\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CaseSubmissionPwd/providers/Microsoft.KeyVault/vaults/CaseSubmissionPwd\",\r\n \"name\": \"CaseSubmissionPwd\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CaseSubmissionTestContainerRegistry/providers/Microsoft.ContainerRegistry/registries/CaseSubmissionTest\",\r\n \"name\": \"CaseSubmissionTest\",\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"sku\": {\r\n \"name\": \"Managed_Basic\",\r\n \"tier\": \"Managed\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CaseSubmissionUIAutomation/providers/Microsoft.Compute/virtualMachines/CaseSubTestVM\",\r\n \"name\": \"CaseSubTestVM\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CASESUBMISSIONUIAUTOMATION/providers/Microsoft.Compute/virtualMachines/CaseSubTestVM/extensions/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"name\": \"CaseSubTestVM/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CASESUBMISSIONUIAUTOMATION/providers/Microsoft.Compute/virtualMachines/CaseSubTestVM/extensions/MicrosoftMonitoringAgent\",\r\n \"name\": \"CaseSubTestVM/MicrosoftMonitoringAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CaseSubmissionUIAutomation/providers/Microsoft.Network/networkInterfaces/casesubtestvm922\",\r\n \"name\": \"casesubtestvm922\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CaseSubmissionUIAutomation/providers/Microsoft.Network/networkSecurityGroups/CaseSubTestVM-nsg\",\r\n \"name\": \"CaseSubTestVM-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CaseSubmissionUIAutomation/providers/Microsoft.Network/publicIPAddresses/CaseSubTestVM-ip\",\r\n \"name\": \"CaseSubTestVM-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n },\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CaseSubmissionUIAutomation/providers/Microsoft.Network/virtualNetworks/testsupportext-westcentral-vnet\",\r\n \"name\": \"testsupportext-westcentral-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CaseSubmissionUIAutomation/providers/Microsoft.Storage/storageAccounts/testsupportextwestcen405\",\r\n \"name\": \"testsupportextwestcen405\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CaseSubmissionUIAutomation/providers/Microsoft.Storage/storageAccounts/testsupportextwestcen548\",\r\n \"name\": \"testsupportextwestcen548\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CHRIS_DEMO_GROUP/providers/Microsoft.Compute/disks/ChrisCanaryOne_OsDisk_1_bc22f1e44d25435187253753185498ed\",\r\n \"name\": \"ChrisCanaryOne_OsDisk_1_bc22f1e44d25435187253753185498ed\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"sku\": {\r\n \"name\": \"StandardSSD_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Compute/virtualMachines/ChrisCanaryOne\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Demo\": \"Chris\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Compute/virtualMachines/ChrisCanaryOne\",\r\n \"name\": \"ChrisCanaryOne\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Demo\": \"Chris\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Compute/virtualMachines/ChrisCanaryOne/extensions/AzureNetworkWatcherExtension\",\r\n \"name\": \"ChrisCanaryOne/AzureNetworkWatcherExtension\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Compute/virtualMachines/ChrisCanaryOne/extensions/DependencyAgentWindows\",\r\n \"name\": \"ChrisCanaryOne/DependencyAgentWindows\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Demo\": \"Chris\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Compute/virtualMachines/ChrisCanaryOne/extensions/IaaSAntimalware\",\r\n \"name\": \"ChrisCanaryOne/IaaSAntimalware\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Compute/virtualMachines/ChrisCanaryOne/extensions/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"name\": \"ChrisCanaryOne/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Compute/virtualMachines/ChrisCanaryOne/extensions/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"name\": \"ChrisCanaryOne/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Demo\": \"Chris\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Compute/virtualMachines/ChrisCanaryOne/extensions/MMAExtension\",\r\n \"name\": \"ChrisCanaryOne/MMAExtension\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Demo\": \"Chris\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Network/networkInterfaces/chriscanaryone156\",\r\n \"name\": \"chriscanaryone156\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Demo\": \"Chris\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Network/networkSecurityGroups/ChrisCanaryOne-nsg\",\r\n \"name\": \"ChrisCanaryOne-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Demo\": \"Chris\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Network/publicIPAddresses/ChrisCanaryOne-ip\",\r\n \"name\": \"ChrisCanaryOne-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Demo\": \"Chris\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Network/virtualNetworks/Chris_Demo_Group-vnet\",\r\n \"name\": \"Chris_Demo_Group-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Demo\": \"Chris\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Storage/storageAccounts/chrisdemogroupdiag\",\r\n \"name\": \"chrisdemogroupdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Demo\": \"Chris\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CisService-6LZHY5HYMKG7BBUT44RYK6QWHTQHK4X24NC2JQX5TNKLOPECOCQA-West-US/providers/microsoft.storsimple/managers/yanyanTestPhysical\",\r\n \"name\": \"yanyanTestPhysical\",\r\n \"type\": \"microsoft.storsimple/managers\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg\",\r\n \"name\": \"rg-cleanupservice-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg2\",\r\n \"name\": \"rg-cleanupservice-nsg2\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg3\",\r\n \"name\": \"rg-cleanupservice-nsg3\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg4\",\r\n \"name\": \"rg-cleanupservice-nsg4\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southindia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg5\",\r\n \"name\": \"rg-cleanupservice-nsg5\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg6\",\r\n \"name\": \"rg-cleanupservice-nsg6\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg7\",\r\n \"name\": \"rg-cleanupservice-nsg7\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cleanupservice/providers/Microsoft.Web/serverFarms/clnbf53c305-db8a-44fd-bb6c-dd3532fcff01\",\r\n \"name\": \"clnbf53c305-db8a-44fd-bb6c-dd3532fcff01\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cloud-shell-storage-eastus/providers/Microsoft.Storage/storageAccounts/cs276cb77fa8b17x4eabx949\",\r\n \"name\": \"cs276cb77fa8b17x4eabx949\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cloud-shell-storage-southcentralus/providers/Microsoft.Storage/storageAccounts/cs776cb77fa8b17x4eabx949\",\r\n \"name\": \"cs776cb77fa8b17x4eabx949\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs476cb77fa8b17x4eabx949\",\r\n \"name\": \"cs476cb77fa8b17x4eabx949\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CognitiveServiceResourceGroup/providers/Microsoft.CognitiveServices/accounts/Face-ResourceType\",\r\n \"name\": \"Face-ResourceType\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"sku\": {\r\n \"name\": \"F0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CognitiveServiceResourceGroup/providers/Microsoft.CognitiveServices/accounts/LUIS-ResourceType\",\r\n \"name\": \"LUIS-ResourceType\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"sku\": {\r\n \"name\": \"F0\"\r\n },\r\n \"kind\": \"LUIS\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CognitiveServiceResourceGroup/providers/Microsoft.CognitiveServices/accounts/Speech-ResourceType\",\r\n \"name\": \"Speech-ResourceType\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"sku\": {\r\n \"name\": \"F0\"\r\n },\r\n \"kind\": \"SpeechServices\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CONNORTESTRG/providers/Microsoft.Compute/disks/coward-vm_OsDisk_1_ad959705d6e346bd900582e21a44cf98\",\r\n \"name\": \"coward-vm_OsDisk_1_ad959705d6e346bd900582e21a44cf98\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ConnorTestRG/providers/Microsoft.Compute/virtualMachines/coward-vm\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ConnorTestRG/providers/Microsoft.Compute/virtualMachines/coward-vm\",\r\n \"name\": \"coward-vm\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ConnorTestRG/providers/Microsoft.Compute/virtualMachines/coward-vm/extensions/DependencyAgentWindows\",\r\n \"name\": \"coward-vm/DependencyAgentWindows\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CONNORTESTRG/providers/Microsoft.Compute/virtualMachines/coward-vm/extensions/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"name\": \"coward-vm/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CONNORTESTRG/providers/Microsoft.Compute/virtualMachines/coward-vm/extensions/MicrosoftMonitoringAgent\",\r\n \"name\": \"coward-vm/MicrosoftMonitoringAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ConnorTestRG/providers/Microsoft.Network/networkInterfaces/coward-vm384\",\r\n \"name\": \"coward-vm384\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ConnorTestRG/providers/Microsoft.Network/networkSecurityGroups/coward-vm-nsg\",\r\n \"name\": \"coward-vm-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ConnorTestRG/providers/Microsoft.Network/publicIPAddresses/coward-vm-ip\",\r\n \"name\": \"coward-vm-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ConnorTestRG/providers/Microsoft.Network/virtualNetworks/ConnorTestRG-vnet\",\r\n \"name\": \"ConnorTestRG-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ConnorTestRG/providers/Microsoft.Storage/storageAccounts/connortestrgdiag\",\r\n \"name\": \"connortestrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ContosoResourceGroup/providers/Microsoft.KeyVault/vaults/ContosoKVTest\",\r\n \"name\": \"ContosoKVTest\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CSSCEDemo/providers/Microsoft.Network/networkInterfaces/cedemonobootvm724\",\r\n \"name\": \"cedemonobootvm724\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CSSCEDemo/providers/Microsoft.Network/networkSecurityGroups/CEDemoNoBootVM-nsg\",\r\n \"name\": \"CEDemoNoBootVM-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CSSCEDemo/providers/Microsoft.Network/publicIPAddresses/CEDemoNoBootVM-ip\",\r\n \"name\": \"CEDemoNoBootVM-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CSSCEDemo/providers/Microsoft.Network/virtualNetworks/CSSCEDemo-vnet\",\r\n \"name\": \"CSSCEDemo-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CSSCEDemo/providers/Microsoft.Storage/storageAccounts/csscedemo748\",\r\n \"name\": \"csscedemo748\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-MSSolveListener/providers/Microsoft.ClassicNetwork/virtualNetworks/AshuLinux\",\r\n \"name\": \"AshuLinux\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-MSSolveListener/providers/Microsoft.ClassicStorage/storageAccounts/ashulinux\",\r\n \"name\": \"ashulinux\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-MSSolveListener/providers/Microsoft.Compute/virtualMachines/AshuLinuxARM\",\r\n \"name\": \"AshuLinuxARM\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-MSSolveListener/providers/Microsoft.Compute/virtualMachines/AshuLinuxARM/extensions/AzureNetworkWatcherExtension\",\r\n \"name\": \"AshuLinuxARM/AzureNetworkWatcherExtension\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-MSSolveListener/providers/Microsoft.Compute/virtualMachines/AshuLinuxARM/extensions/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"name\": \"AshuLinuxARM/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CURRENT-MSSOLVELISTENER/providers/Microsoft.Compute/virtualMachines/AshuLinuxARM/extensions/OmsAgentForLinux\",\r\n \"name\": \"AshuLinuxARM/OmsAgentForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-MSSolveListener/providers/Microsoft.Network/networkInterfaces/ashulinuxarm736\",\r\n \"name\": \"ashulinuxarm736\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-MSSolveListener/providers/Microsoft.Network/networkSecurityGroups/AshuLinuxARM\",\r\n \"name\": \"AshuLinuxARM\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-MSSolveListener/providers/Microsoft.Network/publicIPAddresses/AshuLinuxARM\",\r\n \"name\": \"AshuLinuxARM\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-MSSolveListener/providers/Microsoft.Network/virtualNetworks/current-MSSolveListener\",\r\n \"name\": \"current-MSSolveListener\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-MSSolveListener/providers/Microsoft.Storage/storageAccounts/currentmssolveliste4191\",\r\n \"name\": \"currentmssolveliste4191\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-support-extension-test/providers/Microsoft.Cache/Redis/secache\",\r\n \"name\": \"secache\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-support-extension-test/providers/Microsoft.RecoveryServices/vaults/test-rsv\",\r\n \"name\": \"test-rsv\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/databricks-rg-bricksTest-xlqwzuzwmmwuu/providers/Microsoft.Network/networkSecurityGroups/workers-sg\",\r\n \"name\": \"workers-sg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"application\": \"databricks\",\r\n \"databricks-environment\": \"true\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/databricks-rg-bricksTest-xlqwzuzwmmwuu/providers/Microsoft.Network/virtualNetworks/workers-vnet\",\r\n \"name\": \"workers-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"application\": \"databricks\",\r\n \"databricks-environment\": \"true\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/databricks-rg-bricksTest-xlqwzuzwmmwuu/providers/Microsoft.Storage/storageAccounts/dbstoragefxjsrm5zj5eby\",\r\n \"name\": \"dbstoragefxjsrm5zj5eby\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"BlobStorage\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"application\": \"databricks\",\r\n \"databricks-environment\": \"true\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/1018group\",\r\n \"name\": \"1018group\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/1020 action group\",\r\n \"name\": \"1020 action group\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/AzSupportChat\",\r\n \"name\": \"AzSupportChat\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/Azure Case Submission\",\r\n \"name\": \"Azure Case Submission\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/Azure Chat Developers\",\r\n \"name\": \"Azure Chat Developers\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/ibiza group\",\r\n \"name\": \"ibiza group\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/ibiza log alert\",\r\n \"name\": \"ibiza log alert\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/Kaitlyn Test\",\r\n \"name\": \"Kaitlyn Test\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/newactiongroup\",\r\n \"name\": \"newactiongroup\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/test2 group\",\r\n \"name\": \"test2 group\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/test3 group\",\r\n \"name\": \"test3 group\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/test4\",\r\n \"name\": \"test4\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/webhookteset\",\r\n \"name\": \"webhookteset\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/activityLogAlerts/demotest\",\r\n \"name\": \"demotest\",\r\n \"type\": \"microsoft.insights/activityLogAlerts\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/activityLogAlerts/jefftest1018\",\r\n \"name\": \"jefftest1018\",\r\n \"type\": \"microsoft.insights/activityLogAlerts\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/activityLogAlerts/test1020new\",\r\n \"name\": \"test1020new\",\r\n \"type\": \"microsoft.insights/activityLogAlerts\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/activityLogAlerts/webhooktest\",\r\n \"name\": \"webhooktest\",\r\n \"type\": \"microsoft.insights/activityLogAlerts\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-EventHub-WestUS/providers/Microsoft.EventHub/namespaces/ibizastoragetesthub\",\r\n \"name\": \"ibizastoragetesthub\",\r\n \"type\": \"Microsoft.EventHub/namespaces\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"EventHub\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ServiceBus-WestEurope/providers/Microsoft.EventHub/namespaces/scopingTestEventHub\",\r\n \"name\": \"scopingTestEventHub\",\r\n \"type\": \"Microsoft.EventHub/namespaces\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"kind\": \"EventHub\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/rtportalvhds8f8pskmnndc8\",\r\n \"name\": \"rtportalvhds8f8pskmnndc8\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/azuresupporttest\",\r\n \"name\": \"azuresupporttest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/currentsupportrp\",\r\n \"name\": \"currentsupportrp\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/dfselfhelpcontent\",\r\n \"name\": \"dfselfhelpcontent\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/dfsesa\",\r\n \"name\": \"dfsesa\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/dfsupportrp\",\r\n \"name\": \"dfsupportrp\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/extensiontest1\",\r\n \"name\": \"extensiontest1\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/mxstore8\",\r\n \"name\": \"mxstore8\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/setest\",\r\n \"name\": \"setest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/supportextension2\",\r\n \"name\": \"supportextension2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dfsupportrpnew\",\r\n \"name\": \"dfsupportrpnew\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Web-WestUS/providers/Microsoft.ClassicNetwork/virtualNetworks/Default-Web-WestUS\",\r\n \"name\": \"Default-Web-WestUS\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultDataFactory/providers/Microsoft.DataFactory/dataFactories/FeedbackDocumentToBlob\",\r\n \"name\": \"FeedbackDocumentToBlob\",\r\n \"type\": \"Microsoft.DataFactory/dataFactories\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-ASE/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-ASE\",\r\n \"name\": \"DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-ASE\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"australiasoutheast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/defaultresourcegroup-ase/providers/Microsoft.OperationsManagement/solutions/SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-ASE)\",\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-ASE)\",\r\n \"type\": \"Microsoft.OperationsManagement/solutions\",\r\n \"location\": \"australiasoutheast\",\r\n \"plan\": {\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-ASE)\",\r\n \"promotionCode\": \"\",\r\n \"product\": \"OMSGallery/SecurityCenterFree\",\r\n \"publisher\": \"Microsoft\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-CIN/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-CIN\",\r\n \"name\": \"DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-CIN\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"centralindia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/defaultresourcegroup-cin/providers/Microsoft.OperationsManagement/solutions/SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-CIN)\",\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-CIN)\",\r\n \"type\": \"Microsoft.OperationsManagement/solutions\",\r\n \"location\": \"centralindia\",\r\n \"plan\": {\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-CIN)\",\r\n \"promotionCode\": \"\",\r\n \"product\": \"OMSGallery/SecurityCenterFree\",\r\n \"publisher\": \"Microsoft\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/defaultresourcegroup-cin/providers/Microsoft.OperationsManagement/solutions/ServiceDesk(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-CIN)\",\r\n \"name\": \"ServiceDesk(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-CIN)\",\r\n \"type\": \"Microsoft.OperationsManagement/solutions\",\r\n \"location\": \"centralindia\",\r\n \"plan\": {\r\n \"name\": \"ServiceDesk(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-CIN)\",\r\n \"promotionCode\": \"\",\r\n \"product\": \"OMSGallery/ServiceDesk\",\r\n \"publisher\": \"Microsoft\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-EUS\",\r\n \"name\": \"DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-EUS\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/defaultresourcegroup-eus/providers/Microsoft.OperationsManagement/solutions/SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-EUS)\",\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-EUS)\",\r\n \"type\": \"Microsoft.OperationsManagement/solutions\",\r\n \"location\": \"eastus\",\r\n \"plan\": {\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-EUS)\",\r\n \"promotionCode\": \"\",\r\n \"product\": \"OMSGallery/SecurityCenterFree\",\r\n \"publisher\": \"Microsoft\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/defaultresourcegroup-eus/providers/Microsoft.OperationsManagement/solutions/ServiceMap(defaultworkspace-76cb77fa-8b17-4eab-9493-b65dace99813-eus)\",\r\n \"name\": \"ServiceMap(defaultworkspace-76cb77fa-8b17-4eab-9493-b65dace99813-eus)\",\r\n \"type\": \"Microsoft.OperationsManagement/solutions\",\r\n \"location\": \"eastus\",\r\n \"plan\": {\r\n \"name\": \"ServiceMap(defaultworkspace-76cb77fa-8b17-4eab-9493-b65dace99813-eus)\",\r\n \"promotionCode\": \"\",\r\n \"product\": \"OMSGallery/ServiceMap\",\r\n \"publisher\": \"Microsoft\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-SCUS/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-SCUS\",\r\n \"name\": \"DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-SCUS\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/defaultresourcegroup-scus/providers/Microsoft.OperationsManagement/solutions/SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-SCUS)\",\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-SCUS)\",\r\n \"type\": \"Microsoft.OperationsManagement/solutions\",\r\n \"location\": \"southcentralus\",\r\n \"plan\": {\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-SCUS)\",\r\n \"promotionCode\": \"\",\r\n \"product\": \"OMSGallery/SecurityCenterFree\",\r\n \"publisher\": \"Microsoft\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DEFAULTRESOURCEGROUP-SEA/providers/Microsoft.Compute/disks/Lavanya-VM1_OsDisk_1_c7f39a99fcbb4a7896a9e2eb0489979a\",\r\n \"name\": \"Lavanya-VM1_OsDisk_1_c7f39a99fcbb4a7896a9e2eb0489979a\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-SEA/providers/Microsoft.Compute/virtualMachines/Lavanya-VM1\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-SEA/providers/Microsoft.Compute/virtualMachines/Lavanya-VM1\",\r\n \"name\": \"Lavanya-VM1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DEFAULTRESOURCEGROUP-SEA/providers/Microsoft.Compute/virtualMachines/Lavanya-VM1/extensions/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"name\": \"Lavanya-VM1/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DEFAULTRESOURCEGROUP-SEA/providers/Microsoft.Compute/virtualMachines/Lavanya-VM1/extensions/MicrosoftMonitoringAgent\",\r\n \"name\": \"Lavanya-VM1/MicrosoftMonitoringAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-SEA/providers/Microsoft.Network/networkInterfaces/lavanya-vm1322\",\r\n \"name\": \"lavanya-vm1322\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-SEA/providers/Microsoft.Network/networkSecurityGroups/Lavanya-VM1-nsg\",\r\n \"name\": \"Lavanya-VM1-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-SEA/providers/Microsoft.Network/publicIPAddresses/Lavanya-VM1-ip\",\r\n \"name\": \"Lavanya-VM1-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-SEA/providers/Microsoft.Network/virtualNetworks/DefaultResourceGroup-SEA-vnet\",\r\n \"name\": \"DefaultResourceGroup-SEA-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-SEA/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-SEA\",\r\n \"name\": \"DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-SEA\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/defaultresourcegroup-sea/providers/Microsoft.OperationsManagement/solutions/SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-SEA)\",\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-SEA)\",\r\n \"type\": \"Microsoft.OperationsManagement/solutions\",\r\n \"location\": \"southeastasia\",\r\n \"plan\": {\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-SEA)\",\r\n \"promotionCode\": \"\",\r\n \"product\": \"OMSGallery/SecurityCenterFree\",\r\n \"publisher\": \"Microsoft\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-SEA/providers/Microsoft.Storage/storageAccounts/defaultresourcegroups235\",\r\n \"name\": \"defaultresourcegroups235\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-WUS2/providers/microsoft.insights/activityLogAlerts/hannahtest\",\r\n \"name\": \"hannahtest\",\r\n \"type\": \"microsoft.insights/activityLogAlerts\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-WUS2/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-WUS2\",\r\n \"name\": \"DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-WUS2\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.OperationsManagement/solutions/SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-WUS2)\",\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-WUS2)\",\r\n \"type\": \"Microsoft.OperationsManagement/solutions\",\r\n \"location\": \"westus2\",\r\n \"plan\": {\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-WUS2)\",\r\n \"promotionCode\": \"\",\r\n \"product\": \"OMSGallery/SecurityCenterFree\",\r\n \"publisher\": \"Microsoft\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/df-deleteagent1/providers/microsoft.insights/autoscalesettings/auto-bf-central\",\r\n \"name\": \"auto-bf-central\",\r\n \"type\": \"microsoft.insights/autoscalesettings\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"$type\": \"Microsoft.WindowsAzure.Management.Common.Storage.CasePreservedDictionary, Microsoft.WindowsAzure.Management.Common.Storage\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/df-SupportRP/providers/microsoft.cdn/profiles/SupportExtensionCdnTest\",\r\n \"name\": \"SupportExtensionCdnTest\",\r\n \"type\": \"microsoft.cdn/profiles\",\r\n \"sku\": {\r\n \"name\": \"Standard_Akamai\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/df-SupportRP/providers/microsoft.cdn/profiles/SupportExtensionCdnTest/endpoints/supportextensioncdn\",\r\n \"name\": \"SupportExtensionCdnTest/supportextensioncdn\",\r\n \"type\": \"microsoft.cdn/profiles/endpoints\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ExtensionHostingGroup/providers/Microsoft.ClassicStorage/storageAccounts/dfexthosting\",\r\n \"name\": \"dfexthosting\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/exthosting/providers/Microsoft.KeyVault/vaults/dfexthostingKeyVault\",\r\n \"name\": \"dfexthostingKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/FlightExpressionTester/providers/Microsoft.Storage/storageAccounts/flightexpressio9030\",\r\n \"name\": \"flightexpressio9030\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/FlightExpressionTester/providers/Microsoft.Web/serverFarms/CentralUSPlan\",\r\n \"name\": \"CentralUSPlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"kind\": \"functionapp\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/microsoft.alertsManagement/smartDetectorAlertRules/Failure Anomalies - xinxintest0572166611\",\r\n \"name\": \"Failure Anomalies - xinxintest0572166611\",\r\n \"type\": \"microsoft.alertsManagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GANESHTEST/providers/Microsoft.Compute/disks/GaneshUbuntu_OsDisk_1_9751be51e2474c1cb9eee8a6f4890fe8\",\r\n \"name\": \"GaneshUbuntu_OsDisk_1_9751be51e2474c1cb9eee8a6f4890fe8\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.Compute/virtualMachines/GaneshUbuntu\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.Compute/virtualMachines/GaneshUbuntu\",\r\n \"name\": \"GaneshUbuntu\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GANESHTEST/providers/Microsoft.Compute/virtualMachines/GaneshUbuntu/extensions/OmsAgentForLinux\",\r\n \"name\": \"GaneshUbuntu/OmsAgentForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.Insights/components/xinxintest0572166611\",\r\n \"name\": \"xinxintest0572166611\",\r\n \"type\": \"Microsoft.Insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.KeyVault/vaults/xinxintest9832480637\",\r\n \"name\": \"xinxintest9832480637\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.MachineLearningServices/workspaces/xinxin-test\",\r\n \"name\": \"xinxin-test\",\r\n \"type\": \"Microsoft.MachineLearningServices/workspaces\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"location\": \"westus\",\r\n \"identity\": {\r\n \"principalId\": \"27c7457b-8fb8-44a8-9221-ca7804440e11\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.Network/networkInterfaces/ganeshubuntu922\",\r\n \"name\": \"ganeshubuntu922\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.Network/networkSecurityGroups/GaneshTest-vnet-default-NRMS\",\r\n \"name\": \"GaneshTest-vnet-default-NRMS\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Creator\": \"Automatically added by NRMS Azure Policy\",\r\n \"NRMS-Info\": \"http://aka.ms/nrms\",\r\n \"NRMS-Version\": \"2019-03-20\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.Network/networkSecurityGroups/GaneshUbuntu-nsg\",\r\n \"name\": \"GaneshUbuntu-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.Network/publicIPAddresses/GaneshUbuntu-ip\",\r\n \"name\": \"GaneshUbuntu-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.Network/virtualNetworks/GaneshTest-vnet\",\r\n \"name\": \"GaneshTest-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.SignalRService/SignalR/bertsignalr\",\r\n \"name\": \"bertsignalr\",\r\n \"type\": \"Microsoft.SignalRService/SignalR\",\r\n \"sku\": {\r\n \"name\": \"Free_F1\",\r\n \"tier\": \"Free\",\r\n \"size\": \"F1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.Storage/storageAccounts/ganeshtestdiag242\",\r\n \"name\": \"ganeshtestdiag242\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.Storage/storageAccounts/xinxintest7688503338\",\r\n \"name\": \"xinxintest7688503338\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/gans-ai-app/providers/microsoft.alertsManagement/smartDetectorAlertRules/Failure Anomalies - Gans-ai-app\",\r\n \"name\": \"Failure Anomalies - Gans-ai-app\",\r\n \"type\": \"microsoft.alertsManagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Gans-ai-app/providers/microsoft.insights/components/chat-ai-app\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Gans-ai-app/providers/microsoft.insights/components/chat-ai-app\",\r\n \"name\": \"chat-ai-app\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Gans-ai-app/providers/Microsoft.Portal/dashboards/baf29335-7647-421d-93d0-f374f565fcbc-dashboard\",\r\n \"name\": \"baf29335-7647-421d-93d0-f374f565fcbc-dashboard\",\r\n \"type\": \"Microsoft.Portal/dashboards\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"hidden-title\": \"chat-ai-app Dashboard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/gans-angular-ai/providers/microsoft.alertsManagement/smartDetectorAlertRules/Failure Anomalies - gans-angular-ai\",\r\n \"name\": \"Failure Anomalies - gans-angular-ai\",\r\n \"type\": \"microsoft.alertsManagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourcegroups/gans-angular-ai/providers/microsoft.insights/components/gans-angular-ai\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/gans-angular-ai/providers/microsoft.insights/components/gans-angular-ai\",\r\n \"name\": \"gans-angular-ai\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GANSUBUNTU/providers/Microsoft.Compute/disks/GansUbuntu_OsDisk_1_9013e7cec0b447a88f471765316f2aab\",\r\n \"name\": \"GansUbuntu_OsDisk_1_9013e7cec0b447a88f471765316f2aab\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/gansubuntu/providers/Microsoft.Compute/virtualMachines/GansUbuntu\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/gansubuntu/providers/Microsoft.Network/networkInterfaces/gansubuntu114\",\r\n \"name\": \"gansubuntu114\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/gansubuntu/providers/Microsoft.Network/networkSecurityGroups/GansUbuntu-nsg\",\r\n \"name\": \"GansUbuntu-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/gansubuntu/providers/Microsoft.Network/publicIPAddresses/GansUbuntu-ip\",\r\n \"name\": \"GansUbuntu-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n },\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/gansubuntu/providers/Microsoft.Network/virtualNetworks/gansubuntu-vnet\",\r\n \"name\": \"gansubuntu-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/gansubuntu/providers/Microsoft.Storage/storageAccounts/gansubuntudiag118\",\r\n \"name\": \"gansubuntudiag118\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/hcltest/providers/Microsoft.ClassicNetwork/virtualNetworks/hcltest\",\r\n \"name\": \"hcltest\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/hcltest/providers/Microsoft.ClassicNetwork/virtualNetworks/hcltest4377\",\r\n \"name\": \"hcltest4377\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/hcltest/providers/Microsoft.ClassicNetwork/virtualNetworks/hcltest5291\",\r\n \"name\": \"hcltest5291\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/hcltest/providers/Microsoft.ClassicStorage/storageAccounts/hcltest2758\",\r\n \"name\": \"hcltest2758\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/HCLTestRG/providers/Microsoft.Sql/servers/testsever\",\r\n \"name\": \"testsever\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/HCLTestRG/providers/Microsoft.Sql/servers/testsever/databases/HCLTestDB\",\r\n \"name\": \"testsever/HCLTestDB\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 50\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/HCLTestRG/providers/Microsoft.Sql/servers/testsever/databases/master\",\r\n \"name\": \"testsever/master\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"sku\": {\r\n \"name\": \"System\",\r\n \"tier\": \"System\",\r\n \"capacity\": 0\r\n },\r\n \"kind\": \"v12.0,system\",\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/HCLTestRG/providers/Microsoft.Sql/servers/testsever\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/hcltestrg/providers/Microsoft.Storage/storageAccounts/sqlvazy6hhakeauluu\",\r\n \"name\": \"sqlvazy6hhakeauluu\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/IbizaKVTestResourceGroup/providers/Microsoft.KeyVault/vaults/SupportExtensionHosting\",\r\n \"name\": \"SupportExtensionHosting\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/IbizaKVTestResourceGroup/providers/Microsoft.KeyVault/vaults/SupportExtensionKV\",\r\n \"name\": \"SupportExtensionKV\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/IoTResourceGroup/providers/Microsoft.Devices/IotHubs/IoTHubNamedTest\",\r\n \"name\": \"IoTHubNamedTest\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/LensCollectorResourceGroup/providers/Microsoft.KeyVault/vaults/cas-azureengsyscasesubmi\",\r\n \"name\": \"cas-azureengsyscasesubmi\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/MachineLearning/providers/Microsoft.MachineLearning/Workspaces/MLWorkspace\",\r\n \"name\": \"MLWorkspace\",\r\n \"type\": \"Microsoft.MachineLearning/Workspaces\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/MachineLearning/providers/Microsoft.Storage/storageAccounts/mlworkspacestorage3\",\r\n \"name\": \"mlworkspacestorage3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Myu-Test/providers/microsoft.alertsmanagement/smartDetectorAlertRules/Failure Anomalies - validationretoolrefactored\",\r\n \"name\": \"Failure Anomalies - validationretoolrefactored\",\r\n \"type\": \"microsoft.alertsmanagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Myu-Test/providers/Microsoft.DocumentDb/databaseAccounts/content-replication-poc\",\r\n \"name\": \"content-replication-poc\",\r\n \"type\": \"Microsoft.DocumentDb/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"defaultExperience\": \"Core (SQL)\",\r\n \"hidden-cosmos-mmspecial\": \"\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Myu-Test/providers/Microsoft.DocumentDb/databaseAccounts/content-replication-poc-airgap\",\r\n \"name\": \"content-replication-poc-airgap\",\r\n \"type\": \"Microsoft.DocumentDb/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"defaultExperience\": \"Core (SQL)\",\r\n \"hidden-cosmos-mmspecial\": \"\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Myu-Test/providers/microsoft.insights/components/validationretoolrefactored\",\r\n \"name\": \"validationretoolrefactored\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Myu-Test/providers/Microsoft.Storage/storageAccounts/contentrepstoragehigh\",\r\n \"name\": \"contentrepstoragehigh\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Myu-Test/providers/Microsoft.Storage/storageAccounts/contentrepstoragelow\",\r\n \"name\": \"contentrepstoragelow\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Myu-Test/providers/Microsoft.Web/sites/validationretoolrefactored\",\r\n \"name\": \"validationretoolrefactored\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/myu-test/providers/Microsoft.Web/sites/validationretoolrefactored/slots/validationretoolrefactored-deployment\",\r\n \"name\": \"validationretoolrefactored/validationretoolrefactored-deployment\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_australiaeast\",\r\n \"name\": \"NetworkWatcher_australiaeast\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_centralus\",\r\n \"name\": \"NetworkWatcher_centralus\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastasia\",\r\n \"name\": \"NetworkWatcher_eastasia\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus\",\r\n \"name\": \"NetworkWatcher_eastus\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_japaneast\",\r\n \"name\": \"NetworkWatcher_japaneast\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"japaneast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southcentralus\",\r\n \"name\": \"NetworkWatcher_southcentralus\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southeastasia\",\r\n \"name\": \"NetworkWatcher_southeastasia\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southindia\",\r\n \"name\": \"NetworkWatcher_southindia\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"southindia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus\",\r\n \"name\": \"NetworkWatcher_westcentralus\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus\",\r\n \"name\": \"NetworkWatcher_westus\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus2\",\r\n \"name\": \"NetworkWatcher_westus2\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/next-support-rp-test/providers/microsoft.insights/autoscalesettings/SupportRPWebRole-Production-next-support-rp-test-next-support-rp-test\",\r\n \"name\": \"SupportRPWebRole-Production-next-support-rp-test-next-support-rp-test\",\r\n \"type\": \"microsoft.insights/autoscalesettings\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/next-support-rp-test/providers/microsoft.classicCompute/domainNames/next-support-rp-test/slots/Production/roles/SupportRPWebRole\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/nikallik/providers/Microsoft.Network/trafficmanagerprofiles/nikalliktest\",\r\n \"name\": \"nikalliktest\",\r\n \"type\": \"Microsoft.Network/trafficmanagerprofiles\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Compute/virtualMachines/OrenRWin2K12VM\",\r\n \"name\": \"OrenRWin2K12VM\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ORENR_DEMO_RG/providers/Microsoft.Compute/virtualMachines/OrenRWin2K12VM/extensions/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"name\": \"OrenRWin2K12VM/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Compute/virtualMachines/OrenRWin2K12VM/extensions/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"name\": \"OrenRWin2K12VM/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ORENR_DEMO_RG/providers/Microsoft.Compute/virtualMachines/OrenRWin2K12VM/extensions/MicrosoftMonitoringAgent\",\r\n \"name\": \"OrenRWin2K12VM/MicrosoftMonitoringAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Network/networkInterfaces/demolinuxjasonz523\",\r\n \"name\": \"demolinuxjasonz523\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Network/networkInterfaces/demowinjasonz510\",\r\n \"name\": \"demowinjasonz510\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Network/networkInterfaces/orenrwin2k12vm74\",\r\n \"name\": \"orenrwin2k12vm74\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Network/networkSecurityGroups/DemoLinuxJasonZ\",\r\n \"name\": \"DemoLinuxJasonZ\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Network/networkSecurityGroups/DemoWinJasonZ\",\r\n \"name\": \"DemoWinJasonZ\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Network/networkSecurityGroups/OrenRWin2K12VM-nsg\",\r\n \"name\": \"OrenRWin2K12VM-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Network/publicIPAddresses/DemoLinuxJasonZ\",\r\n \"name\": \"DemoLinuxJasonZ\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Network/publicIPAddresses/DemoWinJasonZ\",\r\n \"name\": \"DemoWinJasonZ\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Network/publicIPAddresses/OrenRWin2K12VM-ip\",\r\n \"name\": \"OrenRWin2K12VM-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Network/virtualNetworks/OrenR_Demo_RG\",\r\n \"name\": \"OrenR_Demo_RG\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Storage/storageAccounts/orenrdemostg\",\r\n \"name\": \"orenrdemostg\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Storage/storageAccounts/orenrstgwestus\",\r\n \"name\": \"orenrstgwestus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/RoutetableGroup/providers/Microsoft.Network/routeTables/Routetable-v-aarzh\",\r\n \"name\": \"Routetable-v-aarzh\",\r\n \"type\": \"Microsoft.Network/routeTables\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/microsoft.insights/activityLogAlerts/New Advisor recommendations\",\r\n \"name\": \"New Advisor recommendations\",\r\n \"type\": \"microsoft.insights/activityLogAlerts\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/microsoft.insights/alertrules/CPUHigh ServicePlan\",\r\n \"name\": \"CPUHigh ServicePlan\",\r\n \"type\": \"microsoft.insights/alertrules\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourcegroups/scotthit-test/providers/Microsoft.Web/serverfarms/ServicePlan\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/microsoft.insights/alertrules/ForbiddenRequests AshuTestWebApp\",\r\n \"name\": \"ForbiddenRequests AshuTestWebApp\",\r\n \"type\": \"microsoft.insights/alertrules\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Web/sites/AshuTestWebApp\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/microsoft.insights/alertrules/ForbiddenRequests scotthit-test-app\",\r\n \"name\": \"ForbiddenRequests scotthit-test-app\",\r\n \"type\": \"microsoft.insights/alertrules\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Web/sites/scotthit-test-app\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/microsoft.insights/alertrules/LongHttpQueue ServicePlan\",\r\n \"name\": \"LongHttpQueue ServicePlan\",\r\n \"type\": \"microsoft.insights/alertrules\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourcegroups/scotthit-test/providers/Microsoft.Web/serverfarms/ServicePlan\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/microsoft.insights/alertrules/ServerErrors AshuTestWebApp\",\r\n \"name\": \"ServerErrors AshuTestWebApp\",\r\n \"type\": \"microsoft.insights/alertrules\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Web/sites/AshuTestWebApp\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/microsoft.insights/alertrules/ServerErrors scotthit-test-app\",\r\n \"name\": \"ServerErrors scotthit-test-app\",\r\n \"type\": \"microsoft.insights/alertrules\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Web/sites/scotthit-test-app\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/microsoft.insights/autoscalesettings/ServicePlan-scotthit-test\",\r\n \"name\": \"ServicePlan-scotthit-test\",\r\n \"type\": \"microsoft.insights/autoscalesettings\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourcegroups/scotthit-test/providers/Microsoft.Web/serverfarms/ServicePlan\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Sql/servers/scotthit-testdbserver\",\r\n \"name\": \"scotthit-testdbserver\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Sql/servers/scotthit-testdbserver/databases/master\",\r\n \"name\": \"scotthit-testdbserver/master\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 5\r\n },\r\n \"kind\": \"v12.0,system\",\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Sql/servers/scotthit-testdbserver\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Sql/servers/scotthit-testdbserver/databases/scotthit-testdb\",\r\n \"name\": \"scotthit-testdbserver/scotthit-testdb\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 5\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Sql/servers/scotthit-testdbserver/databases/scotthit-testdb_2019-03-02T22-34Z\",\r\n \"name\": \"scotthit-testdbserver/scotthit-testdb_2019-03-02T22-34Z\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 5\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Sql/servers/svenkatserver\",\r\n \"name\": \"svenkatserver\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Sql/servers/svenkatserver/databases/master\",\r\n \"name\": \"svenkatserver/master\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"sku\": {\r\n \"name\": \"System\",\r\n \"tier\": \"System\",\r\n \"capacity\": 0\r\n },\r\n \"kind\": \"v12.0,system\",\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Sql/servers/svenkatserver\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Sql/servers/svenkatserver/databases/stdescriptions\",\r\n \"name\": \"svenkatserver/stdescriptions\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Storage/storageAccounts/sqlvawqan56dvc43wk\",\r\n \"name\": \"sqlvawqan56dvc43wk\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ScottHitScaleset-RG/providers/Microsoft.Compute/virtualMachineScaleSets/scotthith\",\r\n \"name\": \"scotthith\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ScottHitScaleset-RG/providers/Microsoft.Network/loadBalancers/scotthithlb\",\r\n \"name\": \"scotthithlb\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ScottHitScaleset-RG/providers/Microsoft.Network/networkSecurityGroups/SCOTTHITSCALESET-RG-NSG\",\r\n \"name\": \"SCOTTHITSCALESET-RG-NSG\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ScottHitScaleset-RG/providers/Microsoft.Network/publicIPAddresses/scotthithpip\",\r\n \"name\": \"scotthithpip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ScottHitScaleset-RG/providers/Microsoft.Network/virtualNetworks/scotthithvnet\",\r\n \"name\": \"scotthithvnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthitscaleset-rg/providers/Microsoft.Storage/storageAccounts/2pm7ywrqoa5zmscotthithsa\",\r\n \"name\": \"2pm7ywrqoa5zmscotthithsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ScottHitScaleset-RG/providers/Microsoft.Storage/storageAccounts/4ha7jskcn7if2scotthithsa\",\r\n \"name\": \"4ha7jskcn7if2scotthithsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ScottHitScaleset-RG/providers/Microsoft.Storage/storageAccounts/7pru2z2wfyci6scotthithsa\",\r\n \"name\": \"7pru2z2wfyci6scotthithsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ScottHitScaleset-RG/providers/Microsoft.Storage/storageAccounts/kvngadf4zp45cscotthithsa\",\r\n \"name\": \"kvngadf4zp45cscotthithsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ScottHitScaleset-RG/providers/Microsoft.Storage/storageAccounts/wfywgy7r35cycscotthithsa\",\r\n \"name\": \"wfywgy7r35cycscotthithsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/762247eastus\",\r\n \"name\": \"762247eastus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp/providers/Microsoft.Storage/storageAccounts/a5d9685987b1b41c5ab3e5c4\",\r\n \"name\": \"a5d9685987b1b41c5ab3e5c4\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp/providers/Microsoft.Storage/storageAccounts/a9e099bf5ebc64a1ea834931\",\r\n \"name\": \"a9e099bf5ebc64a1ea834931\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp/providers/Microsoft.Storage/storageAccounts/documentdbmover8e62\",\r\n \"name\": \"documentdbmover8e62\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp/providers/Microsoft.Web/serverFarms/CentralUSPlan\",\r\n \"name\": \"CentralUSPlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"kind\": \"functionapp\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp/providers/Microsoft.Web/serverFarms/FunctionApp20180321085841Plan\",\r\n \"name\": \"FunctionApp20180321085841Plan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"Y1\",\r\n \"tier\": \"Dynamic\",\r\n \"size\": \"Y1\",\r\n \"family\": \"Y\",\r\n \"capacity\": 0\r\n },\r\n \"kind\": \"functionapp\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/microsoft.alertsManagement/smartDetectorAlertRules/Failure Anomalies - selfhelpwebtool-dev\",\r\n \"name\": \"Failure Anomalies - selfhelpwebtool-dev\",\r\n \"type\": \"microsoft.alertsManagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/microsoft.insights/components/selfhelpwebtool-dev\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/microsoft.alertsManagement/smartDetectorAlertRules/Failure Anomalies - selfhelpwebtool-elixirstaging\",\r\n \"name\": \"Failure Anomalies - selfhelpwebtool-elixirstaging\",\r\n \"type\": \"microsoft.alertsManagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/Microsoft.ClassicNetwork/virtualNetworks/selfhelp-tool\",\r\n \"name\": \"selfhelp-tool\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/Microsoft.ClassicStorage/storageAccounts/selfhelptool1999\",\r\n \"name\": \"selfhelptool1999\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/Microsoft.CognitiveServices/accounts/Validator-SpellCheck\",\r\n \"name\": \"Validator-SpellCheck\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"Bing.SpellCheck.v7\",\r\n \"location\": \"global\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/microsoft.insights/components/selfhelpwebtool-dev\",\r\n \"name\": \"selfhelpwebtool-dev\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/microsoft.insights/components/selfhelpwebtool-elixirstaging\",\r\n \"name\": \"selfhelpwebtool-elixirstaging\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/Microsoft.Network/trafficmanagerprofiles/selfhelp\",\r\n \"name\": \"selfhelp\",\r\n \"type\": \"Microsoft.Network/trafficmanagerprofiles\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/Microsoft.Storage/storageAccounts/dfexthostingstorage\",\r\n \"name\": \"dfexthostingstorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/Microsoft.Web/sites/selfhelpwebtool-dev\",\r\n \"name\": \"selfhelpwebtool-dev\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/Microsoft.Web/sites/selfhelpwebtool-elixirstaging\",\r\n \"name\": \"selfhelpwebtool-elixirstaging\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool-prod/providers/Microsoft.KeyVault/vaults/selfhelpKeyVault\",\r\n \"name\": \"selfhelpKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool-prod/providers/Microsoft.Web/sites/selfhelp-webtool\",\r\n \"name\": \"selfhelp-webtool\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-related:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AlexTestVNetRG/providers/Microsoft.Web/serverfarms/ServicePlan\": \"empty\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool-prod/providers/Microsoft.Web/sites/selfhelp-webtool/slots/selfhelp-webtool-deploy\",\r\n \"name\": \"selfhelp-webtool/selfhelp-webtool-deploy\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelpcoverage/providers/Microsoft.Storage/storageAccounts/selfhelpcoveragestorage\",\r\n \"name\": \"selfhelpcoveragestorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelpreminderfunction/providers/microsoft.alertsManagement/smartDetectorAlertRules/Failure Anomalies - selfhelpreminderfunction\",\r\n \"name\": \"Failure Anomalies - selfhelpreminderfunction\",\r\n \"type\": \"microsoft.alertsManagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelpreminderfunction/providers/microsoft.insights/components/selfhelpreminderfunction\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelpreminderfunction/providers/microsoft.insights/components/selfhelpreminderfunction\",\r\n \"name\": \"selfhelpreminderfunction\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelpreminderfunction/providers/Microsoft.Web/sites/selfhelpreminderfunction\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelpreminderfunction/providers/Microsoft.Portal/dashboards/15052975-a42b-4da4-919f-f99597d2f8ee-dashboard\",\r\n \"name\": \"15052975-a42b-4da4-919f-f99597d2f8ee-dashboard\",\r\n \"type\": \"Microsoft.Portal/dashboards\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"hidden-title\": \"selfhelpreminderfunction Dashboard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelpreminderfunction/providers/Microsoft.Storage/storageAccounts/selfhelpreminde9ee4\",\r\n \"name\": \"selfhelpreminde9ee4\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelpreminderfunction/providers/Microsoft.Web/serverFarms/CentralUSPlan\",\r\n \"name\": \"CentralUSPlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"kind\": \"functionapp\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/SEStorageKeysGroup/providers/Microsoft.KeyVault/vaults/AKVManagedSA\",\r\n \"name\": \"AKVManagedSA\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/SEStorageKeysGroup/providers/Microsoft.KeyVault/vaults/SEStorageKeysDF\",\r\n \"name\": \"SEStorageKeysDF\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/SEStorageKeysGroup/providers/Microsoft.Storage/storageAccounts/smstoracc\",\r\n \"name\": \"smstoracc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/simon-test-resources/providers/Microsoft.ApiManagement/service/simontestapimanagementservice\",\r\n \"name\": \"simontestapimanagementservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/simon-test-resources/providers/Microsoft.DataBoxEdge/DataBoxEdgeDevices/simon-test-stack-edge\",\r\n \"name\": \"simon-test-stack-edge\",\r\n \"type\": \"Microsoft.DataBoxEdge/DataBoxEdgeDevices\",\r\n \"sku\": {\r\n \"name\": \"Gateway\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/simon-test-resources/providers/Microsoft.DevTestLab/labs/simondevtestlab\",\r\n \"name\": \"simondevtestlab\",\r\n \"type\": \"Microsoft.DevTestLab/labs\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/simon-test-resources/providers/Microsoft.KeyVault/vaults/simondevtestlab6143\",\r\n \"name\": \"simondevtestlab6143\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-DevTestLabs-LabUId\": \"80b8a1a2-c8f5-4d0f-8f46-2708af573aa3\",\r\n \"CreatedBy\": \"DevTestLabs\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/simon-test-resources/providers/Microsoft.Network/virtualNetworks/Dtlsimondevtestlab\",\r\n \"name\": \"Dtlsimondevtestlab\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-DevTestLabs-LabUId\": \"80b8a1a2-c8f5-4d0f-8f46-2708af573aa3\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/simon-test-resources/providers/Microsoft.Storage/storageAccounts/asimondevtestlab4010\",\r\n \"name\": \"asimondevtestlab4010\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-DevTestLabs-LabUId\": \"80b8a1a2-c8f5-4d0f-8f46-2708af573aa3\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/sischleg/providers/microsoft.alertsManagement/smartDetectorAlertRules/Failure Anomalies - simonbottestokobmo\",\r\n \"name\": \"Failure Anomalies - simonbottestokobmo\",\r\n \"type\": \"microsoft.alertsManagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/sischleg/providers/microsoft.insights/components/simonbottestokobmo\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/sischleg/providers/Microsoft.EventHub/namespaces/selfhelpkusto\",\r\n \"name\": \"selfhelpkusto\",\r\n \"type\": \"Microsoft.EventHub/namespaces\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 5\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/sischleg/providers/microsoft.insights/components/simonbottestokobmo\",\r\n \"name\": \"simonbottestokobmo\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/sischleg/providers/Microsoft.BotService/botServices/simonbottest\": \"Resource\",\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/sischleg/providers/Microsoft.Web/sites/simonbottest\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/sischleg/providers/Microsoft.Kusto/clusters/selfhelpkustocluster\",\r\n \"name\": \"selfhelpkustocluster\",\r\n \"type\": \"Microsoft.Kusto/clusters\",\r\n \"sku\": {\r\n \"name\": \"D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/sischleg/providers/Microsoft.Kusto/clusters/testkustotable\",\r\n \"name\": \"testkustotable\",\r\n \"type\": \"Microsoft.Kusto/clusters\",\r\n \"sku\": {\r\n \"name\": \"D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/sischleg/providers/Microsoft.Storage/storageAccounts/simonbottesta1e1\",\r\n \"name\": \"simonbottesta1e1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/smathewTestRG/providers/Microsoft.Logic/workflows/TestLogicApp\",\r\n \"name\": \"TestLogicApp\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/smathewTestRG/providers/Microsoft.Logic/workflows/TestLogicApp-TSG\",\r\n \"name\": \"TestLogicApp-TSG\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/smathewTestRG/providers/Microsoft.Web/connections/dynamicscrmonline\",\r\n \"name\": \"dynamicscrmonline\",\r\n \"type\": \"Microsoft.Web/connections\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/smathewTestRG/providers/Microsoft.Web/connections/kusto\",\r\n \"name\": \"kusto\",\r\n \"type\": \"Microsoft.Web/connections\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/softdeletekeyvault/providers/Microsoft.KeyVault/vaults/softdeletekeyvault\",\r\n \"name\": \"softdeletekeyvault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/SQLVMTest/providers/Microsoft.ClassicNetwork/virtualNetworks/SQLVMTest\",\r\n \"name\": \"SQLVMTest\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/SQLVMTest/providers/Microsoft.Network/networkInterfaces/sqlwindowstest316\",\r\n \"name\": \"sqlwindowstest316\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/SQLVMTest/providers/Microsoft.Network/networkSecurityGroups/SqlWindowsTest\",\r\n \"name\": \"SqlWindowsTest\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/SQLVMTest/providers/Microsoft.Network/publicIPAddresses/SqlWindowsTest\",\r\n \"name\": \"SqlWindowsTest\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/SQLVMTest/providers/Microsoft.Network/virtualNetworks/SQLVMTest\",\r\n \"name\": \"SQLVMTest\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/SQLVMTest/providers/Microsoft.Storage/storageAccounts/sqlvmtest8696\",\r\n \"name\": \"sqlvmtest8696\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/StorageScopingQuestions/providers/Microsoft.Storage/storageAccounts/moderningscopinggeneral\",\r\n \"name\": \"moderningscopinggeneral\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/StorageScopingQuestions/providers/Microsoft.StorSimple/managers/scopingtestStorsimple\",\r\n \"name\": \"scopingtestStorsimple\",\r\n \"type\": \"Microsoft.StorSimple/managers\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/streamanalytics/providers/Microsoft.StreamAnalytics/streamingjobs/streamanalytics\",\r\n \"name\": \"streamanalytics\",\r\n \"type\": \"Microsoft.StreamAnalytics/streamingjobs\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/microsoft.alertsManagement/smartDetectorAlertRules/Failure Anomalies - support-docs\",\r\n \"name\": \"Failure Anomalies - support-docs\",\r\n \"type\": \"microsoft.alertsManagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/microsoft.insights/components/support-docs\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/microsoft.alertsManagement/smartDetectorAlertRules/Failure Anomalies - support-docs-ppe\",\r\n \"name\": \"Failure Anomalies - support-docs-ppe\",\r\n \"type\": \"microsoft.alertsManagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/microsoft.insights/components/support-docs-ppe\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/microsoft.insights/actiongroups/Application Insights Smart Detection\",\r\n \"name\": \"Application Insights Smart Detection\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/microsoft.insights/components/support-docs\",\r\n \"name\": \"support-docs\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/microsoft.insights/components/support-docs-ppe\",\r\n \"name\": \"support-docs-ppe\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/Microsoft.Portal/dashboards/4bd6eb93-14fe-4cb5-addf-e452ea3187a0-dashboard\",\r\n \"name\": \"4bd6eb93-14fe-4cb5-addf-e452ea3187a0-dashboard\",\r\n \"type\": \"Microsoft.Portal/dashboards\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"hidden-title\": \"support-docs Dashboard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/Microsoft.Portal/dashboards/a6516939-e588-4e92-9675-b90c6608ff97-dashboard\",\r\n \"name\": \"a6516939-e588-4e92-9675-b90c6608ff97-dashboard\",\r\n \"type\": \"Microsoft.Portal/dashboards\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"hidden-title\": \"support-docs-ppe Dashboard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/Microsoft.Web/serverFarms/support-docsPlan\",\r\n \"name\": \"support-docsPlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/Microsoft.Web/sites/support-docs\",\r\n \"name\": \"support-docs\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"centralus\",\r\n \"identity\": {\r\n \"principalId\": \"e370fd6e-6932-48b4-a940-2954d4d582d0\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"tags\": {\r\n \"hidden-related:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/Microsoft.Web/serverfarms/support-docsPlan\": \"empty\",\r\n \"hidden-related:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/Microsoft.Web/sites/support-docs/diagnostics/chatRestorationId\": \"b8439da2-964d-4d61-aac9-292bde7c3268\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/Microsoft.Web/sites/support-docs-ppe\",\r\n \"name\": \"support-docs-ppe\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"hidden-related:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/Microsoft.Web/serverfarms/support-docsPlan\": \"empty\",\r\n \"hidden-related:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/Microsoft.Web/sites/support-docs/diagnostics/chatRestorationId\": \"b8439da2-964d-4d61-aac9-292bde7c3268\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/svenkatResourceGroup/providers/Microsoft.Search/searchServices/stpanelsearch\",\r\n \"name\": \"stpanelsearch\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/TestCircuite/providers/Microsoft.Network/expressRouteCircuits/TestCircuite\",\r\n \"name\": \"TestCircuite\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"sku\": {\r\n \"name\": \"Standard_UnlimitedData\",\r\n \"tier\": \"Standard\",\r\n \"family\": \"UnlimitedData\"\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Testing/providers/microsoft.insights/alertrules/ForbiddenRequests AE-TestWebApps-West US\",\r\n \"name\": \"ForbiddenRequests AE-TestWebApps-West US\",\r\n \"type\": \"microsoft.insights/alertrules\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Testing/providers/Microsoft.Web/sites/AE-TestWebApps\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Testing/providers/microsoft.insights/alertrules/ServerErrors AE-TestWebApps-West US\",\r\n \"name\": \"ServerErrors AE-TestWebApps-West US\",\r\n \"type\": \"microsoft.insights/alertrules\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Testing/providers/Microsoft.Web/sites/AE-TestWebApps\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/TestLinuxWebApp1/providers/Microsoft.Web/serverFarms/ServicePlanea4692c1-b80b\",\r\n \"name\": \"ServicePlanea4692c1-b80b\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"linux\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/TestLogicApp/providers/Microsoft.Web/connections/office365\",\r\n \"name\": \"office365\",\r\n \"type\": \"Microsoft.Web/connections\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/TestLogicApp/providers/Microsoft.Web/connections/sql\",\r\n \"name\": \"sql\",\r\n \"type\": \"Microsoft.Web/connections\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/vheshartest/providers/Microsoft.DocumentDb/databaseAccounts/vheshartest\",\r\n \"name\": \"vheshartest\",\r\n \"type\": \"Microsoft.DocumentDb/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"defaultExperience\": \"DocumentDB\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/viclDataLakeTest/providers/Microsoft.DataLakeAnalytics/accounts/vicldatalake\",\r\n \"name\": \"vicldatalake\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/viclDataLakeTest/providers/Microsoft.DataLakeStore/accounts/vicldatalakeadls\",\r\n \"name\": \"vicldatalakeadls\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Compute/virtualMachines/scotthit-vm2\",\r\n \"name\": \"scotthit-vm2\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"DRI\": \"amals@microsoft.com\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTEST/providers/Microsoft.Compute/virtualMachines/scotthit-vm2/extensions/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"name\": \"scotthit-vm2/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Compute/virtualMachines/scotthit-vm2/extensions/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"name\": \"scotthit-vm2/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTEST/providers/Microsoft.Compute/virtualMachines/scotthit-vm2/extensions/MicrosoftMonitoringAgent\",\r\n \"name\": \"scotthit-vm2/MicrosoftMonitoringAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTEST/providers/Microsoft.Compute/virtualMachines/scotthit-vm2/extensions/Monitoring\",\r\n \"name\": \"scotthit-vm2/Monitoring\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Network/networkInterfaces/scotthit-vm284\",\r\n \"name\": \"scotthit-vm284\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Network/networkInterfaces/testvm452\",\r\n \"name\": \"testvm452\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Network/networkSecurityGroups/scotthit-vm2\",\r\n \"name\": \"scotthit-vm2\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Network/networkSecurityGroups/TestVM\",\r\n \"name\": \"TestVM\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Network/networkSecurityGroups/VMTest-default-NRMS\",\r\n \"name\": \"VMTest-default-NRMS\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Creator\": \"Automatically added by NRMS Azure Policy\",\r\n \"NRMS-Info\": \"http://aka.ms/nrms\",\r\n \"NRMS-Version\": \"2019-03-20\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Network/publicIPAddresses/scotthit-vm2\",\r\n \"name\": \"scotthit-vm2\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Network/publicIPAddresses/test_ipaddress\",\r\n \"name\": \"test_ipaddress\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Network/publicIPAddresses/TestVM\",\r\n \"name\": \"TestVM\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Network/virtualNetworks/VMTest\",\r\n \"name\": \"VMTest\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/vmtest/providers/Microsoft.Storage/storageAccounts/vmtest1936\",\r\n \"name\": \"vmtest1936\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/vso-rg-40011d6/providers/Microsoft.VSOnline/plans/vso-plan-westus2\",\r\n \"name\": \"vso-plan-westus2\",\r\n \"type\": \"Microsoft.VSOnline/plans\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/vso-rg-a267084/providers/Microsoft.VSOnline/plans/vso-plan-westus2\",\r\n \"name\": \"vso-plan-westus2\",\r\n \"type\": \"Microsoft.VSOnline/plans\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/wihuatest/providers/Microsoft.KeyVault/vaults/wihua\",\r\n \"name\": \"wihua\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/wihuatest/providers/Microsoft.Storage/storageAccounts/publicreadonlytest\",\r\n \"name\": \"publicreadonlytest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"BlobStorage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/wihuatest/providers/Microsoft.Storage/storageAccounts/storageaccountwihuaa14d\",\r\n \"name\": \"storageaccountwihuaa14d\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/wihuatest/providers/Microsoft.Web/serverFarms/ASP-wihuatest-96fb\",\r\n \"name\": \"ASP-wihuatest-96fb\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"Y1\",\r\n \"tier\": \"Dynamic\",\r\n \"size\": \"Y1\",\r\n \"family\": \"Y\",\r\n \"capacity\": 0\r\n },\r\n \"kind\": \"functionapp\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/wihuatest/providers/Microsoft.Web/sites/cdbtest\",\r\n \"name\": \"cdbtest\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"functionapp\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/WilsonTestGroup/providers/Microsoft.Storage/storageAccounts/test212312test\",\r\n \"name\": \"test212312test\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/WinSQLTest/providers/Microsoft.ClassicNetwork/virtualNetworks/WinSQLTest\",\r\n \"name\": \"WinSQLTest\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/microsoft.alertsManagement/smartDetectorAlertRules/Failure Anomalies - BotHandle_Test22fur434\",\r\n \"name\": \"Failure Anomalies - BotHandle_Test22fur434\",\r\n \"type\": \"microsoft.alertsManagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.AppPlatform/Spring/dfsds\",\r\n \"name\": \"dfsds\",\r\n \"type\": \"Microsoft.AppPlatform/Spring\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.BotService/botServices/BotHandle_Test22\",\r\n \"name\": \"BotHandle_Test22\",\r\n \"type\": \"Microsoft.BotService/botServices\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"sdk\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AARONNEWGROUP/providers/Microsoft.Compute/disks/ibiza-vm_OsDisk_1_108c8b1619e949529c67583013b383a4\",\r\n \"name\": \"ibiza-vm_OsDisk_1_108c8b1619e949529c67583013b383a4\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"location\": \"southindia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AARONNEWGROUP/providers/Microsoft.Compute/disks/Testing_disk1_db14fc3bbb344f169bc8e7aeb41bc081\",\r\n \"name\": \"Testing_disk1_db14fc3bbb344f169bc8e7aeb41bc081\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Compute/virtualMachines/Testing\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AARONNEWGROUP/providers/Microsoft.Compute/disks/VMNotification_OsDisk_1_159ec7beb94a4cc8b0fd42c1dcdfa961\",\r\n \"name\": \"VMNotification_OsDisk_1_159ec7beb94a4cc8b0fd42c1dcdfa961\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Compute/virtualMachines/Testing\",\r\n \"name\": \"Testing\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Compute/virtualMachines/Testing/extensions/BMCCtmAgent\",\r\n \"name\": \"Testing/BMCCtmAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AARONNEWGROUP/providers/Microsoft.Compute/virtualMachines/Testing/extensions/OmsAgentForLinux\",\r\n \"name\": \"Testing/OmsAgentForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/microsoft.insights/components/BotHandle_Test22fur434\",\r\n \"name\": \"BotHandle_Test22fur434\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.BotService/botServices/BotHandle_Test22\": \"Resource\",\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Web/sites/bothandletest22\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Network/networkInterfaces/testing290\",\r\n \"name\": \"testing290\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Network/networkSecurityGroups/Testing-nsg\",\r\n \"name\": \"Testing-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Network/publicIPAddresses/Testing-ip\",\r\n \"name\": \"Testing-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Network/virtualNetworks/aaronnewgroup-vnet\",\r\n \"name\": \"aaronnewgroup-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Sql/servers/qmstesting\",\r\n \"name\": \"qmstesting\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"australiaeast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Sql/servers/qmstesting/databases/master\",\r\n \"name\": \"qmstesting/master\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"sku\": {\r\n \"name\": \"System\",\r\n \"tier\": \"System\",\r\n \"capacity\": 0\r\n },\r\n \"kind\": \"v12.0,system\",\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Sql/servers/qmstesting\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Storage/storageAccounts/aaronnewgroupdiag\",\r\n \"name\": \"aaronnewgroupdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Web/sites/bothandletest22\",\r\n \"name\": \"bothandletest22\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.AppPlatform/Spring/springtest\",\r\n \"name\": \"springtest\",\r\n \"type\": \"Microsoft.AppPlatform/Spring\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.BingMaps/mapApis/BingMapsTest\",\r\n \"name\": \"BingMapsTest\",\r\n \"type\": \"Microsoft.BingMaps/mapApis\",\r\n \"location\": \"westus\",\r\n \"plan\": {\r\n \"name\": \"public1\",\r\n \"promotionCode\": \"\",\r\n \"product\": \"mapapis\",\r\n \"publisher\": \"bingmaps\"\r\n },\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AARONTEST/providers/Microsoft.Compute/disks/TestSubscription_disk1_3be4162706d9460fb7aece2642a719cf\",\r\n \"name\": \"TestSubscription_disk1_3be4162706d9460fb7aece2642a719cf\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Compute/virtualMachines/TestSubscription\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Compute/virtualMachines/TestSubscription\",\r\n \"name\": \"TestSubscription\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AARONTEST/providers/Microsoft.Compute/virtualMachines/TestSubscription/extensions/OmsAgentForLinux\",\r\n \"name\": \"TestSubscription/OmsAgentForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Databricks/workspaces/bricksTest\",\r\n \"name\": \"bricksTest\",\r\n \"type\": \"Microsoft.Databricks/workspaces\",\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Maps/accounts/MapsTestASEP\",\r\n \"name\": \"MapsTestASEP\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"sku\": {\r\n \"name\": \"s1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"global\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Network/networkInterfaces/testsubscription52\",\r\n \"name\": \"testsubscription52\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Network/networkSecurityGroups/TestSubscription-nsg\",\r\n \"name\": \"TestSubscription-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Network/publicIPAddresses/TestSubscription-ip\",\r\n \"name\": \"TestSubscription-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Network/virtualNetworks/AaronTest-vnet\",\r\n \"name\": \"AaronTest-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.PowerBI/workspaceCollections/hcltestpowerbi\",\r\n \"name\": \"hcltestpowerbi\",\r\n \"type\": \"Microsoft.PowerBI/workspaceCollections\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Storage/storageAccounts/aarontestdiag737\",\r\n \"name\": \"aarontestdiag737\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Web/certificates/37E9CED2A6E746C96AE86B921CAF902D8AEA82F4#AaronTest-WestUSwebspace\",\r\n \"name\": \"37E9CED2A6E746C96AE86B921CAF902D8AEA82F4#AaronTest-WestUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Web/certificates/A448339CF032F5FD576825992FD718D167E22D58#AaronTest-CentralUSwebspace\",\r\n \"name\": \"A448339CF032F5FD576825992FD718D167E22D58#AaronTest-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AcisExtensionsResourceGroup/providers/Microsoft.KeyVault/vaults/AllowedAcisExtensions\",\r\n \"name\": \"AllowedAcisExtensions\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AcisExtensionsResourceGroup/providers/Microsoft.KeyVault/vaults/UXAutomationTest\",\r\n \"name\": \"UXAutomationTest\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ACSExtension/providers/Microsoft.DataFactory/factories/FeedbackDataFacv2\",\r\n \"name\": \"FeedbackDataFacv2\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"location\": \"eastus\",\r\n \"identity\": {\r\n \"principalId\": \"a6ee88ee-4b20-4543-853e-323f74c5ff65\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ACSExtension/providers/Microsoft.DBforMySQL/servers/hcltestserver1\",\r\n \"name\": \"hcltestserver1\",\r\n \"type\": \"Microsoft.DBforMySQL/servers\",\r\n \"sku\": {\r\n \"name\": \"MYSQLB50\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 50\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ACSExtension/providers/Microsoft.KeyVault/vaults/AllowedACSExtension\",\r\n \"name\": \"AllowedACSExtension\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ACSExtension/providers/Microsoft.Network/networkInterfaces/hcltestvm294\",\r\n \"name\": \"hcltestvm294\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ACSExtension/providers/Microsoft.Network/networkSecurityGroups/HCLTestVM-nsg\",\r\n \"name\": \"HCLTestVM-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ACSExtension/providers/Microsoft.Network/publicIPAddresses/HCLTestVM-ip\",\r\n \"name\": \"HCLTestVM-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ACSExtension/providers/Microsoft.Network/virtualNetworks/ACSExtension-vnet\",\r\n \"name\": \"ACSExtension-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ACSExtension/providers/Microsoft.Storage/storageAccounts/acsextensiondiag821\",\r\n \"name\": \"acsextensiondiag821\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ACSExtension/providers/Microsoft.Storage/storageAccounts/acsextensiondisks257\",\r\n \"name\": \"acsextensiondisks257\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Akanksha-test/providers/Microsoft.Network/applicationGateways/AppGWTest\",\r\n \"name\": \"AppGWTest\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Akanksha-test/providers/Microsoft.Network/publicIPAddresses/AppGWTest-ip\",\r\n \"name\": \"AppGWTest-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n },\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Akanksha-test/providers/Microsoft.Network/virtualNetworks/Akanksha-test\",\r\n \"name\": \"Akanksha-test\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AKTest/providers/microsoft.cdn/profiles/HCLTestCDN\",\r\n \"name\": \"HCLTestCDN\",\r\n \"type\": \"microsoft.cdn/profiles\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AKTest/providers/microsoft.cdn/profiles/HCLTestCDN/endpoints/HCLTest\",\r\n \"name\": \"HCLTestCDN/HCLTest\",\r\n \"type\": \"microsoft.cdn/profiles/endpoints\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AKTest/providers/Microsoft.ClassicNetwork/virtualNetworks/AKTest\",\r\n \"name\": \"AKTest\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AKTest/providers/Microsoft.Logic/integrationAccounts/HCLTest2\",\r\n \"name\": \"HCLTest2\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AKTest/providers/Microsoft.Logic/integrationAccounts/HCLTestIA2\",\r\n \"name\": \"HCLTestIA2\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AKTest/providers/Microsoft.Logic/integrationAccounts/HCLTestIC\",\r\n \"name\": \"HCLTestIC\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AKTest/providers/Microsoft.Network/dnszones/hcltest.contoso.com\",\r\n \"name\": \"hcltest.contoso.com\",\r\n \"type\": \"Microsoft.Network/dnszones\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AKTest/providers/Microsoft.Storage/storageAccounts/akteststorage\",\r\n \"name\": \"akteststorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/alex-test-ml/providers/Microsoft.Storage/storageAccounts/alextestmlstorage\",\r\n \"name\": \"alextestmlstorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"mlteamAccount\": \"AlexTest\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Alex_test/providers/Microsoft.ClassicStorage/storageAccounts/alexzhangteststorage\",\r\n \"name\": \"alexzhangteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AlexTestVNetRG/providers/Microsoft.Network/privateDnsZones/test-private.com\",\r\n \"name\": \"test-private.com\",\r\n \"type\": \"Microsoft.Network/privateDnsZones\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AlexTestVNetRG/providers/Microsoft.Web/serverFarms/ServicePlan\",\r\n \"name\": \"ServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"P2\",\r\n \"tier\": \"Premium\",\r\n \"size\": \"P2\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/alexzhangtestgroup/providers/Microsoft.KeyVault/vaults/alexzhangTest\",\r\n \"name\": \"alexzhangTest\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/alexzhangtestgroup/providers/Microsoft.KeyVault/vaults/alexzhangtesttwo\",\r\n \"name\": \"alexzhangtesttwo\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/amsheteresourcegroup2/providers/Microsoft.Storage/storageAccounts/amshetestorage2\",\r\n \"name\": \"amshetestorage2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/amshetetestresourcegroup/providers/Microsoft.KeyVault/vaults/amshetetestkv\",\r\n \"name\": \"amshetetestkv\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/amshetetestresourcegroup/providers/Microsoft.Web/serverFarms/myFirstAzureWebappPlan\",\r\n \"name\": \"myFirstAzureWebappPlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"P2\",\r\n \"tier\": \"Premium\",\r\n \"size\": \"P2\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/amshetetestresourcegroup/providers/Microsoft.Web/sites/asmc-ppe-amshete\",\r\n \"name\": \"asmc-ppe-amshete\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/analysisservices/providers/Microsoft.AnalysisServices/servers/analysisservices\",\r\n \"name\": \"analysisservices\",\r\n \"type\": \"Microsoft.AnalysisServices/servers\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Automation/automationAccounts/AshuAutomationAccount\",\r\n \"name\": \"AshuAutomationAccount\",\r\n \"type\": \"Microsoft.Automation/automationAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Automation/automationAccounts/AshuAutomationAccount/runbooks/Get-AzureVMTutorial\",\r\n \"name\": \"AshuAutomationAccount/Get-AzureVMTutorial\",\r\n \"type\": \"Microsoft.Automation/automationAccounts/runbooks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Compute/virtualMachines/GangaTFSVM\",\r\n \"name\": \"GangaTFSVM\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Compute/virtualMachines/GangaTFSVM/extensions/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"name\": \"GangaTFSVM/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-GROUP/providers/Microsoft.Compute/virtualMachines/GangaTFSVM/extensions/MicrosoftMonitoringAgent\",\r\n \"name\": \"GangaTFSVM/MicrosoftMonitoringAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Network/networkInterfaces/demo1linuxvmv230\",\r\n \"name\": \"demo1linuxvmv230\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Network/networkInterfaces/gangatfsvm330\",\r\n \"name\": \"gangatfsvm330\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Network/networkSecurityGroups/ARM-VM-Group-default-NRMS\",\r\n \"name\": \"ARM-VM-Group-default-NRMS\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Creator\": \"Automatically added by NRMS Azure Policy\",\r\n \"NRMS-Info\": \"http://aka.ms/nrms\",\r\n \"NRMS-Version\": \"2019-03-20\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Network/networkSecurityGroups/demo1LinuxVMv2\",\r\n \"name\": \"demo1LinuxVMv2\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Network/networkSecurityGroups/GangaTFSVM\",\r\n \"name\": \"GangaTFSVM\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Network/publicIPAddresses/demo1LinuxVMv2\",\r\n \"name\": \"demo1LinuxVMv2\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Network/publicIPAddresses/GangaTFSVM\",\r\n \"name\": \"GangaTFSVM\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Network/trafficmanagerprofiles/tmtesttast\",\r\n \"name\": \"tmtesttast\",\r\n \"type\": \"Microsoft.Network/trafficmanagerprofiles\",\r\n \"location\": \"global\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Network/virtualNetworks/ARM-VM-Group\",\r\n \"name\": \"ARM-VM-Group\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Storage/storageAccounts/armvmgroup5257\",\r\n \"name\": \"armvmgroup5257\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ashuredhat/providers/microsoft.cdn/profiles/TestCDNStandard\",\r\n \"name\": \"TestCDNStandard\",\r\n \"type\": \"microsoft.cdn/profiles\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ashuredhat/providers/Microsoft.Compute/virtualMachines/AshuRedHat\",\r\n \"name\": \"AshuRedHat\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ashuredhat/providers/Microsoft.Compute/virtualMachines/AshuRedHat/extensions/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"name\": \"AshuRedHat/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ASHUREDHAT/providers/Microsoft.Compute/virtualMachines/AshuRedHat/extensions/OmsAgentForLinux\",\r\n \"name\": \"AshuRedHat/OmsAgentForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ashuredhat/providers/Microsoft.Network/networkInterfaces/ashuredhat792\",\r\n \"name\": \"ashuredhat792\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ashuredhat/providers/Microsoft.Network/networkSecurityGroups/AshuRedHat-nsg\",\r\n \"name\": \"AshuRedHat-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ashuredhat/providers/Microsoft.Network/publicIPAddresses/AshuRedHat-ip\",\r\n \"name\": \"AshuRedHat-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ashuredhat/providers/Microsoft.Network/virtualNetworks/ashuredhat-vnet\",\r\n \"name\": \"ashuredhat-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ashuredhat/providers/Microsoft.Storage/storageAccounts/ashuredhat841\",\r\n \"name\": \"ashuredhat841\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/asmc/providers/Microsoft.KeyVault/vaults/MissionControlKV\",\r\n \"name\": \"MissionControlKV\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/asmc/providers/Microsoft.Storage/storageAccounts/feedback\",\r\n \"name\": \"feedback\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/azalextest/providers/Microsoft.Storage/storageAccounts/azalextest\",\r\n \"name\": \"azalextest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/azsupportrp-vmss-dev/providers/Microsoft.Storage/storageAccounts/azsupportrpvmssdev\",\r\n \"name\": \"azsupportrpvmssdev\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"BlobStorage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AzSupportRPTestAppGateway/providers/Microsoft.Network/publicIPAddresses/AzSupportRPTest-ip\",\r\n \"name\": \"AzSupportRPTest-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/azurecustomerassist/providers/Microsoft.ClassicStorage/storageAccounts/azurecustomerassist\",\r\n \"name\": \"azurecustomerassist\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AzureFunctions-WestUS/providers/Microsoft.Storage/storageAccounts/azurefunctions82331d27\",\r\n \"name\": \"azurefunctions82331d27\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Bernardm_713/providers/Microsoft.Storage/storageAccounts/bernardm7139fa0\",\r\n \"name\": \"bernardm7139fa0\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Bernardmtest2/providers/Microsoft.Storage/storageAccounts/yolkatest\",\r\n \"name\": \"yolkatest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bewon_test/providers/microsoft.media/mediaservices/bewontestmediaservice\",\r\n \"name\": \"bewontestmediaservice\",\r\n \"type\": \"microsoft.media/mediaservices\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bewon_test/providers/Microsoft.Media/mediaservices/bewontestmediaservice/streamingEndpoints/default\",\r\n \"name\": \"bewontestmediaservice/default\",\r\n \"type\": \"Microsoft.Media/mediaservices/streamingEndpoints\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bhavintest/providers/Microsoft.Batch/batchAccounts/casesubmissiontest1\",\r\n \"name\": \"casesubmissiontest1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/BHAVINTEST/providers/Microsoft.Compute/disks/visualstudio_OsDisk_1_11e5480c4f424a02b8d20b53409854d1\",\r\n \"name\": \"visualstudio_OsDisk_1_11e5480c4f424a02b8d20b53409854d1\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bhavintest/providers/Microsoft.Compute/virtualMachines/visualstudio\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bhavintest/providers/Microsoft.Compute/virtualMachines/visualstudio\",\r\n \"name\": \"visualstudio\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bhavintest/providers/Microsoft.Compute/virtualMachines/visualstudio/extensions/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"name\": \"visualstudio/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/BHAVINTEST/providers/Microsoft.Compute/virtualMachines/visualstudio/extensions/MicrosoftMonitoringAgent\",\r\n \"name\": \"visualstudio/MicrosoftMonitoringAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bhavintest/providers/Microsoft.Network/networkInterfaces/visualstudio40\",\r\n \"name\": \"visualstudio40\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bhavintest/providers/Microsoft.Network/networkSecurityGroups/visualstudio-nsg\",\r\n \"name\": \"visualstudio-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bhavintest/providers/Microsoft.Network/publicIPAddresses/visualstudio-ip\",\r\n \"name\": \"visualstudio-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n },\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bhavintest/providers/Microsoft.Network/virtualNetworks/bhavintest-vnet\",\r\n \"name\": \"bhavintest-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bhavintest/providers/Microsoft.Storage/storageAccounts/bhavintestdiag\",\r\n \"name\": \"bhavintestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/buildoutautomation-cosmos/providers/Microsoft.DocumentDB/databaseAccounts/azsupportrp-chat-test\",\r\n \"name\": \"azsupportrp-chat-test\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"defaultExperience\": \"DocumentDB\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/buildoutautomation-dns/providers/Microsoft.Network/dnszones/azsupport-test.msftcloudes.com\",\r\n \"name\": \"azsupport-test.msftcloudes.com\",\r\n \"type\": \"Microsoft.Network/dnszones\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/buildoutautomation-ip/providers/Microsoft.Network/publicIPAddresses/PortalExtAPI-Test\",\r\n \"name\": \"PortalExtAPI-Test\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/buildoutautomation-kv/providers/Microsoft.KeyVault/vaults/AzureSupportRP-Test\",\r\n \"name\": \"AzureSupportRP-Test\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/buildoutautomation-msi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzureSupportRP_Cluster_Test\",\r\n \"name\": \"AzureSupportRP_Cluster_Test\",\r\n \"type\": \"Microsoft.ManagedIdentity/userAssignedIdentities\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/buildoutautomation-sb/providers/Microsoft.ServiceBus/namespaces/AzSupport-Tickets-Test\",\r\n \"name\": \"AzSupport-Tickets-Test\",\r\n \"type\": \"Microsoft.ServiceBus/namespaces\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/buildoutautomation-sb/providers/Microsoft.ServiceBus/namespaces/supportrp-test\",\r\n \"name\": \"supportrp-test\",\r\n \"type\": \"Microsoft.ServiceBus/namespaces\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/buildoutautomation-storage/providers/Microsoft.Storage/storageAccounts/azsupporttempticketstest\",\r\n \"name\": \"azsupporttempticketstest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/buildoutautomation-tm/providers/Microsoft.Network/dnszones/azsupport-test.msftcloudes.com\",\r\n \"name\": \"azsupport-test.msftcloudes.com\",\r\n \"type\": \"Microsoft.Network/dnszones\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/buildoutautomation-tm/providers/Microsoft.Network/trafficmanagerprofiles/azsupportextapi-test\",\r\n \"name\": \"azsupportextapi-test\",\r\n \"type\": \"Microsoft.Network/trafficmanagerprofiles\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CaseSubmissionPwd/providers/Microsoft.KeyVault/vaults/CaseSubmissionPwd\",\r\n \"name\": \"CaseSubmissionPwd\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CaseSubmissionTestContainerRegistry/providers/Microsoft.ContainerRegistry/registries/CaseSubmissionTest\",\r\n \"name\": \"CaseSubmissionTest\",\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"sku\": {\r\n \"name\": \"Managed_Basic\",\r\n \"tier\": \"Managed\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CaseSubmissionUIAutomation/providers/Microsoft.Compute/virtualMachines/CaseSubTestVM\",\r\n \"name\": \"CaseSubTestVM\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CASESUBMISSIONUIAUTOMATION/providers/Microsoft.Compute/virtualMachines/CaseSubTestVM/extensions/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"name\": \"CaseSubTestVM/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CASESUBMISSIONUIAUTOMATION/providers/Microsoft.Compute/virtualMachines/CaseSubTestVM/extensions/MicrosoftMonitoringAgent\",\r\n \"name\": \"CaseSubTestVM/MicrosoftMonitoringAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CaseSubmissionUIAutomation/providers/Microsoft.Network/networkInterfaces/casesubtestvm922\",\r\n \"name\": \"casesubtestvm922\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CaseSubmissionUIAutomation/providers/Microsoft.Network/networkSecurityGroups/CaseSubTestVM-nsg\",\r\n \"name\": \"CaseSubTestVM-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CaseSubmissionUIAutomation/providers/Microsoft.Network/publicIPAddresses/CaseSubTestVM-ip\",\r\n \"name\": \"CaseSubTestVM-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n },\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CaseSubmissionUIAutomation/providers/Microsoft.Network/virtualNetworks/testsupportext-westcentral-vnet\",\r\n \"name\": \"testsupportext-westcentral-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CaseSubmissionUIAutomation/providers/Microsoft.Storage/storageAccounts/testsupportextwestcen405\",\r\n \"name\": \"testsupportextwestcen405\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CaseSubmissionUIAutomation/providers/Microsoft.Storage/storageAccounts/testsupportextwestcen548\",\r\n \"name\": \"testsupportextwestcen548\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CHRIS_DEMO_GROUP/providers/Microsoft.Compute/disks/ChrisCanaryOne_OsDisk_1_bc22f1e44d25435187253753185498ed\",\r\n \"name\": \"ChrisCanaryOne_OsDisk_1_bc22f1e44d25435187253753185498ed\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"sku\": {\r\n \"name\": \"StandardSSD_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Compute/virtualMachines/ChrisCanaryOne\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Demo\": \"Chris\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Compute/virtualMachines/ChrisCanaryOne\",\r\n \"name\": \"ChrisCanaryOne\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Demo\": \"Chris\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Compute/virtualMachines/ChrisCanaryOne/extensions/AzureNetworkWatcherExtension\",\r\n \"name\": \"ChrisCanaryOne/AzureNetworkWatcherExtension\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Compute/virtualMachines/ChrisCanaryOne/extensions/DependencyAgentWindows\",\r\n \"name\": \"ChrisCanaryOne/DependencyAgentWindows\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Demo\": \"Chris\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Compute/virtualMachines/ChrisCanaryOne/extensions/IaaSAntimalware\",\r\n \"name\": \"ChrisCanaryOne/IaaSAntimalware\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Compute/virtualMachines/ChrisCanaryOne/extensions/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"name\": \"ChrisCanaryOne/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Compute/virtualMachines/ChrisCanaryOne/extensions/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"name\": \"ChrisCanaryOne/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Demo\": \"Chris\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Compute/virtualMachines/ChrisCanaryOne/extensions/MMAExtension\",\r\n \"name\": \"ChrisCanaryOne/MMAExtension\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Demo\": \"Chris\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Network/networkInterfaces/chriscanaryone156\",\r\n \"name\": \"chriscanaryone156\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Demo\": \"Chris\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Network/networkSecurityGroups/ChrisCanaryOne-nsg\",\r\n \"name\": \"ChrisCanaryOne-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Demo\": \"Chris\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Network/publicIPAddresses/ChrisCanaryOne-ip\",\r\n \"name\": \"ChrisCanaryOne-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Demo\": \"Chris\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Network/virtualNetworks/Chris_Demo_Group-vnet\",\r\n \"name\": \"Chris_Demo_Group-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Demo\": \"Chris\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Storage/storageAccounts/chrisdemogroupdiag\",\r\n \"name\": \"chrisdemogroupdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Demo\": \"Chris\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CisService-6LZHY5HYMKG7BBUT44RYK6QWHTQHK4X24NC2JQX5TNKLOPECOCQA-West-US/providers/microsoft.storsimple/managers/yanyanTestPhysical\",\r\n \"name\": \"yanyanTestPhysical\",\r\n \"type\": \"microsoft.storsimple/managers\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg\",\r\n \"name\": \"rg-cleanupservice-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg2\",\r\n \"name\": \"rg-cleanupservice-nsg2\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg3\",\r\n \"name\": \"rg-cleanupservice-nsg3\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg4\",\r\n \"name\": \"rg-cleanupservice-nsg4\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southindia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg5\",\r\n \"name\": \"rg-cleanupservice-nsg5\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg6\",\r\n \"name\": \"rg-cleanupservice-nsg6\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg7\",\r\n \"name\": \"rg-cleanupservice-nsg7\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cleanupservice/providers/Microsoft.Web/serverFarms/clnbf53c305-db8a-44fd-bb6c-dd3532fcff01\",\r\n \"name\": \"clnbf53c305-db8a-44fd-bb6c-dd3532fcff01\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cloud-shell-storage-eastus/providers/Microsoft.Storage/storageAccounts/cs210037ffe93d3617c\",\r\n \"name\": \"cs210037ffe93d3617c\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cloud-shell-storage-eastus/providers/Microsoft.Storage/storageAccounts/cs276cb77fa8b17x4eabx949\",\r\n \"name\": \"cs276cb77fa8b17x4eabx949\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cloud-shell-storage-southcentralus/providers/Microsoft.Storage/storageAccounts/cs7100320004569dd95\",\r\n \"name\": \"cs7100320004569dd95\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cloud-shell-storage-southcentralus/providers/Microsoft.Storage/storageAccounts/cs776cb77fa8b17x4eabx949\",\r\n \"name\": \"cs776cb77fa8b17x4eabx949\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs4100300008f718302\",\r\n \"name\": \"cs4100300008f718302\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs4100320005245dd51\",\r\n \"name\": \"cs4100320005245dd51\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs4100320005c86316a\",\r\n \"name\": \"cs4100320005c86316a\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs4100320006712685e\",\r\n \"name\": \"cs4100320006712685e\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs410037ffead397ef0\",\r\n \"name\": \"cs410037ffead397ef0\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs41003bffda79eede1\",\r\n \"name\": \"cs41003bffda79eede1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs476cb77fa8b17x4eabx949\",\r\n \"name\": \"cs476cb77fa8b17x4eabx949\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CognitiveServiceResourceGroup/providers/Microsoft.CognitiveServices/accounts/Face-ResourceType\",\r\n \"name\": \"Face-ResourceType\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"sku\": {\r\n \"name\": \"F0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CognitiveServiceResourceGroup/providers/Microsoft.CognitiveServices/accounts/LUIS-ResourceType\",\r\n \"name\": \"LUIS-ResourceType\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"sku\": {\r\n \"name\": \"F0\"\r\n },\r\n \"kind\": \"LUIS\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CognitiveServiceResourceGroup/providers/Microsoft.CognitiveServices/accounts/Speech-ResourceType\",\r\n \"name\": \"Speech-ResourceType\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"sku\": {\r\n \"name\": \"F0\"\r\n },\r\n \"kind\": \"SpeechServices\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CONNORTESTRG/providers/Microsoft.Compute/disks/coward-vm_OsDisk_1_ad959705d6e346bd900582e21a44cf98\",\r\n \"name\": \"coward-vm_OsDisk_1_ad959705d6e346bd900582e21a44cf98\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ConnorTestRG/providers/Microsoft.Compute/virtualMachines/coward-vm\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ConnorTestRG/providers/Microsoft.Compute/virtualMachines/coward-vm\",\r\n \"name\": \"coward-vm\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ConnorTestRG/providers/Microsoft.Compute/virtualMachines/coward-vm/extensions/DependencyAgentWindows\",\r\n \"name\": \"coward-vm/DependencyAgentWindows\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CONNORTESTRG/providers/Microsoft.Compute/virtualMachines/coward-vm/extensions/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"name\": \"coward-vm/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CONNORTESTRG/providers/Microsoft.Compute/virtualMachines/coward-vm/extensions/MicrosoftMonitoringAgent\",\r\n \"name\": \"coward-vm/MicrosoftMonitoringAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ConnorTestRG/providers/Microsoft.Network/networkInterfaces/coward-vm384\",\r\n \"name\": \"coward-vm384\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ConnorTestRG/providers/Microsoft.Network/networkSecurityGroups/coward-vm-nsg\",\r\n \"name\": \"coward-vm-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ConnorTestRG/providers/Microsoft.Network/publicIPAddresses/coward-vm-ip\",\r\n \"name\": \"coward-vm-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ConnorTestRG/providers/Microsoft.Network/virtualNetworks/ConnorTestRG-vnet\",\r\n \"name\": \"ConnorTestRG-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ConnorTestRG/providers/Microsoft.Storage/storageAccounts/connortestrgdiag\",\r\n \"name\": \"connortestrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ContosoResourceGroup/providers/Microsoft.KeyVault/vaults/ContosoKVTest\",\r\n \"name\": \"ContosoKVTest\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CSSCEDemo/providers/Microsoft.Network/networkInterfaces/cedemonobootvm724\",\r\n \"name\": \"cedemonobootvm724\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CSSCEDemo/providers/Microsoft.Network/networkSecurityGroups/CEDemoNoBootVM-nsg\",\r\n \"name\": \"CEDemoNoBootVM-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CSSCEDemo/providers/Microsoft.Network/publicIPAddresses/CEDemoNoBootVM-ip\",\r\n \"name\": \"CEDemoNoBootVM-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CSSCEDemo/providers/Microsoft.Network/virtualNetworks/CSSCEDemo-vnet\",\r\n \"name\": \"CSSCEDemo-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CSSCEDemo/providers/Microsoft.Storage/storageAccounts/csscedemo748\",\r\n \"name\": \"csscedemo748\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-MSSolveListener/providers/Microsoft.ClassicNetwork/virtualNetworks/AshuLinux\",\r\n \"name\": \"AshuLinux\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-MSSolveListener/providers/Microsoft.ClassicStorage/storageAccounts/ashulinux\",\r\n \"name\": \"ashulinux\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-MSSolveListener/providers/Microsoft.Compute/virtualMachines/AshuLinuxARM\",\r\n \"name\": \"AshuLinuxARM\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-MSSolveListener/providers/Microsoft.Compute/virtualMachines/AshuLinuxARM/extensions/AzureNetworkWatcherExtension\",\r\n \"name\": \"AshuLinuxARM/AzureNetworkWatcherExtension\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-MSSolveListener/providers/Microsoft.Compute/virtualMachines/AshuLinuxARM/extensions/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"name\": \"AshuLinuxARM/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CURRENT-MSSOLVELISTENER/providers/Microsoft.Compute/virtualMachines/AshuLinuxARM/extensions/OmsAgentForLinux\",\r\n \"name\": \"AshuLinuxARM/OmsAgentForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-MSSolveListener/providers/Microsoft.Network/networkInterfaces/ashulinuxarm736\",\r\n \"name\": \"ashulinuxarm736\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-MSSolveListener/providers/Microsoft.Network/networkSecurityGroups/AshuLinuxARM\",\r\n \"name\": \"AshuLinuxARM\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-MSSolveListener/providers/Microsoft.Network/publicIPAddresses/AshuLinuxARM\",\r\n \"name\": \"AshuLinuxARM\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-MSSolveListener/providers/Microsoft.Network/virtualNetworks/current-MSSolveListener\",\r\n \"name\": \"current-MSSolveListener\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-MSSolveListener/providers/Microsoft.Storage/storageAccounts/currentmssolveliste4191\",\r\n \"name\": \"currentmssolveliste4191\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-support-extension-test/providers/Microsoft.Cache/Redis/secache\",\r\n \"name\": \"secache\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-support-extension-test/providers/Microsoft.RecoveryServices/vaults/test-rsv\",\r\n \"name\": \"test-rsv\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/databricks-rg-bricksTest-xlqwzuzwmmwuu/providers/Microsoft.Network/networkSecurityGroups/workers-sg\",\r\n \"name\": \"workers-sg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"application\": \"databricks\",\r\n \"databricks-environment\": \"true\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/databricks-rg-bricksTest-xlqwzuzwmmwuu/providers/Microsoft.Network/virtualNetworks/workers-vnet\",\r\n \"name\": \"workers-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"application\": \"databricks\",\r\n \"databricks-environment\": \"true\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/databricks-rg-bricksTest-xlqwzuzwmmwuu/providers/Microsoft.Storage/storageAccounts/dbstoragefxjsrm5zj5eby\",\r\n \"name\": \"dbstoragefxjsrm5zj5eby\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"BlobStorage\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"application\": \"databricks\",\r\n \"databricks-environment\": \"true\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/1018group\",\r\n \"name\": \"1018group\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/1020 action group\",\r\n \"name\": \"1020 action group\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/AzSupportChat\",\r\n \"name\": \"AzSupportChat\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/Azure Case Submission\",\r\n \"name\": \"Azure Case Submission\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/Azure Chat Developers\",\r\n \"name\": \"Azure Chat Developers\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/ibiza group\",\r\n \"name\": \"ibiza group\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/ibiza log alert\",\r\n \"name\": \"ibiza log alert\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/Kaitlyn Test\",\r\n \"name\": \"Kaitlyn Test\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/newactiongroup\",\r\n \"name\": \"newactiongroup\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/test2 group\",\r\n \"name\": \"test2 group\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/test3 group\",\r\n \"name\": \"test3 group\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/test4\",\r\n \"name\": \"test4\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/webhookteset\",\r\n \"name\": \"webhookteset\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/activityLogAlerts/demotest\",\r\n \"name\": \"demotest\",\r\n \"type\": \"microsoft.insights/activityLogAlerts\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/activityLogAlerts/jefftest1018\",\r\n \"name\": \"jefftest1018\",\r\n \"type\": \"microsoft.insights/activityLogAlerts\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/activityLogAlerts/test1020new\",\r\n \"name\": \"test1020new\",\r\n \"type\": \"microsoft.insights/activityLogAlerts\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/activityLogAlerts/webhooktest\",\r\n \"name\": \"webhooktest\",\r\n \"type\": \"microsoft.insights/activityLogAlerts\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-EventHub-WestUS/providers/Microsoft.EventHub/namespaces/ibizastoragetesthub\",\r\n \"name\": \"ibizastoragetesthub\",\r\n \"type\": \"Microsoft.EventHub/namespaces\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"EventHub\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ServiceBus-WestEurope/providers/Microsoft.EventHub/namespaces/scopingTestEventHub\",\r\n \"name\": \"scopingTestEventHub\",\r\n \"type\": \"Microsoft.EventHub/namespaces\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"kind\": \"EventHub\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/rtportalvhds8f8pskmnndc8\",\r\n \"name\": \"rtportalvhds8f8pskmnndc8\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/azuresupporttest\",\r\n \"name\": \"azuresupporttest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/currentsupportrp\",\r\n \"name\": \"currentsupportrp\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/dfselfhelpcontent\",\r\n \"name\": \"dfselfhelpcontent\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/dfsesa\",\r\n \"name\": \"dfsesa\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/dfsupportrp\",\r\n \"name\": \"dfsupportrp\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/extensiontest1\",\r\n \"name\": \"extensiontest1\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/mxstore8\",\r\n \"name\": \"mxstore8\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/setest\",\r\n \"name\": \"setest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/supportextension2\",\r\n \"name\": \"supportextension2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dfsupportrpnew\",\r\n \"name\": \"dfsupportrpnew\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Web-WestUS/providers/Microsoft.ClassicNetwork/virtualNetworks/Default-Web-WestUS\",\r\n \"name\": \"Default-Web-WestUS\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultDataFactory/providers/Microsoft.DataFactory/dataFactories/FeedbackDocumentToBlob\",\r\n \"name\": \"FeedbackDocumentToBlob\",\r\n \"type\": \"Microsoft.DataFactory/dataFactories\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-ASE/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-ASE\",\r\n \"name\": \"DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-ASE\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"australiasoutheast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/defaultresourcegroup-ase/providers/Microsoft.OperationsManagement/solutions/SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-ASE)\",\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-ASE)\",\r\n \"type\": \"Microsoft.OperationsManagement/solutions\",\r\n \"location\": \"australiasoutheast\",\r\n \"plan\": {\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-ASE)\",\r\n \"promotionCode\": \"\",\r\n \"product\": \"OMSGallery/SecurityCenterFree\",\r\n \"publisher\": \"Microsoft\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-CIN/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-CIN\",\r\n \"name\": \"DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-CIN\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"centralindia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/defaultresourcegroup-cin/providers/Microsoft.OperationsManagement/solutions/SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-CIN)\",\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-CIN)\",\r\n \"type\": \"Microsoft.OperationsManagement/solutions\",\r\n \"location\": \"centralindia\",\r\n \"plan\": {\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-CIN)\",\r\n \"promotionCode\": \"\",\r\n \"product\": \"OMSGallery/SecurityCenterFree\",\r\n \"publisher\": \"Microsoft\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/defaultresourcegroup-cin/providers/Microsoft.OperationsManagement/solutions/ServiceDesk(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-CIN)\",\r\n \"name\": \"ServiceDesk(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-CIN)\",\r\n \"type\": \"Microsoft.OperationsManagement/solutions\",\r\n \"location\": \"centralindia\",\r\n \"plan\": {\r\n \"name\": \"ServiceDesk(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-CIN)\",\r\n \"promotionCode\": \"\",\r\n \"product\": \"OMSGallery/ServiceDesk\",\r\n \"publisher\": \"Microsoft\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-EUS\",\r\n \"name\": \"DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-EUS\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/defaultresourcegroup-eus/providers/Microsoft.OperationsManagement/solutions/SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-EUS)\",\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-EUS)\",\r\n \"type\": \"Microsoft.OperationsManagement/solutions\",\r\n \"location\": \"eastus\",\r\n \"plan\": {\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-EUS)\",\r\n \"promotionCode\": \"\",\r\n \"product\": \"OMSGallery/SecurityCenterFree\",\r\n \"publisher\": \"Microsoft\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/defaultresourcegroup-eus/providers/Microsoft.OperationsManagement/solutions/ServiceMap(defaultworkspace-76cb77fa-8b17-4eab-9493-b65dace99813-eus)\",\r\n \"name\": \"ServiceMap(defaultworkspace-76cb77fa-8b17-4eab-9493-b65dace99813-eus)\",\r\n \"type\": \"Microsoft.OperationsManagement/solutions\",\r\n \"location\": \"eastus\",\r\n \"plan\": {\r\n \"name\": \"ServiceMap(defaultworkspace-76cb77fa-8b17-4eab-9493-b65dace99813-eus)\",\r\n \"promotionCode\": \"\",\r\n \"product\": \"OMSGallery/ServiceMap\",\r\n \"publisher\": \"Microsoft\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-SCUS/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-SCUS\",\r\n \"name\": \"DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-SCUS\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/defaultresourcegroup-scus/providers/Microsoft.OperationsManagement/solutions/SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-SCUS)\",\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-SCUS)\",\r\n \"type\": \"Microsoft.OperationsManagement/solutions\",\r\n \"location\": \"southcentralus\",\r\n \"plan\": {\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-SCUS)\",\r\n \"promotionCode\": \"\",\r\n \"product\": \"OMSGallery/SecurityCenterFree\",\r\n \"publisher\": \"Microsoft\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DEFAULTRESOURCEGROUP-SEA/providers/Microsoft.Compute/disks/Lavanya-VM1_OsDisk_1_c7f39a99fcbb4a7896a9e2eb0489979a\",\r\n \"name\": \"Lavanya-VM1_OsDisk_1_c7f39a99fcbb4a7896a9e2eb0489979a\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-SEA/providers/Microsoft.Compute/virtualMachines/Lavanya-VM1\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-SEA/providers/Microsoft.Compute/virtualMachines/Lavanya-VM1\",\r\n \"name\": \"Lavanya-VM1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DEFAULTRESOURCEGROUP-SEA/providers/Microsoft.Compute/virtualMachines/Lavanya-VM1/extensions/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"name\": \"Lavanya-VM1/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DEFAULTRESOURCEGROUP-SEA/providers/Microsoft.Compute/virtualMachines/Lavanya-VM1/extensions/MicrosoftMonitoringAgent\",\r\n \"name\": \"Lavanya-VM1/MicrosoftMonitoringAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-SEA/providers/Microsoft.Network/networkInterfaces/lavanya-vm1322\",\r\n \"name\": \"lavanya-vm1322\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-SEA/providers/Microsoft.Network/networkSecurityGroups/Lavanya-VM1-nsg\",\r\n \"name\": \"Lavanya-VM1-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-SEA/providers/Microsoft.Network/publicIPAddresses/Lavanya-VM1-ip\",\r\n \"name\": \"Lavanya-VM1-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-SEA/providers/Microsoft.Network/virtualNetworks/DefaultResourceGroup-SEA-vnet\",\r\n \"name\": \"DefaultResourceGroup-SEA-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-SEA/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-SEA\",\r\n \"name\": \"DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-SEA\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/defaultresourcegroup-sea/providers/Microsoft.OperationsManagement/solutions/SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-SEA)\",\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-SEA)\",\r\n \"type\": \"Microsoft.OperationsManagement/solutions\",\r\n \"location\": \"southeastasia\",\r\n \"plan\": {\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-SEA)\",\r\n \"promotionCode\": \"\",\r\n \"product\": \"OMSGallery/SecurityCenterFree\",\r\n \"publisher\": \"Microsoft\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-SEA/providers/Microsoft.Storage/storageAccounts/defaultresourcegroups235\",\r\n \"name\": \"defaultresourcegroups235\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-WUS2/providers/microsoft.insights/activityLogAlerts/hannahtest\",\r\n \"name\": \"hannahtest\",\r\n \"type\": \"microsoft.insights/activityLogAlerts\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-WUS2/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-WUS2\",\r\n \"name\": \"DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-WUS2\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.OperationsManagement/solutions/SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-WUS2)\",\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-WUS2)\",\r\n \"type\": \"Microsoft.OperationsManagement/solutions\",\r\n \"location\": \"westus2\",\r\n \"plan\": {\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-WUS2)\",\r\n \"promotionCode\": \"\",\r\n \"product\": \"OMSGallery/SecurityCenterFree\",\r\n \"publisher\": \"Microsoft\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/df-deleteagent1/providers/microsoft.insights/autoscalesettings/auto-bf-central\",\r\n \"name\": \"auto-bf-central\",\r\n \"type\": \"microsoft.insights/autoscalesettings\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"$type\": \"Microsoft.WindowsAzure.Management.Common.Storage.CasePreservedDictionary, Microsoft.WindowsAzure.Management.Common.Storage\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/df-SupportRP/providers/microsoft.cdn/profiles/SupportExtensionCdnTest\",\r\n \"name\": \"SupportExtensionCdnTest\",\r\n \"type\": \"microsoft.cdn/profiles\",\r\n \"sku\": {\r\n \"name\": \"Standard_Akamai\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/df-SupportRP/providers/microsoft.cdn/profiles/SupportExtensionCdnTest/endpoints/supportextensioncdn\",\r\n \"name\": \"SupportExtensionCdnTest/supportextensioncdn\",\r\n \"type\": \"microsoft.cdn/profiles/endpoints\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ExtensionHostingGroup/providers/Microsoft.ClassicStorage/storageAccounts/dfexthosting\",\r\n \"name\": \"dfexthosting\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/exthosting/providers/Microsoft.KeyVault/vaults/dfexthostingKeyVault\",\r\n \"name\": \"dfexthostingKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/FlightExpressionTester/providers/Microsoft.Storage/storageAccounts/flightexpressio9030\",\r\n \"name\": \"flightexpressio9030\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/FlightExpressionTester/providers/Microsoft.Web/serverFarms/CentralUSPlan\",\r\n \"name\": \"CentralUSPlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"kind\": \"functionapp\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/microsoft.alertsManagement/smartDetectorAlertRules/Failure Anomalies - xinxintest0572166611\",\r\n \"name\": \"Failure Anomalies - xinxintest0572166611\",\r\n \"type\": \"microsoft.alertsManagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GANESHTEST/providers/Microsoft.Compute/disks/GaneshUbuntu_OsDisk_1_9751be51e2474c1cb9eee8a6f4890fe8\",\r\n \"name\": \"GaneshUbuntu_OsDisk_1_9751be51e2474c1cb9eee8a6f4890fe8\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.Compute/virtualMachines/GaneshUbuntu\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.Compute/virtualMachines/GaneshUbuntu\",\r\n \"name\": \"GaneshUbuntu\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GANESHTEST/providers/Microsoft.Compute/virtualMachines/GaneshUbuntu/extensions/OmsAgentForLinux\",\r\n \"name\": \"GaneshUbuntu/OmsAgentForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.Insights/components/xinxintest0572166611\",\r\n \"name\": \"xinxintest0572166611\",\r\n \"type\": \"Microsoft.Insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.KeyVault/vaults/xinxintest9832480637\",\r\n \"name\": \"xinxintest9832480637\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.MachineLearningServices/workspaces/xinxin-test\",\r\n \"name\": \"xinxin-test\",\r\n \"type\": \"Microsoft.MachineLearningServices/workspaces\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"location\": \"westus\",\r\n \"identity\": {\r\n \"principalId\": \"27c7457b-8fb8-44a8-9221-ca7804440e11\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.Network/networkInterfaces/ganeshubuntu922\",\r\n \"name\": \"ganeshubuntu922\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.Network/networkSecurityGroups/GaneshTest-vnet-default-NRMS\",\r\n \"name\": \"GaneshTest-vnet-default-NRMS\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Creator\": \"Automatically added by NRMS Azure Policy\",\r\n \"NRMS-Info\": \"http://aka.ms/nrms\",\r\n \"NRMS-Version\": \"2019-03-20\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.Network/networkSecurityGroups/GaneshUbuntu-nsg\",\r\n \"name\": \"GaneshUbuntu-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.Network/publicIPAddresses/GaneshUbuntu-ip\",\r\n \"name\": \"GaneshUbuntu-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.Network/virtualNetworks/GaneshTest-vnet\",\r\n \"name\": \"GaneshTest-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.SignalRService/SignalR/bertsignalr\",\r\n \"name\": \"bertsignalr\",\r\n \"type\": \"Microsoft.SignalRService/SignalR\",\r\n \"sku\": {\r\n \"name\": \"Free_F1\",\r\n \"tier\": \"Free\",\r\n \"size\": \"F1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.Storage/storageAccounts/ganeshtestdiag242\",\r\n \"name\": \"ganeshtestdiag242\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.Storage/storageAccounts/xinxintest7688503338\",\r\n \"name\": \"xinxintest7688503338\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/gans-ai-app/providers/microsoft.alertsManagement/smartDetectorAlertRules/Failure Anomalies - Gans-ai-app\",\r\n \"name\": \"Failure Anomalies - Gans-ai-app\",\r\n \"type\": \"microsoft.alertsManagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Gans-ai-app/providers/microsoft.insights/components/chat-ai-app\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Gans-ai-app/providers/microsoft.insights/components/chat-ai-app\",\r\n \"name\": \"chat-ai-app\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Gans-ai-app/providers/Microsoft.Portal/dashboards/baf29335-7647-421d-93d0-f374f565fcbc-dashboard\",\r\n \"name\": \"baf29335-7647-421d-93d0-f374f565fcbc-dashboard\",\r\n \"type\": \"Microsoft.Portal/dashboards\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"hidden-title\": \"chat-ai-app Dashboard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/gans-angular-ai/providers/microsoft.alertsManagement/smartDetectorAlertRules/Failure Anomalies - gans-angular-ai\",\r\n \"name\": \"Failure Anomalies - gans-angular-ai\",\r\n \"type\": \"microsoft.alertsManagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourcegroups/gans-angular-ai/providers/microsoft.insights/components/gans-angular-ai\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/gans-angular-ai/providers/microsoft.insights/components/gans-angular-ai\",\r\n \"name\": \"gans-angular-ai\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GANSUBUNTU/providers/Microsoft.Compute/disks/GansUbuntu_OsDisk_1_9013e7cec0b447a88f471765316f2aab\",\r\n \"name\": \"GansUbuntu_OsDisk_1_9013e7cec0b447a88f471765316f2aab\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/gansubuntu/providers/Microsoft.Compute/virtualMachines/GansUbuntu\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/gansubuntu/providers/Microsoft.Network/networkInterfaces/gansubuntu114\",\r\n \"name\": \"gansubuntu114\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/gansubuntu/providers/Microsoft.Network/networkSecurityGroups/GansUbuntu-nsg\",\r\n \"name\": \"GansUbuntu-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/gansubuntu/providers/Microsoft.Network/publicIPAddresses/GansUbuntu-ip\",\r\n \"name\": \"GansUbuntu-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n },\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/gansubuntu/providers/Microsoft.Network/virtualNetworks/gansubuntu-vnet\",\r\n \"name\": \"gansubuntu-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/gansubuntu/providers/Microsoft.Storage/storageAccounts/gansubuntudiag118\",\r\n \"name\": \"gansubuntudiag118\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/hcltest/providers/Microsoft.ClassicNetwork/virtualNetworks/hcltest\",\r\n \"name\": \"hcltest\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/hcltest/providers/Microsoft.ClassicNetwork/virtualNetworks/hcltest4377\",\r\n \"name\": \"hcltest4377\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/hcltest/providers/Microsoft.ClassicNetwork/virtualNetworks/hcltest5291\",\r\n \"name\": \"hcltest5291\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/hcltest/providers/Microsoft.ClassicStorage/storageAccounts/hcltest2758\",\r\n \"name\": \"hcltest2758\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/HCLTestRG/providers/Microsoft.Sql/servers/testsever\",\r\n \"name\": \"testsever\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/HCLTestRG/providers/Microsoft.Sql/servers/testsever/databases/HCLTestDB\",\r\n \"name\": \"testsever/HCLTestDB\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 50\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/HCLTestRG/providers/Microsoft.Sql/servers/testsever/databases/master\",\r\n \"name\": \"testsever/master\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"sku\": {\r\n \"name\": \"System\",\r\n \"tier\": \"System\",\r\n \"capacity\": 0\r\n },\r\n \"kind\": \"v12.0,system\",\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/HCLTestRG/providers/Microsoft.Sql/servers/testsever\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/hcltestrg/providers/Microsoft.Storage/storageAccounts/sqlvazy6hhakeauluu\",\r\n \"name\": \"sqlvazy6hhakeauluu\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/IbizaKVTestResourceGroup/providers/Microsoft.KeyVault/vaults/SupportExtensionHosting\",\r\n \"name\": \"SupportExtensionHosting\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/IbizaKVTestResourceGroup/providers/Microsoft.KeyVault/vaults/SupportExtensionKV\",\r\n \"name\": \"SupportExtensionKV\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/IoTResourceGroup/providers/Microsoft.Devices/IotHubs/IoTHubNamedTest\",\r\n \"name\": \"IoTHubNamedTest\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/LensCollectorResourceGroup/providers/Microsoft.KeyVault/vaults/cas-azureengsyscasesubmi\",\r\n \"name\": \"cas-azureengsyscasesubmi\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/MachineLearning/providers/Microsoft.MachineLearning/Workspaces/MLWorkspace\",\r\n \"name\": \"MLWorkspace\",\r\n \"type\": \"Microsoft.MachineLearning/Workspaces\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/MachineLearning/providers/Microsoft.Storage/storageAccounts/mlworkspacestorage3\",\r\n \"name\": \"mlworkspacestorage3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Myu-Test/providers/microsoft.alertsmanagement/smartDetectorAlertRules/Failure Anomalies - validationretoolrefactored\",\r\n \"name\": \"Failure Anomalies - validationretoolrefactored\",\r\n \"type\": \"microsoft.alertsmanagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Myu-Test/providers/Microsoft.DocumentDb/databaseAccounts/content-replication-poc\",\r\n \"name\": \"content-replication-poc\",\r\n \"type\": \"Microsoft.DocumentDb/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"defaultExperience\": \"Core (SQL)\",\r\n \"hidden-cosmos-mmspecial\": \"\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Myu-Test/providers/Microsoft.DocumentDb/databaseAccounts/content-replication-poc-airgap\",\r\n \"name\": \"content-replication-poc-airgap\",\r\n \"type\": \"Microsoft.DocumentDb/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"defaultExperience\": \"Core (SQL)\",\r\n \"hidden-cosmos-mmspecial\": \"\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Myu-Test/providers/microsoft.insights/components/validationretoolrefactored\",\r\n \"name\": \"validationretoolrefactored\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Myu-Test/providers/Microsoft.Storage/storageAccounts/contentrepstoragehigh\",\r\n \"name\": \"contentrepstoragehigh\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Myu-Test/providers/Microsoft.Storage/storageAccounts/contentrepstoragelow\",\r\n \"name\": \"contentrepstoragelow\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Myu-Test/providers/Microsoft.Web/sites/validationretoolrefactored\",\r\n \"name\": \"validationretoolrefactored\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/myu-test/providers/Microsoft.Web/sites/validationretoolrefactored/slots/validationretoolrefactored-deployment\",\r\n \"name\": \"validationretoolrefactored/validationretoolrefactored-deployment\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_australiaeast\",\r\n \"name\": \"NetworkWatcher_australiaeast\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_centralus\",\r\n \"name\": \"NetworkWatcher_centralus\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastasia\",\r\n \"name\": \"NetworkWatcher_eastasia\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus\",\r\n \"name\": \"NetworkWatcher_eastus\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_japaneast\",\r\n \"name\": \"NetworkWatcher_japaneast\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"japaneast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southcentralus\",\r\n \"name\": \"NetworkWatcher_southcentralus\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southeastasia\",\r\n \"name\": \"NetworkWatcher_southeastasia\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southindia\",\r\n \"name\": \"NetworkWatcher_southindia\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"southindia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus\",\r\n \"name\": \"NetworkWatcher_westcentralus\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus\",\r\n \"name\": \"NetworkWatcher_westus\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus2\",\r\n \"name\": \"NetworkWatcher_westus2\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/next-support-rp-test/providers/microsoft.insights/autoscalesettings/SupportRPWebRole-Production-next-support-rp-test-next-support-rp-test\",\r\n \"name\": \"SupportRPWebRole-Production-next-support-rp-test-next-support-rp-test\",\r\n \"type\": \"microsoft.insights/autoscalesettings\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/next-support-rp-test/providers/microsoft.classicCompute/domainNames/next-support-rp-test/slots/Production/roles/SupportRPWebRole\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/nikallik/providers/Microsoft.Network/trafficmanagerprofiles/nikalliktest\",\r\n \"name\": \"nikalliktest\",\r\n \"type\": \"Microsoft.Network/trafficmanagerprofiles\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Compute/virtualMachines/OrenRWin2K12VM\",\r\n \"name\": \"OrenRWin2K12VM\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ORENR_DEMO_RG/providers/Microsoft.Compute/virtualMachines/OrenRWin2K12VM/extensions/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"name\": \"OrenRWin2K12VM/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Compute/virtualMachines/OrenRWin2K12VM/extensions/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"name\": \"OrenRWin2K12VM/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ORENR_DEMO_RG/providers/Microsoft.Compute/virtualMachines/OrenRWin2K12VM/extensions/MicrosoftMonitoringAgent\",\r\n \"name\": \"OrenRWin2K12VM/MicrosoftMonitoringAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Network/networkInterfaces/demolinuxjasonz523\",\r\n \"name\": \"demolinuxjasonz523\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Network/networkInterfaces/demowinjasonz510\",\r\n \"name\": \"demowinjasonz510\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Network/networkInterfaces/orenrwin2k12vm74\",\r\n \"name\": \"orenrwin2k12vm74\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Network/networkSecurityGroups/DemoLinuxJasonZ\",\r\n \"name\": \"DemoLinuxJasonZ\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Network/networkSecurityGroups/DemoWinJasonZ\",\r\n \"name\": \"DemoWinJasonZ\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Network/networkSecurityGroups/OrenRWin2K12VM-nsg\",\r\n \"name\": \"OrenRWin2K12VM-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Network/publicIPAddresses/DemoLinuxJasonZ\",\r\n \"name\": \"DemoLinuxJasonZ\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Network/publicIPAddresses/DemoWinJasonZ\",\r\n \"name\": \"DemoWinJasonZ\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Network/publicIPAddresses/OrenRWin2K12VM-ip\",\r\n \"name\": \"OrenRWin2K12VM-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Network/virtualNetworks/OrenR_Demo_RG\",\r\n \"name\": \"OrenR_Demo_RG\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Storage/storageAccounts/orenrdemostg\",\r\n \"name\": \"orenrdemostg\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Storage/storageAccounts/orenrstgwestus\",\r\n \"name\": \"orenrstgwestus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/RoutetableGroup/providers/Microsoft.Network/routeTables/Routetable-v-aarzh\",\r\n \"name\": \"Routetable-v-aarzh\",\r\n \"type\": \"Microsoft.Network/routeTables\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/microsoft.insights/activityLogAlerts/New Advisor recommendations\",\r\n \"name\": \"New Advisor recommendations\",\r\n \"type\": \"microsoft.insights/activityLogAlerts\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/microsoft.insights/alertrules/CPUHigh ServicePlan\",\r\n \"name\": \"CPUHigh ServicePlan\",\r\n \"type\": \"microsoft.insights/alertrules\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourcegroups/scotthit-test/providers/Microsoft.Web/serverfarms/ServicePlan\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/microsoft.insights/alertrules/ForbiddenRequests AshuTestWebApp\",\r\n \"name\": \"ForbiddenRequests AshuTestWebApp\",\r\n \"type\": \"microsoft.insights/alertrules\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Web/sites/AshuTestWebApp\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/microsoft.insights/alertrules/ForbiddenRequests scotthit-test-app\",\r\n \"name\": \"ForbiddenRequests scotthit-test-app\",\r\n \"type\": \"microsoft.insights/alertrules\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Web/sites/scotthit-test-app\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/microsoft.insights/alertrules/LongHttpQueue ServicePlan\",\r\n \"name\": \"LongHttpQueue ServicePlan\",\r\n \"type\": \"microsoft.insights/alertrules\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourcegroups/scotthit-test/providers/Microsoft.Web/serverfarms/ServicePlan\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/microsoft.insights/alertrules/ServerErrors AshuTestWebApp\",\r\n \"name\": \"ServerErrors AshuTestWebApp\",\r\n \"type\": \"microsoft.insights/alertrules\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Web/sites/AshuTestWebApp\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/microsoft.insights/alertrules/ServerErrors scotthit-test-app\",\r\n \"name\": \"ServerErrors scotthit-test-app\",\r\n \"type\": \"microsoft.insights/alertrules\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Web/sites/scotthit-test-app\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/microsoft.insights/autoscalesettings/ServicePlan-scotthit-test\",\r\n \"name\": \"ServicePlan-scotthit-test\",\r\n \"type\": \"microsoft.insights/autoscalesettings\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourcegroups/scotthit-test/providers/Microsoft.Web/serverfarms/ServicePlan\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Sql/servers/scotthit-testdbserver\",\r\n \"name\": \"scotthit-testdbserver\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Sql/servers/scotthit-testdbserver/databases/master\",\r\n \"name\": \"scotthit-testdbserver/master\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"sku\": {\r\n \"name\": \"System\",\r\n \"tier\": \"System\",\r\n \"capacity\": 0\r\n },\r\n \"kind\": \"v12.0,system\",\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Sql/servers/scotthit-testdbserver\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Sql/servers/scotthit-testdbserver/databases/scotthit-testdb\",\r\n \"name\": \"scotthit-testdbserver/scotthit-testdb\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 5\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Sql/servers/scotthit-testdbserver/databases/scotthit-testdb_2019-03-02T22-34Z\",\r\n \"name\": \"scotthit-testdbserver/scotthit-testdb_2019-03-02T22-34Z\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 5\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Sql/servers/svenkatserver\",\r\n \"name\": \"svenkatserver\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Sql/servers/svenkatserver/databases/master\",\r\n \"name\": \"svenkatserver/master\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"sku\": {\r\n \"name\": \"System\",\r\n \"tier\": \"System\",\r\n \"capacity\": 0\r\n },\r\n \"kind\": \"v12.0,system\",\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Sql/servers/svenkatserver\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Sql/servers/svenkatserver/databases/stdescriptions\",\r\n \"name\": \"svenkatserver/stdescriptions\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Storage/storageAccounts/sqlvawqan56dvc43wk\",\r\n \"name\": \"sqlvawqan56dvc43wk\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ScottHitScaleset-RG/providers/Microsoft.Compute/virtualMachineScaleSets/scotthith\",\r\n \"name\": \"scotthith\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ScottHitScaleset-RG/providers/Microsoft.Network/loadBalancers/scotthithlb\",\r\n \"name\": \"scotthithlb\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ScottHitScaleset-RG/providers/Microsoft.Network/networkSecurityGroups/SCOTTHITSCALESET-RG-NSG\",\r\n \"name\": \"SCOTTHITSCALESET-RG-NSG\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ScottHitScaleset-RG/providers/Microsoft.Network/publicIPAddresses/scotthithpip\",\r\n \"name\": \"scotthithpip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ScottHitScaleset-RG/providers/Microsoft.Network/virtualNetworks/scotthithvnet\",\r\n \"name\": \"scotthithvnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthitscaleset-rg/providers/Microsoft.Storage/storageAccounts/2pm7ywrqoa5zmscotthithsa\",\r\n \"name\": \"2pm7ywrqoa5zmscotthithsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ScottHitScaleset-RG/providers/Microsoft.Storage/storageAccounts/4ha7jskcn7if2scotthithsa\",\r\n \"name\": \"4ha7jskcn7if2scotthithsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ScottHitScaleset-RG/providers/Microsoft.Storage/storageAccounts/7pru2z2wfyci6scotthithsa\",\r\n \"name\": \"7pru2z2wfyci6scotthithsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ScottHitScaleset-RG/providers/Microsoft.Storage/storageAccounts/kvngadf4zp45cscotthithsa\",\r\n \"name\": \"kvngadf4zp45cscotthithsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ScottHitScaleset-RG/providers/Microsoft.Storage/storageAccounts/wfywgy7r35cycscotthithsa\",\r\n \"name\": \"wfywgy7r35cycscotthithsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/762247eastus\",\r\n \"name\": \"762247eastus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp/providers/Microsoft.Storage/storageAccounts/a5d9685987b1b41c5ab3e5c4\",\r\n \"name\": \"a5d9685987b1b41c5ab3e5c4\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp/providers/Microsoft.Storage/storageAccounts/a9e099bf5ebc64a1ea834931\",\r\n \"name\": \"a9e099bf5ebc64a1ea834931\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp/providers/Microsoft.Storage/storageAccounts/documentdbmover8e62\",\r\n \"name\": \"documentdbmover8e62\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp/providers/Microsoft.Web/serverFarms/CentralUSPlan\",\r\n \"name\": \"CentralUSPlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"kind\": \"functionapp\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp/providers/Microsoft.Web/serverFarms/FunctionApp20180321085841Plan\",\r\n \"name\": \"FunctionApp20180321085841Plan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"Y1\",\r\n \"tier\": \"Dynamic\",\r\n \"size\": \"Y1\",\r\n \"family\": \"Y\",\r\n \"capacity\": 0\r\n },\r\n \"kind\": \"functionapp\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/microsoft.alertsManagement/smartDetectorAlertRules/Failure Anomalies - selfhelpwebtool-dev\",\r\n \"name\": \"Failure Anomalies - selfhelpwebtool-dev\",\r\n \"type\": \"microsoft.alertsManagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/microsoft.insights/components/selfhelpwebtool-dev\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/microsoft.alertsManagement/smartDetectorAlertRules/Failure Anomalies - selfhelpwebtool-elixirstaging\",\r\n \"name\": \"Failure Anomalies - selfhelpwebtool-elixirstaging\",\r\n \"type\": \"microsoft.alertsManagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/Microsoft.ClassicNetwork/virtualNetworks/selfhelp-tool\",\r\n \"name\": \"selfhelp-tool\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/Microsoft.ClassicStorage/storageAccounts/selfhelptool1999\",\r\n \"name\": \"selfhelptool1999\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/Microsoft.CognitiveServices/accounts/Validator-SpellCheck\",\r\n \"name\": \"Validator-SpellCheck\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"Bing.SpellCheck.v7\",\r\n \"location\": \"global\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/microsoft.insights/components/selfhelpwebtool-dev\",\r\n \"name\": \"selfhelpwebtool-dev\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/microsoft.insights/components/selfhelpwebtool-elixirstaging\",\r\n \"name\": \"selfhelpwebtool-elixirstaging\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/Microsoft.Network/trafficmanagerprofiles/selfhelp\",\r\n \"name\": \"selfhelp\",\r\n \"type\": \"Microsoft.Network/trafficmanagerprofiles\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/Microsoft.Storage/storageAccounts/dfexthostingstorage\",\r\n \"name\": \"dfexthostingstorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/Microsoft.Web/sites/selfhelpwebtool-dev\",\r\n \"name\": \"selfhelpwebtool-dev\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/Microsoft.Web/sites/selfhelpwebtool-elixirstaging\",\r\n \"name\": \"selfhelpwebtool-elixirstaging\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool-prod/providers/Microsoft.KeyVault/vaults/selfhelpKeyVault\",\r\n \"name\": \"selfhelpKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool-prod/providers/Microsoft.Web/sites/selfhelp-webtool\",\r\n \"name\": \"selfhelp-webtool\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-related:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AlexTestVNetRG/providers/Microsoft.Web/serverfarms/ServicePlan\": \"empty\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool-prod/providers/Microsoft.Web/sites/selfhelp-webtool/slots/selfhelp-webtool-deploy\",\r\n \"name\": \"selfhelp-webtool/selfhelp-webtool-deploy\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelpcoverage/providers/Microsoft.Storage/storageAccounts/selfhelpcoveragestorage\",\r\n \"name\": \"selfhelpcoveragestorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelpreminderfunction/providers/microsoft.alertsManagement/smartDetectorAlertRules/Failure Anomalies - selfhelpreminderfunction\",\r\n \"name\": \"Failure Anomalies - selfhelpreminderfunction\",\r\n \"type\": \"microsoft.alertsManagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelpreminderfunction/providers/microsoft.insights/components/selfhelpreminderfunction\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelpreminderfunction/providers/microsoft.insights/components/selfhelpreminderfunction\",\r\n \"name\": \"selfhelpreminderfunction\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelpreminderfunction/providers/Microsoft.Web/sites/selfhelpreminderfunction\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelpreminderfunction/providers/Microsoft.Portal/dashboards/15052975-a42b-4da4-919f-f99597d2f8ee-dashboard\",\r\n \"name\": \"15052975-a42b-4da4-919f-f99597d2f8ee-dashboard\",\r\n \"type\": \"Microsoft.Portal/dashboards\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"hidden-title\": \"selfhelpreminderfunction Dashboard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelpreminderfunction/providers/Microsoft.Storage/storageAccounts/selfhelpreminde9ee4\",\r\n \"name\": \"selfhelpreminde9ee4\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelpreminderfunction/providers/Microsoft.Web/serverFarms/CentralUSPlan\",\r\n \"name\": \"CentralUSPlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"kind\": \"functionapp\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/SEStorageKeysGroup/providers/Microsoft.KeyVault/vaults/AKVManagedSA\",\r\n \"name\": \"AKVManagedSA\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/SEStorageKeysGroup/providers/Microsoft.KeyVault/vaults/SEStorageKeysDF\",\r\n \"name\": \"SEStorageKeysDF\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/SEStorageKeysGroup/providers/Microsoft.Storage/storageAccounts/smstoracc\",\r\n \"name\": \"smstoracc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/simon-test-resources/providers/Microsoft.ApiManagement/service/simontestapimanagementservice\",\r\n \"name\": \"simontestapimanagementservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/simon-test-resources/providers/Microsoft.DataBoxEdge/DataBoxEdgeDevices/simon-test-stack-edge\",\r\n \"name\": \"simon-test-stack-edge\",\r\n \"type\": \"Microsoft.DataBoxEdge/DataBoxEdgeDevices\",\r\n \"sku\": {\r\n \"name\": \"Gateway\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/simon-test-resources/providers/Microsoft.DevTestLab/labs/simondevtestlab\",\r\n \"name\": \"simondevtestlab\",\r\n \"type\": \"Microsoft.DevTestLab/labs\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/simon-test-resources/providers/Microsoft.KeyVault/vaults/simondevtestlab6143\",\r\n \"name\": \"simondevtestlab6143\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-DevTestLabs-LabUId\": \"80b8a1a2-c8f5-4d0f-8f46-2708af573aa3\",\r\n \"CreatedBy\": \"DevTestLabs\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/simon-test-resources/providers/Microsoft.Network/virtualNetworks/Dtlsimondevtestlab\",\r\n \"name\": \"Dtlsimondevtestlab\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-DevTestLabs-LabUId\": \"80b8a1a2-c8f5-4d0f-8f46-2708af573aa3\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/simon-test-resources/providers/Microsoft.Storage/storageAccounts/asimondevtestlab4010\",\r\n \"name\": \"asimondevtestlab4010\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-DevTestLabs-LabUId\": \"80b8a1a2-c8f5-4d0f-8f46-2708af573aa3\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/sischleg/providers/microsoft.alertsManagement/smartDetectorAlertRules/Failure Anomalies - simonbottestokobmo\",\r\n \"name\": \"Failure Anomalies - simonbottestokobmo\",\r\n \"type\": \"microsoft.alertsManagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/sischleg/providers/microsoft.insights/components/simonbottestokobmo\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/sischleg/providers/Microsoft.EventHub/namespaces/selfhelpkusto\",\r\n \"name\": \"selfhelpkusto\",\r\n \"type\": \"Microsoft.EventHub/namespaces\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 5\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/sischleg/providers/microsoft.insights/components/simonbottestokobmo\",\r\n \"name\": \"simonbottestokobmo\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/sischleg/providers/Microsoft.BotService/botServices/simonbottest\": \"Resource\",\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/sischleg/providers/Microsoft.Web/sites/simonbottest\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/sischleg/providers/Microsoft.Kusto/clusters/selfhelpkustocluster\",\r\n \"name\": \"selfhelpkustocluster\",\r\n \"type\": \"Microsoft.Kusto/clusters\",\r\n \"sku\": {\r\n \"name\": \"D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/sischleg/providers/Microsoft.Kusto/clusters/testkustotable\",\r\n \"name\": \"testkustotable\",\r\n \"type\": \"Microsoft.Kusto/clusters\",\r\n \"sku\": {\r\n \"name\": \"D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/sischleg/providers/Microsoft.Storage/storageAccounts/simonbottesta1e1\",\r\n \"name\": \"simonbottesta1e1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/smathewTestRG/providers/Microsoft.Logic/workflows/TestLogicApp\",\r\n \"name\": \"TestLogicApp\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/smathewTestRG/providers/Microsoft.Logic/workflows/TestLogicApp-TSG\",\r\n \"name\": \"TestLogicApp-TSG\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/smathewTestRG/providers/Microsoft.Web/connections/dynamicscrmonline\",\r\n \"name\": \"dynamicscrmonline\",\r\n \"type\": \"Microsoft.Web/connections\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/smathewTestRG/providers/Microsoft.Web/connections/kusto\",\r\n \"name\": \"kusto\",\r\n \"type\": \"Microsoft.Web/connections\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/softdeletekeyvault/providers/Microsoft.KeyVault/vaults/softdeletekeyvault\",\r\n \"name\": \"softdeletekeyvault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/SQLVMTest/providers/Microsoft.ClassicNetwork/virtualNetworks/SQLVMTest\",\r\n \"name\": \"SQLVMTest\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/SQLVMTest/providers/Microsoft.Network/networkInterfaces/sqlwindowstest316\",\r\n \"name\": \"sqlwindowstest316\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/SQLVMTest/providers/Microsoft.Network/networkSecurityGroups/SqlWindowsTest\",\r\n \"name\": \"SqlWindowsTest\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/SQLVMTest/providers/Microsoft.Network/publicIPAddresses/SqlWindowsTest\",\r\n \"name\": \"SqlWindowsTest\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/SQLVMTest/providers/Microsoft.Network/virtualNetworks/SQLVMTest\",\r\n \"name\": \"SQLVMTest\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/SQLVMTest/providers/Microsoft.Storage/storageAccounts/sqlvmtest8696\",\r\n \"name\": \"sqlvmtest8696\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/StorageScopingQuestions/providers/Microsoft.Storage/storageAccounts/moderningscopinggeneral\",\r\n \"name\": \"moderningscopinggeneral\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/StorageScopingQuestions/providers/Microsoft.StorSimple/managers/scopingtestStorsimple\",\r\n \"name\": \"scopingtestStorsimple\",\r\n \"type\": \"Microsoft.StorSimple/managers\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/streamanalytics/providers/Microsoft.StreamAnalytics/streamingjobs/streamanalytics\",\r\n \"name\": \"streamanalytics\",\r\n \"type\": \"Microsoft.StreamAnalytics/streamingjobs\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/microsoft.alertsManagement/smartDetectorAlertRules/Failure Anomalies - support-docs\",\r\n \"name\": \"Failure Anomalies - support-docs\",\r\n \"type\": \"microsoft.alertsManagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/microsoft.insights/components/support-docs\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/microsoft.alertsManagement/smartDetectorAlertRules/Failure Anomalies - support-docs-ppe\",\r\n \"name\": \"Failure Anomalies - support-docs-ppe\",\r\n \"type\": \"microsoft.alertsManagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/microsoft.insights/components/support-docs-ppe\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/microsoft.insights/actiongroups/Application Insights Smart Detection\",\r\n \"name\": \"Application Insights Smart Detection\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/microsoft.insights/components/support-docs\",\r\n \"name\": \"support-docs\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/microsoft.insights/components/support-docs-ppe\",\r\n \"name\": \"support-docs-ppe\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/Microsoft.Portal/dashboards/4bd6eb93-14fe-4cb5-addf-e452ea3187a0-dashboard\",\r\n \"name\": \"4bd6eb93-14fe-4cb5-addf-e452ea3187a0-dashboard\",\r\n \"type\": \"Microsoft.Portal/dashboards\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"hidden-title\": \"support-docs Dashboard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/Microsoft.Portal/dashboards/a6516939-e588-4e92-9675-b90c6608ff97-dashboard\",\r\n \"name\": \"a6516939-e588-4e92-9675-b90c6608ff97-dashboard\",\r\n \"type\": \"Microsoft.Portal/dashboards\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"hidden-title\": \"support-docs-ppe Dashboard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/Microsoft.Web/serverFarms/support-docsPlan\",\r\n \"name\": \"support-docsPlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/Microsoft.Web/sites/support-docs\",\r\n \"name\": \"support-docs\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"centralus\",\r\n \"identity\": {\r\n \"principalId\": \"e370fd6e-6932-48b4-a940-2954d4d582d0\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"tags\": {\r\n \"hidden-related:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/Microsoft.Web/serverfarms/support-docsPlan\": \"empty\",\r\n \"hidden-related:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/Microsoft.Web/sites/support-docs/diagnostics/chatRestorationId\": \"b8439da2-964d-4d61-aac9-292bde7c3268\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/Microsoft.Web/sites/support-docs-ppe\",\r\n \"name\": \"support-docs-ppe\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"hidden-related:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/Microsoft.Web/serverfarms/support-docsPlan\": \"empty\",\r\n \"hidden-related:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/Microsoft.Web/sites/support-docs/diagnostics/chatRestorationId\": \"b8439da2-964d-4d61-aac9-292bde7c3268\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/svenkatResourceGroup/providers/Microsoft.Search/searchServices/stpanelsearch\",\r\n \"name\": \"stpanelsearch\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/TestCircuite/providers/Microsoft.Network/expressRouteCircuits/TestCircuite\",\r\n \"name\": \"TestCircuite\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"sku\": {\r\n \"name\": \"Standard_UnlimitedData\",\r\n \"tier\": \"Standard\",\r\n \"family\": \"UnlimitedData\"\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Testing/providers/microsoft.insights/alertrules/ForbiddenRequests AE-TestWebApps-West US\",\r\n \"name\": \"ForbiddenRequests AE-TestWebApps-West US\",\r\n \"type\": \"microsoft.insights/alertrules\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Testing/providers/Microsoft.Web/sites/AE-TestWebApps\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Testing/providers/microsoft.insights/alertrules/ServerErrors AE-TestWebApps-West US\",\r\n \"name\": \"ServerErrors AE-TestWebApps-West US\",\r\n \"type\": \"microsoft.insights/alertrules\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Testing/providers/Microsoft.Web/sites/AE-TestWebApps\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/TestLinuxWebApp1/providers/Microsoft.Web/serverFarms/ServicePlanea4692c1-b80b\",\r\n \"name\": \"ServicePlanea4692c1-b80b\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"linux\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/TestLogicApp/providers/Microsoft.Web/connections/office365\",\r\n \"name\": \"office365\",\r\n \"type\": \"Microsoft.Web/connections\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/TestLogicApp/providers/Microsoft.Web/connections/sql\",\r\n \"name\": \"sql\",\r\n \"type\": \"Microsoft.Web/connections\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/vheshartest/providers/Microsoft.DocumentDb/databaseAccounts/vheshartest\",\r\n \"name\": \"vheshartest\",\r\n \"type\": \"Microsoft.DocumentDb/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"defaultExperience\": \"DocumentDB\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/viclDataLakeTest/providers/Microsoft.DataLakeAnalytics/accounts/vicldatalake\",\r\n \"name\": \"vicldatalake\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/viclDataLakeTest/providers/Microsoft.DataLakeStore/accounts/vicldatalakeadls\",\r\n \"name\": \"vicldatalakeadls\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Compute/virtualMachines/scotthit-vm2\",\r\n \"name\": \"scotthit-vm2\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"DRI\": \"amals@microsoft.com\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTEST/providers/Microsoft.Compute/virtualMachines/scotthit-vm2/extensions/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"name\": \"scotthit-vm2/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Compute/virtualMachines/scotthit-vm2/extensions/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"name\": \"scotthit-vm2/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTEST/providers/Microsoft.Compute/virtualMachines/scotthit-vm2/extensions/MicrosoftMonitoringAgent\",\r\n \"name\": \"scotthit-vm2/MicrosoftMonitoringAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTEST/providers/Microsoft.Compute/virtualMachines/scotthit-vm2/extensions/Monitoring\",\r\n \"name\": \"scotthit-vm2/Monitoring\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Network/networkInterfaces/scotthit-vm284\",\r\n \"name\": \"scotthit-vm284\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Network/networkInterfaces/testvm452\",\r\n \"name\": \"testvm452\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Network/networkSecurityGroups/scotthit-vm2\",\r\n \"name\": \"scotthit-vm2\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Network/networkSecurityGroups/TestVM\",\r\n \"name\": \"TestVM\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Network/networkSecurityGroups/VMTest-default-NRMS\",\r\n \"name\": \"VMTest-default-NRMS\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Creator\": \"Automatically added by NRMS Azure Policy\",\r\n \"NRMS-Info\": \"http://aka.ms/nrms\",\r\n \"NRMS-Version\": \"2019-03-20\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Network/publicIPAddresses/scotthit-vm2\",\r\n \"name\": \"scotthit-vm2\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Network/publicIPAddresses/test_ipaddress\",\r\n \"name\": \"test_ipaddress\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Network/publicIPAddresses/TestVM\",\r\n \"name\": \"TestVM\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Network/virtualNetworks/VMTest\",\r\n \"name\": \"VMTest\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/vmtest/providers/Microsoft.Storage/storageAccounts/vmtest1936\",\r\n \"name\": \"vmtest1936\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/vso-rg-40011d6/providers/Microsoft.VSOnline/plans/vso-plan-westus2\",\r\n \"name\": \"vso-plan-westus2\",\r\n \"type\": \"Microsoft.VSOnline/plans\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/vso-rg-a267084/providers/Microsoft.VSOnline/plans/vso-plan-westus2\",\r\n \"name\": \"vso-plan-westus2\",\r\n \"type\": \"Microsoft.VSOnline/plans\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/wihuatest/providers/Microsoft.KeyVault/vaults/wihua\",\r\n \"name\": \"wihua\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/wihuatest/providers/Microsoft.Storage/storageAccounts/publicreadonlytest\",\r\n \"name\": \"publicreadonlytest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"BlobStorage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/wihuatest/providers/Microsoft.Storage/storageAccounts/storageaccountwihuaa14d\",\r\n \"name\": \"storageaccountwihuaa14d\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/wihuatest/providers/Microsoft.Web/serverFarms/ASP-wihuatest-96fb\",\r\n \"name\": \"ASP-wihuatest-96fb\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"Y1\",\r\n \"tier\": \"Dynamic\",\r\n \"size\": \"Y1\",\r\n \"family\": \"Y\",\r\n \"capacity\": 0\r\n },\r\n \"kind\": \"functionapp\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/wihuatest/providers/Microsoft.Web/sites/cdbtest\",\r\n \"name\": \"cdbtest\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"functionapp\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/WilsonTestGroup/providers/Microsoft.Storage/storageAccounts/test212312test\",\r\n \"name\": \"test212312test\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/WinSQLTest/providers/Microsoft.ClassicNetwork/virtualNetworks/WinSQLTest\",\r\n \"name\": \"WinSQLTest\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
@@ -67,13 +67,13 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "da07cfb7-76df-489c-8424-c511016c04df"
+ "164e24a0-fecb-4e2d-b60a-bc46816f0901"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.28516.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Support.MicrosoftSupportClient/1.0.0.0"
@@ -87,7 +87,10 @@
"no-cache"
],
"x-ms-ratelimit-remaining-tenant-reads": [
- "11898"
+ "11998"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -96,22 +99,19 @@
"Kestrel"
],
"x-ms-request-id": [
- "550d626e-07df-4e8a-94ed-7b3ba6789df9"
+ "ecd38858-14a3-4564-b3d6-f876cad078db"
],
"x-ms-correlation-request-id": [
- "550d626e-07df-4e8a-94ed-7b3ba6789df9"
+ "ecd38858-14a3-4564-b3d6-f876cad078db"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200315T071728Z:550d626e-07df-4e8a-94ed-7b3ba6789df9"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "CENTRALUSEUAP:20200327T043634Z:ecd38858-14a3-4564-b3d6-f876cad078db"
],
"Date": [
- "Sun, 15 Mar 2020 07:17:28 GMT"
+ "Fri, 27 Mar 2020 04:36:34 GMT"
],
"Content-Length": [
- "53685"
+ "53980"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -120,7 +120,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/484e2236-bc6d-b1bb-76d2-7d09278cf9ea\",\r\n \"name\": \"484e2236-bc6d-b1bb-76d2-7d09278cf9ea\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Activity Logs\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/809e8afe-489e-08b0-95f2-08f835a383e8\",\r\n \"name\": \"809e8afe-489e-08b0-95f2-08f835a383e8\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Advanced Threat Protection - Azure\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6859f4e8-4a1d-13e4-f276-6d055007e83d\",\r\n \"name\": \"6859f4e8-4a1d-13e4-f276-6d055007e83d\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Advanced Threat Protection - Microsoft Defender\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/94332e54-73b0-b8e3-306e-db3ad13d950b\",\r\n \"name\": \"94332e54-73b0-b8e3-306e-db3ad13d950b\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Advanced Threat Protection - O365\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/26d8424b-0a41-4443-cbc6-0309ea8708d0\",\r\n \"name\": \"26d8424b-0a41-4443-cbc6-0309ea8708d0\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Advisor\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/8f1ddc5f-0c5e-50c7-9810-e01a8d1da925\",\r\n \"name\": \"8f1ddc5f-0c5e-50c7-9810-e01a8d1da925\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"AKS Engine on Azure Stack Hub\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/c1840ac9-309f-f235-c0ae-4782f283b698\",\r\n \"name\": \"c1840ac9-309f-f235-c0ae-4782f283b698\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Alerts and Action Groups\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.INSIGHTS/ALERTRULES\",\r\n \"MICROSOFT.INSIGHTS/ACTIVITYLOGALERTS\",\r\n \"MICROSOFT.INSIGHTS/METRICALERTS\",\r\n \"MICROSOFT.INSIGHTS/SCHEDULEDQUERYRULES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/e8fe7c6f-d883-c57f-6576-cf801ca30653\",\r\n \"name\": \"e8fe7c6f-d883-c57f-6576-cf801ca30653\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Analysis Services\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.ANALYSISSERVICES/SERVERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/07651e65-958a-0877-36f3-61bbba85d783\",\r\n \"name\": \"07651e65-958a-0877-36f3-61bbba85d783\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"API for FHIR\",\r\n \"resourceTypes\": [\r\n \"Microsoft.HealthcareApis\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b4d0e877-0166-0474-9a76-b5be30ba40e4\",\r\n \"name\": \"b4d0e877-0166-0474-9a76-b5be30ba40e4\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"API Management Service\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.APIMANAGEMENT/SERVICE\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/e14f616b-42c5-4515-3d7c-67935eece51a\",\r\n \"name\": \"e14f616b-42c5-4515-3d7c-67935eece51a\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"App Configuration\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Azconfig\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/445c0905-55e2-4f42-d853-ec9e17a5180e\",\r\n \"name\": \"445c0905-55e2-4f42-d853-ec9e17a5180e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"App Service Certificates\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CERTIFICATEREGISTRATION/CERTIFICATEORDERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b7d2f8b7-7d20-cf2f-ddd5-5543ada54bd2\",\r\n \"name\": \"b7d2f8b7-7d20-cf2f-ddd5-5543ada54bd2\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"App Service Domains\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DOMAINREGISTRATION/DOMAINS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/101732bb-31af-ee61-7c16-d4ad77c86a50\",\r\n \"name\": \"101732bb-31af-ee61-7c16-d4ad77c86a50\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Application Gateway\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NETWORK/APPLICATIONGATEWAYS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/63df7848-ce1c-06d4-517f-2a62983372c6\",\r\n \"name\": \"63df7848-ce1c-06d4-517f-2a62983372c6\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Application Insights\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.INSIGHTS/COMPONENTS\",\r\n \"MICROSOFT.INSIGHTS/ACTIVITYLOGALERTS\",\r\n \"MICROSOFT.INSIGHTS/METRICALERTS\",\r\n \"MICROSOFT.INSIGHTS/SCHEDULEDQUERYRULES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2fd37acf-7616-eae7-546b-1a78a16d11b5\",\r\n \"name\": \"2fd37acf-7616-eae7-546b-1a78a16d11b5\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"ASE\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.WEB/HOSTINGENVIRONMENTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/90426252-f966-63ea-cbda-cab5ceaa865d\",\r\n \"name\": \"90426252-f966-63ea-cbda-cab5ceaa865d\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Automation\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.AUTOMATION/AUTOMATIONACCOUNTS\",\r\n \"MICROSOFT.AUTOMATION/AUTOMATIONACCOUNTS/RUNBOOKS\",\r\n \"MICROSOFT.AUTOMATION/AUTOMATIONACCOUNTS/JOBS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/82881226-e06c-2b57-3365-38437e84059e\",\r\n \"name\": \"82881226-e06c-2b57-3365-38437e84059e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Autoscale\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.INSIGHTS/AUTOSCALESETTINGS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/500d88b2-c24c-0d5d-3b76-acfde7d6ee20\",\r\n \"name\": \"500d88b2-c24c-0d5d-3b76-acfde7d6ee20\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Avere vFXT\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/7505036e-a364-8354-e894-56d394dd4a61\",\r\n \"name\": \"7505036e-a364-8354-e894-56d394dd4a61\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Active Directory App Integration and Development\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b16f3aa1-e798-0090-9159-5dc3bae17c5b\",\r\n \"name\": \"b16f3aa1-e798-0090-9159-5dc3bae17c5b\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Active Directory Business To Consumer (B2C)\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/3a36c1ba-f910-91c3-9f17-075d63c9488a\",\r\n \"name\": \"3a36c1ba-f910-91c3-9f17-075d63c9488a\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Active Directory Directories, Domains, and Objects\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/a69d6bc1-d1db-61e6-2668-451ae3784f86\",\r\n \"name\": \"a69d6bc1-d1db-61e6-2668-451ae3784f86\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Active Directory Domain Services (VM – Domain Controllers)\",\r\n \"resourceTypes\": [\r\n \"Microsoft.AAD/DomainServices\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b98631b1-d53a-3ac4-3181-aef136ec703d\",\r\n \"name\": \"b98631b1-d53a-3ac4-3181-aef136ec703d\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Active Directory Governance, Compliance and Reporting\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/516fe906-3a1a-2878-02fd-8dd37ea207de\",\r\n \"name\": \"516fe906-3a1a-2878-02fd-8dd37ea207de\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Active Directory Sign-In and Multi-Factor Authentication\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/38a234dd-6baf-d93b-2c48-5a735a3550ed\",\r\n \"name\": \"38a234dd-6baf-d93b-2c48-5a735a3550ed\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Active Directory User Provisioning and Synchronization\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/17318db1-cfda-52da-b65f-68e53ba89e64\",\r\n \"name\": \"17318db1-cfda-52da-b65f-68e53ba89e64\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Arc for servers\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/17d72dfc-8f48-94cb-05e6-5f88efdf72d7\",\r\n \"name\": \"17d72dfc-8f48-94cb-05e6-5f88efdf72d7\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Backup\",\r\n \"resourceTypes\": [\r\n \"Microsoft.RecoveryServices/vaults\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/76b41038-ae2e-0cb8-32f8-a575b98d07ae\",\r\n \"name\": \"76b41038-ae2e-0cb8-32f8-a575b98d07ae\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Blockchain Service - Preview\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Blockchain\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\",\r\n \"name\": \"58cf91d7-3a04-37d3-9818-9bd5c979d9a9\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure CDN\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/3f14906b-a48e-b51a-d700-b3eb7784bce8\",\r\n \"name\": \"3f14906b-a48e-b51a-d700-b3eb7784bce8\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Database for MariaDB\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DBFORMARIADB/SERVERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/17c72f78-cb09-bc5b-9b99-f3d618e1f057\",\r\n \"name\": \"17c72f78-cb09-bc5b-9b99-f3d618e1f057\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Database for MySQL\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DBFORMYSQL/SERVERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/d4d4e6ba-73e5-a166-549b-4643b78f4d6f\",\r\n \"name\": \"d4d4e6ba-73e5-a166-549b-4643b78f4d6f\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Database for PostgreSQL\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DBFORPOSTGRESQL/SERVERS\",\r\n \"MICROSOFT.DBFORPOSTGRESQL/SERVERSV2\",\r\n \"MICROSOFT.DBFORPOSTGRESQL/SERVERGROUPS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/197bc2a0-4681-2302-f03f-ba9abbcdaddb\",\r\n \"name\": \"197bc2a0-4681-2302-f03f-ba9abbcdaddb\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Dev Spaces\",\r\n \"resourceTypes\": [\r\n \"DevTools\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cd9d74ec-8333-b326-f42f-303e223e04eb\",\r\n \"name\": \"cd9d74ec-8333-b326-f42f-303e223e04eb\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure DevOps Services\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Visualstudio\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/f0269138-eb6e-a81a-10e9-17965b5683d4\",\r\n \"name\": \"f0269138-eb6e-a81a-10e9-17965b5683d4\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure DNS\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NETWORK/DNSZONES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/3b799b70-420a-6397-e69c-853341d0eab5\",\r\n \"name\": \"3b799b70-420a-6397-e69c-853341d0eab5\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Firewall\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Network/azureFirewalls\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/f1e803c0-d4aa-156d-8507-3f9e5e4e1504\",\r\n \"name\": \"f1e803c0-d4aa-156d-8507-3f9e5e4e1504\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Firewall Manager - Preview\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Network/firewallPolicies\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/3d598a6c-5432-adab-e87a-1dfdbb562302\",\r\n \"name\": \"3d598a6c-5432-adab-e87a-1dfdbb562302\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure FXT Edge Filer\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/8168c456-2014-a581-dde8-d25e47d964c8\",\r\n \"name\": \"8168c456-2014-a581-dde8-d25e47d964c8\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Information Protection\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/e29406fa-af70-5215-e29b-9c9b7f5204d3\",\r\n \"name\": \"e29406fa-af70-5215-e29b-9c9b7f5204d3\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Kinect Dev Kit\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/ef44dd7b-4344-edcf-2eb1-f6f094fd46a3\",\r\n \"name\": \"ef44dd7b-4344-edcf-2eb1-f6f094fd46a3\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Migrate\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Migrate/migrateProjects\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/06d6dec8-469a-b652-f8e8-61e47c34efef\",\r\n \"name\": \"06d6dec8-469a-b652-f8e8-61e47c34efef\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure mobile app (for Android & iOS)\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/00743e6b-ddfd-e1cb-b90e-2a9f8d1c2a52\",\r\n \"name\": \"00743e6b-ddfd-e1cb-b90e-2a9f8d1c2a52\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure NetApp Files\",\r\n \"resourceTypes\": [\r\n \"Microsoft.NetApp/netAppAccounts\",\r\n \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/50cb0c81-4dee-0e4e-d7bd-caa5560e76af\",\r\n \"name\": \"50cb0c81-4dee-0e4e-d7bd-caa5560e76af\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Private Link\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Network/privateLinkServices\",\r\n \"Microsoft.Network/privateEndpoints\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b701b8d6-fc99-aba8-bab9-bc2e171fa89c\",\r\n \"name\": \"b701b8d6-fc99-aba8-bab9-bc2e171fa89c\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure RedHat OpenShift\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cb6b214b-fbeb-8fd1-a055-3d60bbe81c28\",\r\n \"name\": \"cb6b214b-fbeb-8fd1-a055-3d60bbe81c28\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Resource Graph\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/9cd60433-a646-8748-7e7f-fd0781fea78e\",\r\n \"name\": \"9cd60433-a646-8748-7e7f-fd0781fea78e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Sentinel\",\r\n \"resourceTypes\": [\r\n \"Microsoft.SecurityInsights\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b1d432df-e9cc-ff08-d261-32586b843bc1\",\r\n \"name\": \"b1d432df-e9cc-ff08-d261-32586b843bc1\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Site Recovery\",\r\n \"resourceTypes\": [\r\n \"Microsoft.RecoveryServices/vaults\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/a6475480-6048-1d77-76fc-3118551f24c1\",\r\n \"name\": \"a6475480-6048-1d77-76fc-3118551f24c1\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Sphere\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2950380d-f11a-136b-1b95-017b71f25ef8\",\r\n \"name\": \"2950380d-f11a-136b-1b95-017b71f25ef8\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Stack Edge and Data Box Gateway\",\r\n \"resourceTypes\": [\r\n \"Microsoft.DataBoxEdge/DataBoxEdgeDevices\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/32d322a8-acae-202d-e9a9-7371dccf381b\",\r\n \"name\": \"32d322a8-acae-202d-e9a9-7371dccf381b\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Stack Hub\",\r\n \"resourceTypes\": [\r\n \"Microsoft.AzureStack/registrations\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/1dcbb98a-fbff-9e2a-08c6-0f1fbe934906\",\r\n \"name\": \"1dcbb98a-fbff-9e2a-08c6-0f1fbe934906\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure StorSimple 1200 Series\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.STORSIMPLE/MANAGERS\",\r\n \"MICROSOFT.STORSIMPLEBVTD2/MANAGERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/9fccedfd-3d56-635e-e377-c72e2cdb402f\",\r\n \"name\": \"9fccedfd-3d56-635e-e377-c72e2cdb402f\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure StorSimple 8000 Series\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.STORSIMPLE/MANAGERS\",\r\n \"MICROSOFT.STORSIMPLEBVTD2/MANAGERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/20c0b7e3-3084-2fc5-5530-1ff0cc21e885\",\r\n \"name\": \"20c0b7e3-3084-2fc5-5530-1ff0cc21e885\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Synapse Analytics\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.SQL/SERVERS\",\r\n \"MICROSOFT.SQL/SERVERS/DATABASES\",\r\n \"Microsoft.Synapse\",\r\n \"MICROSOFT.SYNAPSE/WORKSPACES\",\r\n \"MICROSOFT.SYNAPSE/WORKSPACES/BIGDATAPOOLS\",\r\n \"MICROSOFT.SYNAPSE/WORKSPACES/SQLPOOLS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/440fc530-a802-3276-f67b-7c39d1c8e972\",\r\n \"name\": \"440fc530-a802-3276-f67b-7c39d1c8e972\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure VMware Solution by CloudSimple\",\r\n \"resourceTypes\": [\r\n \"Microsoft.VMwareCloudSimple\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/ffc9bb42-93e4-eb40-5421-ba3537f3a012\",\r\n \"name\": \"ffc9bb42-93e4-eb40-5421-ba3537f3a012\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Bastion\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Network/bastionHosts\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2bcd736d-e519-397d-e595-396f4e0cce88\",\r\n \"name\": \"2bcd736d-e519-397d-e595-396f4e0cce88\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Batch AI - Preview\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/3f33d852-e61f-d835-8217-a9a677d96914\",\r\n \"name\": \"3f33d852-e61f-d835-8217-a9a677d96914\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Batch Service\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.BATCH/BATCHACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc\",\r\n \"name\": \"517f2da6-78fd-0498-4e22-ad26996b1dfc\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Billing\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/a2c69e6c-34b6-fc5d-0f35-b496a071c28d\",\r\n \"name\": \"a2c69e6c-34b6-fc5d-0f35-b496a071c28d\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Blob Storage\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICSTORAGE/STORAGEACCOUNTS\",\r\n \"MICROSOFT.STORAGE/STORAGEACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/f26f06d5-c3b1-0372-8c5b-93a371ec434c\",\r\n \"name\": \"f26f06d5-c3b1-0372-8c5b-93a371ec434c\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Blueprint - Preview\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Blueprint/BLUEPRINTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98134488-9bd9-db12-619c-06636d1ee55e\",\r\n \"name\": \"98134488-9bd9-db12-619c-06636d1ee55e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Bot Service\",\r\n \"resourceTypes\": [\r\n \"Microsoft.BotService/botServices\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/275635f1-6a9b-cca1-af9e-c379b30890ff\",\r\n \"name\": \"275635f1-6a9b-cca1-af9e-c379b30890ff\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cache for Redis\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CACHE/REDIS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/7dc03991-4dcf-cf5a-904f-35a243ca5551\",\r\n \"name\": \"7dc03991-4dcf-cf5a-904f-35a243ca5551\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cloud App Security\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/e79dcabe-5f77-3326-2112-74487e1e5f78\",\r\n \"name\": \"e79dcabe-5f77-3326-2112-74487e1e5f78\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cloud Services (Web roles/Worker roles)\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICCOMPUTE/DOMAINNAMES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/70a6ce77-640d-fb3b-d2e2-942c479a929b\",\r\n \"name\": \"70a6ce77-640d-fb3b-d2e2-942c479a929b\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cloud Shell\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/87112f97-cf14-d714-03cb-28af2e422e31\",\r\n \"name\": \"87112f97-cf14-d714-03cb-28af2e422e31\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cognitive Services\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/00677266-37a0-73ba-d7c4-ad3c814b2b11\",\r\n \"name\": \"00677266-37a0-73ba-d7c4-ad3c814b2b11\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cognitive Services-Computer Vision\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6dfefaed-7312-8350-bbe6-c452fe5749c7\",\r\n \"name\": \"6dfefaed-7312-8350-bbe6-c452fe5749c7\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cognitive Services-Custom Vision\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/01cde781-0618-be89-60ce-14ca8e939c7d\",\r\n \"name\": \"01cde781-0618-be89-60ce-14ca8e939c7d\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cognitive Services-Face API\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/7faf083e-7dd5-a35b-ba18-52eeac29d9a1\",\r\n \"name\": \"7faf083e-7dd5-a35b-ba18-52eeac29d9a1\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cognitive Services-LUIS\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/9a2cd2eb-f793-9717-a145-3497086f40b4\",\r\n \"name\": \"9a2cd2eb-f793-9717-a145-3497086f40b4\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cognitive Services-QnA Maker\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/8d2d990b-173c-fbee-3913-05e3f338b67b\",\r\n \"name\": \"8d2d990b-173c-fbee-3913-05e3f338b67b\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cognitive Services-Speech Services\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b1bfd43f-f4f6-7e3c-4a01-ed74b71b6dd7\",\r\n \"name\": \"b1bfd43f-f4f6-7e3c-4a01-ed74b71b6dd7\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cognitive Services-Text Analytics\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/4bc4301f-b40e-080d-9252-a523f88a16e7\",\r\n \"name\": \"4bc4301f-b40e-080d-9252-a523f88a16e7\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cognitive Services-Translator Text\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/fd718335-8143-4759-bb14-cf7cff4f585e\",\r\n \"name\": \"fd718335-8143-4759-bb14-cf7cff4f585e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Container Instances\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CONTAINERINSTANCE/CONTAINERGROUPS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/f100a6d5-17df-c517-a2bc-ecc2a5bfb975\",\r\n \"name\": \"f100a6d5-17df-c517-a2bc-ecc2a5bfb975\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Container Registry\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CONTAINERREGISTRY/REGISTRIES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/d9516a10-74b5-45f4-943d-a5281d7cf1bb\",\r\n \"name\": \"d9516a10-74b5-45f4-943d-a5281d7cf1bb\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cosmos DB\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/53cdda84-33c0-81db-6a25-adaac64419d6\",\r\n \"name\": \"53cdda84-33c0-81db-6a25-adaac64419d6\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"CycleCloud\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/a091fbc6-3624-42e8-4b3c-654a29d6958e\",\r\n \"name\": \"a091fbc6-3624-42e8-4b3c-654a29d6958e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Data Box\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DATABOX/JOBS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/9a7df480-f592-a980-906c-bd1fd3060aa8\",\r\n \"name\": \"9a7df480-f592-a980-906c-bd1fd3060aa8\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Data Catalog\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DATACATALOG/CATALOGS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/0d06686e-fac3-fde3-a8c1-6dfbc8bd3865\",\r\n \"name\": \"0d06686e-fac3-fde3-a8c1-6dfbc8bd3865\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Data Explorer\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Kusto/Clusters\",\r\n \"Microsoft.Kusto/Databases\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/113715b9-70c6-3019-fa70-5d9f0c15c610\",\r\n \"name\": \"113715b9-70c6-3019-fa70-5d9f0c15c610\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Data Factory\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DATAFACTORY/DATAFACTORIES\",\r\n \"MICROSOFT.DATAFACTORY/FACTORIES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/eea96939-cf20-792a-ed0a-f11eb11336df\",\r\n \"name\": \"eea96939-cf20-792a-ed0a-f11eb11336df\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Data Lake Analytics\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DATALAKEANALYTICS/ACCOUNTS\",\r\n \"MICROSOFT.DATALAKEANALYTICS/ACCOUNTS/STORAGEACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/7ecbaeae-c1bc-285f-a3bd-b5a3ba00b294\",\r\n \"name\": \"7ecbaeae-c1bc-285f-a3bd-b5a3ba00b294\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Data Lake Storage Gen1\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DATALAKESTORE/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/a95c4ceb-9637-4484-2205-d1162a7d2249\",\r\n \"name\": \"a95c4ceb-9637-4484-2205-d1162a7d2249\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Data Lake Storage Gen2\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.STORAGE/STORAGEACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/0c1a625e-85d1-f83b-7248-2367293c9d85\",\r\n \"name\": \"0c1a625e-85d1-f83b-7248-2367293c9d85\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Data Share\",\r\n \"resourceTypes\": [\r\n \"Microsoft.DataShare/accounts\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/8c615be4-9081-f10c-5866-afa4fab9666d\",\r\n \"name\": \"8c615be4-9081-f10c-5866-afa4fab9666d\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Database Migration Service\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DATAMIGRATION/SERVICES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/3461f86b-df79-07f2-aad9-34a81b2d9023\",\r\n \"name\": \"3461f86b-df79-07f2-aad9-34a81b2d9023\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Databricks\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DATABRICKS/WORKSPACES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/d22650a0-c129-647b-967c-fb18c83584c6\",\r\n \"name\": \"d22650a0-c129-647b-967c-fb18c83584c6\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"DDOS Protection\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NETWORK/DDOSPROTECTIONPLANS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b9c52334-7da1-7360-b396-0406b0c9d3b7\",\r\n \"name\": \"b9c52334-7da1-7360-b396-0406b0c9d3b7\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Dedicated Host\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Compute\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/7d1ce754-b825-74b6-8022-87193cd96b6e\",\r\n \"name\": \"7d1ce754-b825-74b6-8022-87193cd96b6e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Dedicated HSM\",\r\n \"resourceTypes\": [\r\n \"Microsoft.HardwareSecurityModules/DedicatedHSM\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/1977ac05-0469-1162-4947-d733fb83040e\",\r\n \"name\": \"1977ac05-0469-1162-4947-d733fb83040e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Deployment Manager Service Topology - Preview\",\r\n \"resourceTypes\": [\r\n \"Microsoft.DeploymentManager\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/39dc26f0-c1b1-2323-c39f-3ae3860e0c37\",\r\n \"name\": \"39dc26f0-c1b1-2323-c39f-3ae3860e0c37\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Diagnostic Logs and Diagnostic Settings\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/f17737cc-a073-8ec8-04a9-a3f19c631dea\",\r\n \"name\": \"f17737cc-a073-8ec8-04a9-a3f19c631dea\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Digital Twins - Preview\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.IOTCENTRAL/IOTAPPS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/a79c6645-e39b-3410-6e3c-24c6b96b616b\",\r\n \"name\": \"a79c6645-e39b-3410-6e3c-24c6b96b616b\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Enrollment administration\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/bfe4c4f0-96eb-41a9-a9aa-23a3b5ed9974\",\r\n \"name\": \"bfe4c4f0-96eb-41a9-a9aa-23a3b5ed9974\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Event Grid\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.EVENTGRID/TOPICS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/4fa35c58-016c-a25b-4105-bd667c24ab1f\",\r\n \"name\": \"4fa35c58-016c-a25b-4105-bd667c24ab1f\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Event Hubs\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.EVENTHUB/NAMESPACES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/48ffed53-baf4-c26a-c7a1-4bea807be2a0\",\r\n \"name\": \"48ffed53-baf4-c26a-c7a1-4bea807be2a0\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Event Hubs on Azure Stack Hub - Preview\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/759b4975-eee7-178d-6996-31047d078bf2\",\r\n \"name\": \"759b4975-eee7-178d-6996-31047d078bf2\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"ExpressRoute\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NETWORK/EXPRESSROUTECIRCUITS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/ce989245-7b7b-ab4f-ac5a-a4ca2ee9d2a2\",\r\n \"name\": \"ce989245-7b7b-ab4f-ac5a-a4ca2ee9d2a2\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"ExpressRoute Service Provider\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/30dfd88b-b455-1748-a4a0-e4c5aa795663\",\r\n \"name\": \"30dfd88b-b455-1748-a4a0-e4c5aa795663\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Files Storage\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICSTORAGE/STORAGEACCOUNTS\",\r\n \"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\r\n \"MICROSOFT.STORAGESYNC/STORAGESYNCSERVICES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/fafcf178-45ee-85df-ef14-982729bf2f82\",\r\n \"name\": \"fafcf178-45ee-85df-ef14-982729bf2f82\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Front Door Service\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NETWORK/FRONTDOORS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/5ce8de69-abba-65a0-e0e4-a684bcbc7931\",\r\n \"name\": \"5ce8de69-abba-65a0-e0e4-a684bcbc7931\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Function App\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.WEB/SITES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/5ffad63a-3267-d6b7-2fa1-6d9134c1fa62\",\r\n \"name\": \"5ffad63a-3267-d6b7-2fa1-6d9134c1fa62\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"HDInsight Service\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/e00b1ed8-fc24-fef4-6f4c-36d963708ae1\",\r\n \"name\": \"e00b1ed8-fc24-fef4-6f4c-36d963708ae1\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"High Performance Computing (HPC)\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6b415938-2927-0d9d-6c3c-fbacea64e42d\",\r\n \"name\": \"6b415938-2927-0d9d-6c3c-fbacea64e42d\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"HPC Cache\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/602a2167-4975-c8c4-6db6-5bf1081d80ec\",\r\n \"name\": \"602a2167-4975-c8c4-6db6-5bf1081d80ec\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Insights for Storage Accounts\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICSTORAGE/STORAGEACCOUNTS\",\r\n \"MICROSOFT.STORAGE/STORAGEACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/65e73690-23aa-be68-83be-a6b9bd188345\",\r\n \"name\": \"65e73690-23aa-be68-83be-a6b9bd188345\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Integration Service Environment (ISE)\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.LOGIC/WORKFLOWS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/fb35bf64-b744-16ba-68d1-e1853af0816e\",\r\n \"name\": \"fb35bf64-b744-16ba-68d1-e1853af0816e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"IoT Central\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.IOTCENTRAL/IOTAPPS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/ea37799f-166b-c702-e4d1-e17fa52b2984\",\r\n \"name\": \"ea37799f-166b-c702-e4d1-e17fa52b2984\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"IoT Device Provisioning Service\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DEVICES/PROVISIONINGSERVICES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/0ebfa061-1e74-5f8f-ed46-5a46e13e5d33\",\r\n \"name\": \"0ebfa061-1e74-5f8f-ed46-5a46e13e5d33\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"IoT Edge\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DEVICES/IOTHUBS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b8b1c1dd-dfe1-63e8-cc06-e6a1a1c5a853\",\r\n \"name\": \"b8b1c1dd-dfe1-63e8-cc06-e6a1a1c5a853\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"IoT Hub\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DEVICES/IOTHUBS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/4ba83714-c274-28d6-af7f-43c12863bf2f\",\r\n \"name\": \"4ba83714-c274-28d6-af7f-43c12863bf2f\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"IoT SDKs\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DEVICES/IOTHUBS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/00850ac8-e19a-8756-3969-3c1d5ef60c84\",\r\n \"name\": \"00850ac8-e19a-8756-3969-3c1d5ef60c84\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"IoT Solution Accelerators\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/0283d26b-bad8-f0e2-37f4-86dc0328c710\",\r\n \"name\": \"0283d26b-bad8-f0e2-37f4-86dc0328c710\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Key Vault\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.KEYVAULT/VAULTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/5a3a423f-8667-9095-1770-0a554a934512\",\r\n \"name\": \"5a3a423f-8667-9095-1770-0a554a934512\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Kubernetes Service (AKS)\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CONTAINERSERVICE/MANAGEDCLUSTERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b8925cb6-338d-9b0c-2655-1ef611982fc4\",\r\n \"name\": \"b8925cb6-338d-9b0c-2655-1ef611982fc4\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Lab Services and DevTest Labs\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DEVTESTLAB/LABS\",\r\n \"MICROSOFT.LABSERVICES/LABACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b0882e3d-d09c-ca61-725b-b5d318365454\",\r\n \"name\": \"b0882e3d-d09c-ca61-725b-b5d318365454\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Lighthouse\",\r\n \"resourceTypes\": [\r\n \"Microsoft.ManagedServices\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/7b29574f-b855-9dec-9b08-fe4aeaa3bbc0\",\r\n \"name\": \"7b29574f-b855-9dec-9b08-fe4aeaa3bbc0\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Load Balancer\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NETWORK/LOADBALANCERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/1bfb8072-ed96-9acc-b57c-34d716b5f674\",\r\n \"name\": \"1bfb8072-ed96-9acc-b57c-34d716b5f674\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Log Analytics\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.OPERATIONALINSIGHTS/WORKSPACES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/9239daee-9951-e495-0aee-bf6b73708882\",\r\n \"name\": \"9239daee-9951-e495-0aee-bf6b73708882\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Logic App\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.LOGIC/WORKFLOWS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/a1799293-1194-133d-4407-156c57152643\",\r\n \"name\": \"a1799293-1194-133d-4407-156c57152643\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Machine Learning\",\r\n \"resourceTypes\": [\r\n \"Microsoft.MachineLearningServices/workspaces\",\r\n \"Microsoft.MachineLearningServices\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/afd16b5d-3a02-dd9d-8f7f-9768a7345f81\",\r\n \"name\": \"afd16b5d-3a02-dd9d-8f7f-9768a7345f81\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Machine Learning Studio\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.MACHINELEARNING/WORKSPACES\",\r\n \"MICROSOFT.MACHINELEARNING/COMMITMENTPLANS\",\r\n \"MICROSOFT.MACHINELEARNING/WEBSERVICES\",\r\n \"MICROSOFT.MACHINELEARNINGEXPERIMENTATION/ACCOUNTS\",\r\n \"MICROSOFT.MACHINELEARNINGMODELMANAGEMENT/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/4600d245-9a8d-be9c-b0b7-945467c24186\",\r\n \"name\": \"4600d245-9a8d-be9c-b0b7-945467c24186\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Managed Identities for Azure Resources\",\r\n \"resourceTypes\": [\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2c32f727-0b95-8324-22c8-b953c938833c\",\r\n \"name\": \"2c32f727-0b95-8324-22c8-b953c938833c\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Management Groups\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/c52a04cc-be90-03ef-d76e-80cd1b338fb3\",\r\n \"name\": \"c52a04cc-be90-03ef-d76e-80cd1b338fb3\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Maps\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.MAPS/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/efa0fcb8-3325-6eb7-b451-8e3a853aaead\",\r\n \"name\": \"efa0fcb8-3325-6eb7-b451-8e3a853aaead\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Media Service\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.MEDIA/MEDIASERVICES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/9636b9f4-3013-b4d0-1dbe-8b202575f592\",\r\n \"name\": \"9636b9f4-3013-b4d0-1dbe-8b202575f592\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Metrics\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/a96cb196-59fe-00a7-5ff7-889765d10494\",\r\n \"name\": \"a96cb196-59fe-00a7-5ff7-889765d10494\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Antimalware for Azure\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/3f816e19-cbf7-f192-a725-63c0ebe7d07d\",\r\n \"name\": \"3f816e19-cbf7-f192-a725-63c0ebe7d07d\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Genomics\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/e76cbe81-8c12-1f2f-85c7-6064644116a4\",\r\n \"name\": \"e76cbe81-8c12-1f2f-85c7-6064644116a4\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Graph Authentication and Authorization (Azure AD)\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/437e7d94-a4b3-68bd-a23a-087f528d47dd\",\r\n \"name\": \"437e7d94-a4b3-68bd-a23a-087f528d47dd\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Graph Files, Sites and Lists APIs\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/af52d398-4ddb-1e1d-2c6c-6767634b015e\",\r\n \"name\": \"af52d398-4ddb-1e1d-2c6c-6767634b015e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Graph Messages, Calendar and Contacts APIs\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/c9a40005-5758-83c0-32b8-9e7910c21595\",\r\n \"name\": \"c9a40005-5758-83c0-32b8-9e7910c21595\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Graph Other Microsoft Graph APIs\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/46c9bb77-3f94-f481-375c-911d8f0f9a0e\",\r\n \"name\": \"46c9bb77-3f94-f481-375c-911d8f0f9a0e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Graph Teamwork APIs (Teams)\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/53aa5987-de52-9110-f612-9fe34980e53a\",\r\n \"name\": \"53aa5987-de52-9110-f612-9fe34980e53a\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Graph Users, Groups, and Identity and Access APIs\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/8ab9233e-aa65-ab0a-cf6f-7e4ec528556a\",\r\n \"name\": \"8ab9233e-aa65-ab0a-cf6f-7e4ec528556a\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Healthcare Bot Service\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/389d15a1-c6fa-bbb6-f3fd-523a62a2b3c5\",\r\n \"name\": \"389d15a1-c6fa-bbb6-f3fd-523a62a2b3c5\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Intune\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/ec9779ed-b811-79e3-38ab-534ce832bfa5\",\r\n \"name\": \"ec9779ed-b811-79e3-38ab-534ce832bfa5\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Machine Learning Server (R Server)\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/004289a5-11b0-8289-47ea-f2b4c62c4a47\",\r\n \"name\": \"004289a5-11b0-8289-47ea-f2b4c62c4a47\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Mobile App\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.WEB/SITES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b7743438-942e-ef29-9abc-589fd697fb9e\",\r\n \"name\": \"b7743438-942e-ef29-9abc-589fd697fb9e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Network Performance Monitor (NPM)\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/01c5defa-028b-c44f-cefa-e5d836887f2e\",\r\n \"name\": \"01c5defa-028b-c44f-cefa-e5d836887f2e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Network Virtual Appliance\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/29297681-a8c0-eaa9-341f-f72630a5b9c3\",\r\n \"name\": \"29297681-a8c0-eaa9-341f-f72630a5b9c3\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Network Watcher\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b9710604-e660-5d57-1b18-3aef73bd21d3\",\r\n \"name\": \"b9710604-e660-5d57-1b18-3aef73bd21d3\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Notification Hub\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NOTIFICATIONHUBS/NAMESPACES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/176fac6b-1982-68b4-6f2e-3e5d3a0c99a4\",\r\n \"name\": \"176fac6b-1982-68b4-6f2e-3e5d3a0c99a4\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Open Datasets\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/fae15df4-4549-8074-e6ab-11ca2b5a1645\",\r\n \"name\": \"fae15df4-4549-8074-e6ab-11ca2b5a1645\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Peering Service - Preview\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Network\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/10b4ca52-06e3-3064-3788-5b396ae8ff45\",\r\n \"name\": \"10b4ca52-06e3-3064-3788-5b396ae8ff45\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Policy\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6d3f465f-843e-e142-40aa-fd1eda4c80c8\",\r\n \"name\": \"6d3f465f-843e-e142-40aa-fd1eda4c80c8\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Portal\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/3faebc17-db7f-212f-8536-9a5048474831\",\r\n \"name\": \"3faebc17-db7f-212f-8536-9a5048474831\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Power BI Embedded\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.POWERBIDEDICATED/CAPACITIES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/5d4f816f-f02c-f8f8-a8f4-423509f8b036\",\r\n \"name\": \"5d4f816f-f02c-f8f8-a8f4-423509f8b036\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Queue Storage\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICSTORAGE/STORAGEACCOUNTS\",\r\n \"MICROSOFT.STORAGE/STORAGEACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/351dadd2-b167-7960-06bc-be843b705826\",\r\n \"name\": \"351dadd2-b167-7960-06bc-be843b705826\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Relay\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.RELAY/NAMESPACES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/c2804d27-8e0a-f2a3-8540-f4318f539ff6\",\r\n \"name\": \"c2804d27-8e0a-f2a3-8540-f4318f539ff6\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Role Based Access Control (RBAC) for Azure Resources (IAM)\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/4b42e182-ce1c-ee75-e32b-e85fe73d6fbb\",\r\n \"name\": \"4b42e182-ce1c-ee75-e32b-e85fe73d6fbb\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"SAP Cloud Platform\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/dd1ed832-cfdd-b06b-d11b-77b590a10d4c\",\r\n \"name\": \"dd1ed832-cfdd-b06b-d11b-77b590a10d4c\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"SAP HANA Large Instance\",\r\n \"resourceTypes\": [\r\n \"Microsoft.HanaonAzure/hanaInstances\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/1b9679f1-9cb9-a8db-549e-2fcdfbb89e7c\",\r\n \"name\": \"1b9679f1-9cb9-a8db-549e-2fcdfbb89e7c\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Search\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.SEARCH/SEARCHSERVICES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/fb1b37f8-2716-86c2-c2e1-684b5292d401\",\r\n \"name\": \"fb1b37f8-2716-86c2-c2e1-684b5292d401\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Security Center\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/06bfd9d3-516b-d5c6-5802-169c800dec89\",\r\n \"name\": \"06bfd9d3-516b-d5c6-5802-169c800dec89\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Service and subscription limits (quotas)\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/23e2c469-4b37-ebf5-0a3f-72e8b1407301\",\r\n \"name\": \"23e2c469-4b37-ebf5-0a3f-72e8b1407301\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Service Bus\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.SERVICEBUS/NAMESPACES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/7fa9504c-364e-66b7-830e-f1333a2e4fe4\",\r\n \"name\": \"7fa9504c-364e-66b7-830e-f1333a2e4fe4\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Service Catalog\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Solutions/applicationDefinitions\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/a730ab7a-33ae-c83a-bca5-4935433e38ff\",\r\n \"name\": \"a730ab7a-33ae-c83a-bca5-4935433e38ff\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Service Fabric\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.SERVICEFABRIC/CLUSTERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/a76b7230-2d2f-b294-8189-319db5e5d116\",\r\n \"name\": \"a76b7230-2d2f-b294-8189-319db5e5d116\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Service Fabric on Linux\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/bfd77156-870d-17ee-c9d1-5450f390f63f\",\r\n \"name\": \"bfd77156-870d-17ee-c9d1-5450f390f63f\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"SignalR Service\",\r\n \"resourceTypes\": [\r\n \"Microsoft.SignalRService/SignalR\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/e4ddc3b0-1e6d-aaa2-4279-8e5027351d76\",\r\n \"name\": \"e4ddc3b0-1e6d-aaa2-4279-8e5027351d76\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Spatial Anchors – Preview\",\r\n \"resourceTypes\": [\r\n \"Microsoft.MixedReality\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/bbc183d4-df10-8580-d10b-4123c10ae34d\",\r\n \"name\": \"bbc183d4-df10-8580-d10b-4123c10ae34d\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Spring Cloud - Preview\",\r\n \"resourceTypes\": [\r\n \"Microsoft.AppPlatform/Spring\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/95412dd5-f222-a91f-98a6-144a84418c66\",\r\n \"name\": \"95412dd5-f222-a91f-98a6-144a84418c66\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"SQL Database\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.SQL/SERVERS\",\r\n \"MICROSOFT.SQL/SERVERS/DATABASES\",\r\n \"MICROSOFT.SQL/SERVERS/ELASTICPOOLS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/9b629e89-4ea0-53ec-9409-1579b8c41453\",\r\n \"name\": \"9b629e89-4ea0-53ec-9409-1579b8c41453\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"SQL Database Managed Instance\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.SQL/MANAGEDINSTANCES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/40ef020e-8ae7-8d57-b538-9153c47cee69\",\r\n \"name\": \"40ef020e-8ae7-8d57-b538-9153c47cee69\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"SQL Server in VM - Linux\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/53b14ef9-9b69-4d8c-a458-b8e4c132a815\",\r\n \"name\": \"53b14ef9-9b69-4d8c-a458-b8e4c132a815\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"SQL Server in VM - Windows\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICCOMPUTE/VIRTUALMACHINES\",\r\n \"MICROSOFT.COMPUTE/VIRTUALMACHINES\",\r\n \"Microsoft.SqlVirtualMachine/sqlVirtualMachines\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/4046cf79-84e4-c890-4fdb-73137d6506a5\",\r\n \"name\": \"4046cf79-84e4-c890-4fdb-73137d6506a5\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"SQL Server Registry\",\r\n \"resourceTypes\": [\r\n \"Microsoft.AzureData/sqlServerRegistrations\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/effcf656-f62f-92f2-8cef-2b28aea2da1f\",\r\n \"name\": \"effcf656-f62f-92f2-8cef-2b28aea2da1f\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"SQL Server Stretch Database\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6a9c20ed-85c7-c289-d5e2-560da8f2a7c8\",\r\n \"name\": \"6a9c20ed-85c7-c289-d5e2-560da8f2a7c8\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Storage Account Management\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICSTORAGE/STORAGEACCOUNTS\",\r\n \"MICROSOFT.STORAGE/STORAGEACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/94c5f326-7ab1-6ef3-c3c0-8e0b5a584085\",\r\n \"name\": \"94c5f326-7ab1-6ef3-c3c0-8e0b5a584085\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Storage Explorer\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/ffe1bb13-3bb2-e99d-35fa-d0c165557f88\",\r\n \"name\": \"ffe1bb13-3bb2-e99d-35fa-d0c165557f88\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"StorSimple Data Manager\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.HYBRIDDATA/DATAMANAGERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/30e73728-5d13-cbf4-5c57-3036ed1067fd\",\r\n \"name\": \"30e73728-5d13-cbf4-5c57-3036ed1067fd\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Stream Analytics\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.STREAMANALYTICS/STREAMINGJOBS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/f3dc5421-79ef-1efa-41a5-42bf3cbb52c6\",\r\n \"name\": \"f3dc5421-79ef-1efa-41a5-42bf3cbb52c6\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Subscription management\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/8418caaf-4634-b4c0-d9b6-27c266b6b67b\",\r\n \"name\": \"8418caaf-4634-b4c0-d9b6-27c266b6b67b\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Table Storage\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICSTORAGE/STORAGEACCOUNTS\",\r\n \"MICROSOFT.STORAGE/STORAGEACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/e4d6b9b0-79d5-3133-c4db-460a39e8a622\",\r\n \"name\": \"e4d6b9b0-79d5-3133-c4db-460a39e8a622\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Time Series Insights\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.TIMESERIESINSIGHTS/ENVIRONMENTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/66fff2d6-c34e-ac9b-d1ba-6631ab20989e\",\r\n \"name\": \"66fff2d6-c34e-ac9b-d1ba-6631ab20989e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Traffic Manager – DNS based load balancing\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NETWORK/TRAFFICMANAGERPROFILES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/99dd2657-2a74-8c5a-951f-23abdd7851c6\",\r\n \"name\": \"99dd2657-2a74-8c5a-951f-23abdd7851c6\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Universal Print - Preview\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/393f9162-a29a-1e9f-1972-d524c7bc7026\",\r\n \"name\": \"393f9162-a29a-1e9f-1972-d524c7bc7026\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Video Indexer\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/722ccc66-c988-d2ac-1ec6-b7aebc857f2d\",\r\n \"name\": \"722ccc66-c988-d2ac-1ec6-b7aebc857f2d\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Machine running Citrix\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b6492139-637a-c445-ee02-5dc6749337c3\",\r\n \"name\": \"b6492139-637a-c445-ee02-5dc6749337c3\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Machine running Cloud Foundry\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc\",\r\n \"name\": \"cddd3eb5-1830-b494-44fd-782f691479dc\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Machine running Linux\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICCOMPUTE/VIRTUALMACHINES\",\r\n \"MICROSOFT.COMPUTE/VIRTUALMACHINES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87\",\r\n \"name\": \"de8937fc-74cc-daa7-2639-e1fe433dcb87\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Machine running RedHat\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICCOMPUTE/VIRTUALMACHINES\",\r\n \"MICROSOFT.COMPUTE/VIRTUALMACHINES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0\",\r\n \"name\": \"98e5cec8-2650-28c1-92e8-0ecaa232eec0\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Machine running SUSE\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Compute/virtualmachines\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7\",\r\n \"name\": \"2340ae8b-c745-572f-6ea8-661d68c08bd7\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Machine running Ubuntu\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICCOMPUTE/VIRTUALMACHINES\",\r\n \"MICROSOFT.COMPUTE/VIRTUALMACHINES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396\",\r\n \"name\": \"6f16735c-b0ae-b275-ad3a-03479cfa1396\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Machine running Windows\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICCOMPUTE/VIRTUALMACHINES\",\r\n \"MICROSOFT.COMPUTE/VIRTUALMACHINES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/e9e31931-21fa-d50a-e6e7-e37d5d784591\",\r\n \"name\": \"e9e31931-21fa-d50a-e6e7-e37d5d784591\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Machine Scale Sets\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.COMPUTE/VIRTUALMACHINESCALESETS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b25271d3-6431-dfbc-5f12-5693326809b3\",\r\n \"name\": \"b25271d3-6431-dfbc-5f12-5693326809b3\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Network\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NETWORK/VIRTUALNETWORKS\",\r\n \"MICROSOFT.CLASSICNETWORK/VIRTUALNETWORKS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/e980d0ab-c6c3-894b-8a1d-74564e159e3b\",\r\n \"name\": \"e980d0ab-c6c3-894b-8a1d-74564e159e3b\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Network NAT - Preview\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Network/NATGateways\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/d3b69052-33aa-55e7-6d30-ebb7040f9766\",\r\n \"name\": \"d3b69052-33aa-55e7-6d30-ebb7040f9766\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual WAN\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NETWORK/VIRTUALWANS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/5a813df8-0060-7015-892d-9f17015a6706\",\r\n \"name\": \"5a813df8-0060-7015-892d-9f17015a6706\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"VPN Gateway\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NETWORK/VIRTUALNETWORKGATEWAYS\",\r\n \"MICROSOFT.NETWORK/CONNECTIONS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b452a42b-3779-64de-532c-8a32738357a6\",\r\n \"name\": \"b452a42b-3779-64de-532c-8a32738357a6\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Web App (Linux)\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.WEB/SITES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/1890289e-747c-7ef6-b4f5-b1dbb0bead28\",\r\n \"name\": \"1890289e-747c-7ef6-b4f5-b1dbb0bead28\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Web App (Windows)\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.WEB/SITES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/d40f17bb-8b19-117c-f69a-d1be4187f657\",\r\n \"name\": \"d40f17bb-8b19-117c-f69a-d1be4187f657\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Web App for Containers\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.WEB/SITES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/63cefc01-98f2-7ef4-2b5f-0c4b268a7dad\",\r\n \"name\": \"63cefc01-98f2-7ef4-2b5f-0c4b268a7dad\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Windows Virtual Desktop\",\r\n \"resourceTypes\": []\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/484e2236-bc6d-b1bb-76d2-7d09278cf9ea\",\r\n \"name\": \"484e2236-bc6d-b1bb-76d2-7d09278cf9ea\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Activity Logs\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/809e8afe-489e-08b0-95f2-08f835a383e8\",\r\n \"name\": \"809e8afe-489e-08b0-95f2-08f835a383e8\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Advanced Threat Protection - Azure\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6859f4e8-4a1d-13e4-f276-6d055007e83d\",\r\n \"name\": \"6859f4e8-4a1d-13e4-f276-6d055007e83d\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Advanced Threat Protection - Microsoft Defender\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/94332e54-73b0-b8e3-306e-db3ad13d950b\",\r\n \"name\": \"94332e54-73b0-b8e3-306e-db3ad13d950b\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Advanced Threat Protection - O365\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/26d8424b-0a41-4443-cbc6-0309ea8708d0\",\r\n \"name\": \"26d8424b-0a41-4443-cbc6-0309ea8708d0\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Advisor\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/8f1ddc5f-0c5e-50c7-9810-e01a8d1da925\",\r\n \"name\": \"8f1ddc5f-0c5e-50c7-9810-e01a8d1da925\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"AKS Engine on Azure Stack Hub\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/c1840ac9-309f-f235-c0ae-4782f283b698\",\r\n \"name\": \"c1840ac9-309f-f235-c0ae-4782f283b698\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Alerts and Action Groups\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.INSIGHTS/ALERTRULES\",\r\n \"MICROSOFT.INSIGHTS/ACTIVITYLOGALERTS\",\r\n \"MICROSOFT.INSIGHTS/METRICALERTS\",\r\n \"MICROSOFT.INSIGHTS/SCHEDULEDQUERYRULES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/e8fe7c6f-d883-c57f-6576-cf801ca30653\",\r\n \"name\": \"e8fe7c6f-d883-c57f-6576-cf801ca30653\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Analysis Services\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.ANALYSISSERVICES/SERVERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/07651e65-958a-0877-36f3-61bbba85d783\",\r\n \"name\": \"07651e65-958a-0877-36f3-61bbba85d783\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"API for FHIR\",\r\n \"resourceTypes\": [\r\n \"Microsoft.HealthcareApis\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b4d0e877-0166-0474-9a76-b5be30ba40e4\",\r\n \"name\": \"b4d0e877-0166-0474-9a76-b5be30ba40e4\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"API Management Service\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.APIMANAGEMENT/SERVICE\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/e14f616b-42c5-4515-3d7c-67935eece51a\",\r\n \"name\": \"e14f616b-42c5-4515-3d7c-67935eece51a\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"App Configuration\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Azconfig\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/445c0905-55e2-4f42-d853-ec9e17a5180e\",\r\n \"name\": \"445c0905-55e2-4f42-d853-ec9e17a5180e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"App Service Certificates\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CERTIFICATEREGISTRATION/CERTIFICATEORDERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b7d2f8b7-7d20-cf2f-ddd5-5543ada54bd2\",\r\n \"name\": \"b7d2f8b7-7d20-cf2f-ddd5-5543ada54bd2\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"App Service Domains\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DOMAINREGISTRATION/DOMAINS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/101732bb-31af-ee61-7c16-d4ad77c86a50\",\r\n \"name\": \"101732bb-31af-ee61-7c16-d4ad77c86a50\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Application Gateway\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NETWORK/APPLICATIONGATEWAYS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/63df7848-ce1c-06d4-517f-2a62983372c6\",\r\n \"name\": \"63df7848-ce1c-06d4-517f-2a62983372c6\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Application Insights\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.INSIGHTS/COMPONENTS\",\r\n \"MICROSOFT.INSIGHTS/ACTIVITYLOGALERTS\",\r\n \"MICROSOFT.INSIGHTS/METRICALERTS\",\r\n \"MICROSOFT.INSIGHTS/SCHEDULEDQUERYRULES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2fd37acf-7616-eae7-546b-1a78a16d11b5\",\r\n \"name\": \"2fd37acf-7616-eae7-546b-1a78a16d11b5\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"ASE\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.WEB/HOSTINGENVIRONMENTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/90426252-f966-63ea-cbda-cab5ceaa865d\",\r\n \"name\": \"90426252-f966-63ea-cbda-cab5ceaa865d\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Automation\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.AUTOMATION/AUTOMATIONACCOUNTS\",\r\n \"MICROSOFT.AUTOMATION/AUTOMATIONACCOUNTS/RUNBOOKS\",\r\n \"MICROSOFT.AUTOMATION/AUTOMATIONACCOUNTS/JOBS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/82881226-e06c-2b57-3365-38437e84059e\",\r\n \"name\": \"82881226-e06c-2b57-3365-38437e84059e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Autoscale\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.INSIGHTS/AUTOSCALESETTINGS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/500d88b2-c24c-0d5d-3b76-acfde7d6ee20\",\r\n \"name\": \"500d88b2-c24c-0d5d-3b76-acfde7d6ee20\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Avere vFXT\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/7505036e-a364-8354-e894-56d394dd4a61\",\r\n \"name\": \"7505036e-a364-8354-e894-56d394dd4a61\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Active Directory App Integration and Development\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b16f3aa1-e798-0090-9159-5dc3bae17c5b\",\r\n \"name\": \"b16f3aa1-e798-0090-9159-5dc3bae17c5b\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Active Directory Business To Consumer (B2C)\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/3a36c1ba-f910-91c3-9f17-075d63c9488a\",\r\n \"name\": \"3a36c1ba-f910-91c3-9f17-075d63c9488a\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Active Directory Directories, Domains, and Objects\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/a69d6bc1-d1db-61e6-2668-451ae3784f86\",\r\n \"name\": \"a69d6bc1-d1db-61e6-2668-451ae3784f86\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Active Directory Domain Services (VM – Domain Controllers)\",\r\n \"resourceTypes\": [\r\n \"Microsoft.AAD/DomainServices\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b98631b1-d53a-3ac4-3181-aef136ec703d\",\r\n \"name\": \"b98631b1-d53a-3ac4-3181-aef136ec703d\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Active Directory Governance, Compliance and Reporting\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/516fe906-3a1a-2878-02fd-8dd37ea207de\",\r\n \"name\": \"516fe906-3a1a-2878-02fd-8dd37ea207de\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Active Directory Sign-In and Multi-Factor Authentication\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/38a234dd-6baf-d93b-2c48-5a735a3550ed\",\r\n \"name\": \"38a234dd-6baf-d93b-2c48-5a735a3550ed\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Active Directory User Provisioning and Synchronization\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/17318db1-cfda-52da-b65f-68e53ba89e64\",\r\n \"name\": \"17318db1-cfda-52da-b65f-68e53ba89e64\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Arc for servers\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/17d72dfc-8f48-94cb-05e6-5f88efdf72d7\",\r\n \"name\": \"17d72dfc-8f48-94cb-05e6-5f88efdf72d7\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Backup\",\r\n \"resourceTypes\": [\r\n \"Microsoft.RecoveryServices/vaults\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/76b41038-ae2e-0cb8-32f8-a575b98d07ae\",\r\n \"name\": \"76b41038-ae2e-0cb8-32f8-a575b98d07ae\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Blockchain Service - Preview\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Blockchain\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\",\r\n \"name\": \"58cf91d7-3a04-37d3-9818-9bd5c979d9a9\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure CDN\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/3f14906b-a48e-b51a-d700-b3eb7784bce8\",\r\n \"name\": \"3f14906b-a48e-b51a-d700-b3eb7784bce8\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Database for MariaDB\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DBFORMARIADB/SERVERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/17c72f78-cb09-bc5b-9b99-f3d618e1f057\",\r\n \"name\": \"17c72f78-cb09-bc5b-9b99-f3d618e1f057\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Database for MySQL\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DBFORMYSQL/SERVERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/d4d4e6ba-73e5-a166-549b-4643b78f4d6f\",\r\n \"name\": \"d4d4e6ba-73e5-a166-549b-4643b78f4d6f\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Database for PostgreSQL\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DBFORPOSTGRESQL/SERVERS\",\r\n \"MICROSOFT.DBFORPOSTGRESQL/SERVERSV2\",\r\n \"MICROSOFT.DBFORPOSTGRESQL/SERVERGROUPS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/197bc2a0-4681-2302-f03f-ba9abbcdaddb\",\r\n \"name\": \"197bc2a0-4681-2302-f03f-ba9abbcdaddb\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Dev Spaces\",\r\n \"resourceTypes\": [\r\n \"DevTools\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cd9d74ec-8333-b326-f42f-303e223e04eb\",\r\n \"name\": \"cd9d74ec-8333-b326-f42f-303e223e04eb\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure DevOps Services\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Visualstudio\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/f0269138-eb6e-a81a-10e9-17965b5683d4\",\r\n \"name\": \"f0269138-eb6e-a81a-10e9-17965b5683d4\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure DNS\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NETWORK/DNSZONES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/3b799b70-420a-6397-e69c-853341d0eab5\",\r\n \"name\": \"3b799b70-420a-6397-e69c-853341d0eab5\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Firewall\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Network/azureFirewalls\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/f1e803c0-d4aa-156d-8507-3f9e5e4e1504\",\r\n \"name\": \"f1e803c0-d4aa-156d-8507-3f9e5e4e1504\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Firewall Manager - Preview\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Network/firewallPolicies\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/3d598a6c-5432-adab-e87a-1dfdbb562302\",\r\n \"name\": \"3d598a6c-5432-adab-e87a-1dfdbb562302\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure FXT Edge Filer\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/8168c456-2014-a581-dde8-d25e47d964c8\",\r\n \"name\": \"8168c456-2014-a581-dde8-d25e47d964c8\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Information Protection\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/e29406fa-af70-5215-e29b-9c9b7f5204d3\",\r\n \"name\": \"e29406fa-af70-5215-e29b-9c9b7f5204d3\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Kinect Dev Kit\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/ef44dd7b-4344-edcf-2eb1-f6f094fd46a3\",\r\n \"name\": \"ef44dd7b-4344-edcf-2eb1-f6f094fd46a3\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Migrate\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Migrate/migrateProjects\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/06d6dec8-469a-b652-f8e8-61e47c34efef\",\r\n \"name\": \"06d6dec8-469a-b652-f8e8-61e47c34efef\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure mobile app (for Android & iOS)\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/00743e6b-ddfd-e1cb-b90e-2a9f8d1c2a52\",\r\n \"name\": \"00743e6b-ddfd-e1cb-b90e-2a9f8d1c2a52\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure NetApp Files\",\r\n \"resourceTypes\": [\r\n \"Microsoft.NetApp/netAppAccounts\",\r\n \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/50cb0c81-4dee-0e4e-d7bd-caa5560e76af\",\r\n \"name\": \"50cb0c81-4dee-0e4e-d7bd-caa5560e76af\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Private Link\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Network/privateLinkServices\",\r\n \"Microsoft.Network/privateEndpoints\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b701b8d6-fc99-aba8-bab9-bc2e171fa89c\",\r\n \"name\": \"b701b8d6-fc99-aba8-bab9-bc2e171fa89c\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure RedHat OpenShift\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cb6b214b-fbeb-8fd1-a055-3d60bbe81c28\",\r\n \"name\": \"cb6b214b-fbeb-8fd1-a055-3d60bbe81c28\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Resource Graph\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/9cd60433-a646-8748-7e7f-fd0781fea78e\",\r\n \"name\": \"9cd60433-a646-8748-7e7f-fd0781fea78e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Sentinel\",\r\n \"resourceTypes\": [\r\n \"Microsoft.SecurityInsights\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b1d432df-e9cc-ff08-d261-32586b843bc1\",\r\n \"name\": \"b1d432df-e9cc-ff08-d261-32586b843bc1\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Site Recovery\",\r\n \"resourceTypes\": [\r\n \"Microsoft.RecoveryServices/vaults\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/a6475480-6048-1d77-76fc-3118551f24c1\",\r\n \"name\": \"a6475480-6048-1d77-76fc-3118551f24c1\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Sphere\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2950380d-f11a-136b-1b95-017b71f25ef8\",\r\n \"name\": \"2950380d-f11a-136b-1b95-017b71f25ef8\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Stack Edge and Data Box Gateway\",\r\n \"resourceTypes\": [\r\n \"Microsoft.DataBoxEdge/DataBoxEdgeDevices\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/32d322a8-acae-202d-e9a9-7371dccf381b\",\r\n \"name\": \"32d322a8-acae-202d-e9a9-7371dccf381b\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Stack Hub\",\r\n \"resourceTypes\": [\r\n \"Microsoft.AzureStack/registrations\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/1dcbb98a-fbff-9e2a-08c6-0f1fbe934906\",\r\n \"name\": \"1dcbb98a-fbff-9e2a-08c6-0f1fbe934906\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure StorSimple 1200 Series\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.STORSIMPLE/MANAGERS\",\r\n \"MICROSOFT.STORSIMPLEBVTD2/MANAGERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/9fccedfd-3d56-635e-e377-c72e2cdb402f\",\r\n \"name\": \"9fccedfd-3d56-635e-e377-c72e2cdb402f\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure StorSimple 8000 Series\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.STORSIMPLE/MANAGERS\",\r\n \"MICROSOFT.STORSIMPLEBVTD2/MANAGERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/20c0b7e3-3084-2fc5-5530-1ff0cc21e885\",\r\n \"name\": \"20c0b7e3-3084-2fc5-5530-1ff0cc21e885\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Synapse Analytics\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.SQL/SERVERS\",\r\n \"MICROSOFT.SQL/SERVERS/DATABASES\",\r\n \"Microsoft.Synapse\",\r\n \"MICROSOFT.SYNAPSE/WORKSPACES\",\r\n \"MICROSOFT.SYNAPSE/WORKSPACES/BIGDATAPOOLS\",\r\n \"MICROSOFT.SYNAPSE/WORKSPACES/SQLPOOLS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/440fc530-a802-3276-f67b-7c39d1c8e972\",\r\n \"name\": \"440fc530-a802-3276-f67b-7c39d1c8e972\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure VMware Solution by CloudSimple\",\r\n \"resourceTypes\": [\r\n \"Microsoft.VMwareCloudSimple\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/ffc9bb42-93e4-eb40-5421-ba3537f3a012\",\r\n \"name\": \"ffc9bb42-93e4-eb40-5421-ba3537f3a012\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Bastion\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Network/bastionHosts\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2bcd736d-e519-397d-e595-396f4e0cce88\",\r\n \"name\": \"2bcd736d-e519-397d-e595-396f4e0cce88\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Batch AI - Preview\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/3f33d852-e61f-d835-8217-a9a677d96914\",\r\n \"name\": \"3f33d852-e61f-d835-8217-a9a677d96914\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Batch Service\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.BATCH/BATCHACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc\",\r\n \"name\": \"517f2da6-78fd-0498-4e22-ad26996b1dfc\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Billing\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/a2c69e6c-34b6-fc5d-0f35-b496a071c28d\",\r\n \"name\": \"a2c69e6c-34b6-fc5d-0f35-b496a071c28d\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Blob Storage\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICSTORAGE/STORAGEACCOUNTS\",\r\n \"MICROSOFT.STORAGE/STORAGEACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/f26f06d5-c3b1-0372-8c5b-93a371ec434c\",\r\n \"name\": \"f26f06d5-c3b1-0372-8c5b-93a371ec434c\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Blueprint - Preview\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Blueprint/BLUEPRINTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98134488-9bd9-db12-619c-06636d1ee55e\",\r\n \"name\": \"98134488-9bd9-db12-619c-06636d1ee55e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Bot Service\",\r\n \"resourceTypes\": [\r\n \"Microsoft.BotService/botServices\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/275635f1-6a9b-cca1-af9e-c379b30890ff\",\r\n \"name\": \"275635f1-6a9b-cca1-af9e-c379b30890ff\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cache for Redis\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CACHE/REDIS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/7dc03991-4dcf-cf5a-904f-35a243ca5551\",\r\n \"name\": \"7dc03991-4dcf-cf5a-904f-35a243ca5551\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cloud App Security\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/e79dcabe-5f77-3326-2112-74487e1e5f78\",\r\n \"name\": \"e79dcabe-5f77-3326-2112-74487e1e5f78\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cloud Services (Web roles/Worker roles)\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICCOMPUTE/DOMAINNAMES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/70a6ce77-640d-fb3b-d2e2-942c479a929b\",\r\n \"name\": \"70a6ce77-640d-fb3b-d2e2-942c479a929b\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cloud Shell\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/87112f97-cf14-d714-03cb-28af2e422e31\",\r\n \"name\": \"87112f97-cf14-d714-03cb-28af2e422e31\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cognitive Services\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/00677266-37a0-73ba-d7c4-ad3c814b2b11\",\r\n \"name\": \"00677266-37a0-73ba-d7c4-ad3c814b2b11\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cognitive Services-Computer Vision\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6dfefaed-7312-8350-bbe6-c452fe5749c7\",\r\n \"name\": \"6dfefaed-7312-8350-bbe6-c452fe5749c7\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cognitive Services-Custom Vision\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/01cde781-0618-be89-60ce-14ca8e939c7d\",\r\n \"name\": \"01cde781-0618-be89-60ce-14ca8e939c7d\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cognitive Services-Face API\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/7faf083e-7dd5-a35b-ba18-52eeac29d9a1\",\r\n \"name\": \"7faf083e-7dd5-a35b-ba18-52eeac29d9a1\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cognitive Services-LUIS\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/9a2cd2eb-f793-9717-a145-3497086f40b4\",\r\n \"name\": \"9a2cd2eb-f793-9717-a145-3497086f40b4\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cognitive Services-QnA Maker\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/8d2d990b-173c-fbee-3913-05e3f338b67b\",\r\n \"name\": \"8d2d990b-173c-fbee-3913-05e3f338b67b\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cognitive Services-Speech Services\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b1bfd43f-f4f6-7e3c-4a01-ed74b71b6dd7\",\r\n \"name\": \"b1bfd43f-f4f6-7e3c-4a01-ed74b71b6dd7\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cognitive Services-Text Analytics\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/4bc4301f-b40e-080d-9252-a523f88a16e7\",\r\n \"name\": \"4bc4301f-b40e-080d-9252-a523f88a16e7\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cognitive Services-Translator Text\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/fd718335-8143-4759-bb14-cf7cff4f585e\",\r\n \"name\": \"fd718335-8143-4759-bb14-cf7cff4f585e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Container Instances\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CONTAINERINSTANCE/CONTAINERGROUPS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/f100a6d5-17df-c517-a2bc-ecc2a5bfb975\",\r\n \"name\": \"f100a6d5-17df-c517-a2bc-ecc2a5bfb975\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Container Registry\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CONTAINERREGISTRY/REGISTRIES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/d9516a10-74b5-45f4-943d-a5281d7cf1bb\",\r\n \"name\": \"d9516a10-74b5-45f4-943d-a5281d7cf1bb\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cosmos DB\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/53cdda84-33c0-81db-6a25-adaac64419d6\",\r\n \"name\": \"53cdda84-33c0-81db-6a25-adaac64419d6\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"CycleCloud\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/a091fbc6-3624-42e8-4b3c-654a29d6958e\",\r\n \"name\": \"a091fbc6-3624-42e8-4b3c-654a29d6958e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Data Box\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DATABOX/JOBS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/9a7df480-f592-a980-906c-bd1fd3060aa8\",\r\n \"name\": \"9a7df480-f592-a980-906c-bd1fd3060aa8\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Data Catalog\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DATACATALOG/CATALOGS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/0d06686e-fac3-fde3-a8c1-6dfbc8bd3865\",\r\n \"name\": \"0d06686e-fac3-fde3-a8c1-6dfbc8bd3865\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Data Explorer\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Kusto/Clusters\",\r\n \"Microsoft.Kusto/Databases\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/113715b9-70c6-3019-fa70-5d9f0c15c610\",\r\n \"name\": \"113715b9-70c6-3019-fa70-5d9f0c15c610\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Data Factory\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DATAFACTORY/DATAFACTORIES\",\r\n \"MICROSOFT.DATAFACTORY/FACTORIES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/eea96939-cf20-792a-ed0a-f11eb11336df\",\r\n \"name\": \"eea96939-cf20-792a-ed0a-f11eb11336df\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Data Lake Analytics\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DATALAKEANALYTICS/ACCOUNTS\",\r\n \"MICROSOFT.DATALAKEANALYTICS/ACCOUNTS/STORAGEACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/7ecbaeae-c1bc-285f-a3bd-b5a3ba00b294\",\r\n \"name\": \"7ecbaeae-c1bc-285f-a3bd-b5a3ba00b294\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Data Lake Storage Gen1\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DATALAKESTORE/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/a95c4ceb-9637-4484-2205-d1162a7d2249\",\r\n \"name\": \"a95c4ceb-9637-4484-2205-d1162a7d2249\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Data Lake Storage Gen2\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.STORAGE/STORAGEACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/0c1a625e-85d1-f83b-7248-2367293c9d85\",\r\n \"name\": \"0c1a625e-85d1-f83b-7248-2367293c9d85\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Data Share\",\r\n \"resourceTypes\": [\r\n \"Microsoft.DataShare/accounts\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/8c615be4-9081-f10c-5866-afa4fab9666d\",\r\n \"name\": \"8c615be4-9081-f10c-5866-afa4fab9666d\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Database Migration Service\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DATAMIGRATION/SERVICES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/3461f86b-df79-07f2-aad9-34a81b2d9023\",\r\n \"name\": \"3461f86b-df79-07f2-aad9-34a81b2d9023\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Databricks\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DATABRICKS/WORKSPACES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/d22650a0-c129-647b-967c-fb18c83584c6\",\r\n \"name\": \"d22650a0-c129-647b-967c-fb18c83584c6\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"DDOS Protection\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NETWORK/DDOSPROTECTIONPLANS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b9c52334-7da1-7360-b396-0406b0c9d3b7\",\r\n \"name\": \"b9c52334-7da1-7360-b396-0406b0c9d3b7\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Dedicated Host\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Compute\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/7d1ce754-b825-74b6-8022-87193cd96b6e\",\r\n \"name\": \"7d1ce754-b825-74b6-8022-87193cd96b6e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Dedicated HSM\",\r\n \"resourceTypes\": [\r\n \"Microsoft.HardwareSecurityModules/DedicatedHSM\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/1977ac05-0469-1162-4947-d733fb83040e\",\r\n \"name\": \"1977ac05-0469-1162-4947-d733fb83040e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Deployment Manager Service Topology - Preview\",\r\n \"resourceTypes\": [\r\n \"Microsoft.DeploymentManager\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/39dc26f0-c1b1-2323-c39f-3ae3860e0c37\",\r\n \"name\": \"39dc26f0-c1b1-2323-c39f-3ae3860e0c37\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Diagnostic Logs and Diagnostic Settings\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/f17737cc-a073-8ec8-04a9-a3f19c631dea\",\r\n \"name\": \"f17737cc-a073-8ec8-04a9-a3f19c631dea\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Digital Twins - Preview\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.IOTCENTRAL/IOTAPPS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/a79c6645-e39b-3410-6e3c-24c6b96b616b\",\r\n \"name\": \"a79c6645-e39b-3410-6e3c-24c6b96b616b\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Enrollment administration\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/bfe4c4f0-96eb-41a9-a9aa-23a3b5ed9974\",\r\n \"name\": \"bfe4c4f0-96eb-41a9-a9aa-23a3b5ed9974\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Event Grid\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.EVENTGRID/TOPICS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/4fa35c58-016c-a25b-4105-bd667c24ab1f\",\r\n \"name\": \"4fa35c58-016c-a25b-4105-bd667c24ab1f\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Event Hubs\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.EVENTHUB/NAMESPACES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/48ffed53-baf4-c26a-c7a1-4bea807be2a0\",\r\n \"name\": \"48ffed53-baf4-c26a-c7a1-4bea807be2a0\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Event Hubs on Azure Stack Hub - Preview\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/759b4975-eee7-178d-6996-31047d078bf2\",\r\n \"name\": \"759b4975-eee7-178d-6996-31047d078bf2\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"ExpressRoute\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NETWORK/EXPRESSROUTECIRCUITS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/ce989245-7b7b-ab4f-ac5a-a4ca2ee9d2a2\",\r\n \"name\": \"ce989245-7b7b-ab4f-ac5a-a4ca2ee9d2a2\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"ExpressRoute Service Provider\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/30dfd88b-b455-1748-a4a0-e4c5aa795663\",\r\n \"name\": \"30dfd88b-b455-1748-a4a0-e4c5aa795663\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Files Storage\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICSTORAGE/STORAGEACCOUNTS\",\r\n \"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\r\n \"MICROSOFT.STORAGESYNC/STORAGESYNCSERVICES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/fafcf178-45ee-85df-ef14-982729bf2f82\",\r\n \"name\": \"fafcf178-45ee-85df-ef14-982729bf2f82\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Front Door Service\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NETWORK/FRONTDOORS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/5ce8de69-abba-65a0-e0e4-a684bcbc7931\",\r\n \"name\": \"5ce8de69-abba-65a0-e0e4-a684bcbc7931\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Function App\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.WEB/SITES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/5ffad63a-3267-d6b7-2fa1-6d9134c1fa62\",\r\n \"name\": \"5ffad63a-3267-d6b7-2fa1-6d9134c1fa62\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"HDInsight Service\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/e00b1ed8-fc24-fef4-6f4c-36d963708ae1\",\r\n \"name\": \"e00b1ed8-fc24-fef4-6f4c-36d963708ae1\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"High Performance Computing (HPC)\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6b415938-2927-0d9d-6c3c-fbacea64e42d\",\r\n \"name\": \"6b415938-2927-0d9d-6c3c-fbacea64e42d\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"HPC Cache\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/602a2167-4975-c8c4-6db6-5bf1081d80ec\",\r\n \"name\": \"602a2167-4975-c8c4-6db6-5bf1081d80ec\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Insights for Storage Accounts\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICSTORAGE/STORAGEACCOUNTS\",\r\n \"MICROSOFT.STORAGE/STORAGEACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/65e73690-23aa-be68-83be-a6b9bd188345\",\r\n \"name\": \"65e73690-23aa-be68-83be-a6b9bd188345\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Integration Service Environment (ISE)\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.LOGIC/WORKFLOWS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/fb35bf64-b744-16ba-68d1-e1853af0816e\",\r\n \"name\": \"fb35bf64-b744-16ba-68d1-e1853af0816e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"IoT Central\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.IOTCENTRAL/IOTAPPS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/ea37799f-166b-c702-e4d1-e17fa52b2984\",\r\n \"name\": \"ea37799f-166b-c702-e4d1-e17fa52b2984\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"IoT Device Provisioning Service\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DEVICES/PROVISIONINGSERVICES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/0ebfa061-1e74-5f8f-ed46-5a46e13e5d33\",\r\n \"name\": \"0ebfa061-1e74-5f8f-ed46-5a46e13e5d33\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"IoT Edge\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DEVICES/IOTHUBS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b8b1c1dd-dfe1-63e8-cc06-e6a1a1c5a853\",\r\n \"name\": \"b8b1c1dd-dfe1-63e8-cc06-e6a1a1c5a853\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"IoT Hub\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DEVICES/IOTHUBS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/4ba83714-c274-28d6-af7f-43c12863bf2f\",\r\n \"name\": \"4ba83714-c274-28d6-af7f-43c12863bf2f\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"IoT SDKs\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DEVICES/IOTHUBS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/00850ac8-e19a-8756-3969-3c1d5ef60c84\",\r\n \"name\": \"00850ac8-e19a-8756-3969-3c1d5ef60c84\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"IoT Solution Accelerators\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/0283d26b-bad8-f0e2-37f4-86dc0328c710\",\r\n \"name\": \"0283d26b-bad8-f0e2-37f4-86dc0328c710\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Key Vault\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.KEYVAULT/VAULTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/5a3a423f-8667-9095-1770-0a554a934512\",\r\n \"name\": \"5a3a423f-8667-9095-1770-0a554a934512\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Kubernetes Service (AKS)\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CONTAINERSERVICE/MANAGEDCLUSTERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b8925cb6-338d-9b0c-2655-1ef611982fc4\",\r\n \"name\": \"b8925cb6-338d-9b0c-2655-1ef611982fc4\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Lab Services and DevTest Labs\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DEVTESTLAB/LABS\",\r\n \"MICROSOFT.LABSERVICES/LABACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b0882e3d-d09c-ca61-725b-b5d318365454\",\r\n \"name\": \"b0882e3d-d09c-ca61-725b-b5d318365454\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Lighthouse\",\r\n \"resourceTypes\": [\r\n \"Microsoft.ManagedServices\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/7b29574f-b855-9dec-9b08-fe4aeaa3bbc0\",\r\n \"name\": \"7b29574f-b855-9dec-9b08-fe4aeaa3bbc0\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Load Balancer\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NETWORK/LOADBALANCERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/1bfb8072-ed96-9acc-b57c-34d716b5f674\",\r\n \"name\": \"1bfb8072-ed96-9acc-b57c-34d716b5f674\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Log Analytics\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.OPERATIONALINSIGHTS/WORKSPACES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/9239daee-9951-e495-0aee-bf6b73708882\",\r\n \"name\": \"9239daee-9951-e495-0aee-bf6b73708882\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Logic App\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.LOGIC/WORKFLOWS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/a1799293-1194-133d-4407-156c57152643\",\r\n \"name\": \"a1799293-1194-133d-4407-156c57152643\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Machine Learning\",\r\n \"resourceTypes\": [\r\n \"Microsoft.MachineLearningServices/workspaces\",\r\n \"Microsoft.MachineLearningServices\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/afd16b5d-3a02-dd9d-8f7f-9768a7345f81\",\r\n \"name\": \"afd16b5d-3a02-dd9d-8f7f-9768a7345f81\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Machine Learning Studio\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.MACHINELEARNING/WORKSPACES\",\r\n \"MICROSOFT.MACHINELEARNING/COMMITMENTPLANS\",\r\n \"MICROSOFT.MACHINELEARNING/WEBSERVICES\",\r\n \"MICROSOFT.MACHINELEARNINGEXPERIMENTATION/ACCOUNTS\",\r\n \"MICROSOFT.MACHINELEARNINGMODELMANAGEMENT/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/4600d245-9a8d-be9c-b0b7-945467c24186\",\r\n \"name\": \"4600d245-9a8d-be9c-b0b7-945467c24186\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Managed Identities for Azure Resources\",\r\n \"resourceTypes\": [\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2c32f727-0b95-8324-22c8-b953c938833c\",\r\n \"name\": \"2c32f727-0b95-8324-22c8-b953c938833c\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Management Groups\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/c52a04cc-be90-03ef-d76e-80cd1b338fb3\",\r\n \"name\": \"c52a04cc-be90-03ef-d76e-80cd1b338fb3\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Maps\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.MAPS/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/efa0fcb8-3325-6eb7-b451-8e3a853aaead\",\r\n \"name\": \"efa0fcb8-3325-6eb7-b451-8e3a853aaead\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Media Service\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.MEDIA/MEDIASERVICES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/9636b9f4-3013-b4d0-1dbe-8b202575f592\",\r\n \"name\": \"9636b9f4-3013-b4d0-1dbe-8b202575f592\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Metrics\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/a96cb196-59fe-00a7-5ff7-889765d10494\",\r\n \"name\": \"a96cb196-59fe-00a7-5ff7-889765d10494\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Antimalware for Azure\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/3f816e19-cbf7-f192-a725-63c0ebe7d07d\",\r\n \"name\": \"3f816e19-cbf7-f192-a725-63c0ebe7d07d\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Genomics\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/e76cbe81-8c12-1f2f-85c7-6064644116a4\",\r\n \"name\": \"e76cbe81-8c12-1f2f-85c7-6064644116a4\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Graph Authentication and Authorization (Azure AD)\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/437e7d94-a4b3-68bd-a23a-087f528d47dd\",\r\n \"name\": \"437e7d94-a4b3-68bd-a23a-087f528d47dd\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Graph Files, Sites and Lists APIs\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/af52d398-4ddb-1e1d-2c6c-6767634b015e\",\r\n \"name\": \"af52d398-4ddb-1e1d-2c6c-6767634b015e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Graph Messages, Calendar and Contacts APIs\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/c9a40005-5758-83c0-32b8-9e7910c21595\",\r\n \"name\": \"c9a40005-5758-83c0-32b8-9e7910c21595\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Graph Other Microsoft Graph APIs\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/46c9bb77-3f94-f481-375c-911d8f0f9a0e\",\r\n \"name\": \"46c9bb77-3f94-f481-375c-911d8f0f9a0e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Graph Teamwork APIs (Teams)\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/53aa5987-de52-9110-f612-9fe34980e53a\",\r\n \"name\": \"53aa5987-de52-9110-f612-9fe34980e53a\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Graph Users, Groups, and Identity and Access APIs\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/8ab9233e-aa65-ab0a-cf6f-7e4ec528556a\",\r\n \"name\": \"8ab9233e-aa65-ab0a-cf6f-7e4ec528556a\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Healthcare Bot Service\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/389d15a1-c6fa-bbb6-f3fd-523a62a2b3c5\",\r\n \"name\": \"389d15a1-c6fa-bbb6-f3fd-523a62a2b3c5\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Intune\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/ec9779ed-b811-79e3-38ab-534ce832bfa5\",\r\n \"name\": \"ec9779ed-b811-79e3-38ab-534ce832bfa5\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Machine Learning Server (R Server)\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/004289a5-11b0-8289-47ea-f2b4c62c4a47\",\r\n \"name\": \"004289a5-11b0-8289-47ea-f2b4c62c4a47\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Mobile App\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.WEB/SITES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b7743438-942e-ef29-9abc-589fd697fb9e\",\r\n \"name\": \"b7743438-942e-ef29-9abc-589fd697fb9e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Network Performance Monitor (NPM)\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/01c5defa-028b-c44f-cefa-e5d836887f2e\",\r\n \"name\": \"01c5defa-028b-c44f-cefa-e5d836887f2e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Network Virtual Appliance\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/29297681-a8c0-eaa9-341f-f72630a5b9c3\",\r\n \"name\": \"29297681-a8c0-eaa9-341f-f72630a5b9c3\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Network Watcher\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b9710604-e660-5d57-1b18-3aef73bd21d3\",\r\n \"name\": \"b9710604-e660-5d57-1b18-3aef73bd21d3\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Notification Hub\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NOTIFICATIONHUBS/NAMESPACES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/176fac6b-1982-68b4-6f2e-3e5d3a0c99a4\",\r\n \"name\": \"176fac6b-1982-68b4-6f2e-3e5d3a0c99a4\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Open Datasets\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/fae15df4-4549-8074-e6ab-11ca2b5a1645\",\r\n \"name\": \"fae15df4-4549-8074-e6ab-11ca2b5a1645\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Peering Service - Preview\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Network\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/10b4ca52-06e3-3064-3788-5b396ae8ff45\",\r\n \"name\": \"10b4ca52-06e3-3064-3788-5b396ae8ff45\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Policy\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6d3f465f-843e-e142-40aa-fd1eda4c80c8\",\r\n \"name\": \"6d3f465f-843e-e142-40aa-fd1eda4c80c8\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Portal\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/3faebc17-db7f-212f-8536-9a5048474831\",\r\n \"name\": \"3faebc17-db7f-212f-8536-9a5048474831\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Power BI Embedded\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.POWERBIDEDICATED/CAPACITIES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/5d4f816f-f02c-f8f8-a8f4-423509f8b036\",\r\n \"name\": \"5d4f816f-f02c-f8f8-a8f4-423509f8b036\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Queue Storage\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICSTORAGE/STORAGEACCOUNTS\",\r\n \"MICROSOFT.STORAGE/STORAGEACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/351dadd2-b167-7960-06bc-be843b705826\",\r\n \"name\": \"351dadd2-b167-7960-06bc-be843b705826\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Relay\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.RELAY/NAMESPACES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/c2804d27-8e0a-f2a3-8540-f4318f539ff6\",\r\n \"name\": \"c2804d27-8e0a-f2a3-8540-f4318f539ff6\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Role Based Access Control (RBAC) for Azure Resources (IAM)\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/4b42e182-ce1c-ee75-e32b-e85fe73d6fbb\",\r\n \"name\": \"4b42e182-ce1c-ee75-e32b-e85fe73d6fbb\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"SAP Cloud Platform\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/dd1ed832-cfdd-b06b-d11b-77b590a10d4c\",\r\n \"name\": \"dd1ed832-cfdd-b06b-d11b-77b590a10d4c\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"SAP HANA Large Instance\",\r\n \"resourceTypes\": [\r\n \"Microsoft.HanaonAzure/hanaInstances\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/9417a0bf-452b-2a6f-0ba5-61f12cafea8a\",\r\n \"name\": \"9417a0bf-452b-2a6f-0ba5-61f12cafea8a\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Scheduler\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.SCHEDULER/JOBCOLLECTIONS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/1b9679f1-9cb9-a8db-549e-2fcdfbb89e7c\",\r\n \"name\": \"1b9679f1-9cb9-a8db-549e-2fcdfbb89e7c\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Search\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.SEARCH/SEARCHSERVICES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/fb1b37f8-2716-86c2-c2e1-684b5292d401\",\r\n \"name\": \"fb1b37f8-2716-86c2-c2e1-684b5292d401\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Security Center\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/06bfd9d3-516b-d5c6-5802-169c800dec89\",\r\n \"name\": \"06bfd9d3-516b-d5c6-5802-169c800dec89\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Service and subscription limits (quotas)\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/23e2c469-4b37-ebf5-0a3f-72e8b1407301\",\r\n \"name\": \"23e2c469-4b37-ebf5-0a3f-72e8b1407301\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Service Bus\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.SERVICEBUS/NAMESPACES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/7fa9504c-364e-66b7-830e-f1333a2e4fe4\",\r\n \"name\": \"7fa9504c-364e-66b7-830e-f1333a2e4fe4\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Service Catalog\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Solutions/applicationDefinitions\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/a730ab7a-33ae-c83a-bca5-4935433e38ff\",\r\n \"name\": \"a730ab7a-33ae-c83a-bca5-4935433e38ff\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Service Fabric\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.SERVICEFABRIC/CLUSTERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/a76b7230-2d2f-b294-8189-319db5e5d116\",\r\n \"name\": \"a76b7230-2d2f-b294-8189-319db5e5d116\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Service Fabric on Linux\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/bfd77156-870d-17ee-c9d1-5450f390f63f\",\r\n \"name\": \"bfd77156-870d-17ee-c9d1-5450f390f63f\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"SignalR Service\",\r\n \"resourceTypes\": [\r\n \"Microsoft.SignalRService/SignalR\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/e4ddc3b0-1e6d-aaa2-4279-8e5027351d76\",\r\n \"name\": \"e4ddc3b0-1e6d-aaa2-4279-8e5027351d76\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Spatial Anchors – Preview\",\r\n \"resourceTypes\": [\r\n \"Microsoft.MixedReality\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/bbc183d4-df10-8580-d10b-4123c10ae34d\",\r\n \"name\": \"bbc183d4-df10-8580-d10b-4123c10ae34d\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Spring Cloud - Preview\",\r\n \"resourceTypes\": [\r\n \"Microsoft.AppPlatform/Spring\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/95412dd5-f222-a91f-98a6-144a84418c66\",\r\n \"name\": \"95412dd5-f222-a91f-98a6-144a84418c66\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"SQL Database\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.SQL/SERVERS\",\r\n \"MICROSOFT.SQL/SERVERS/DATABASES\",\r\n \"MICROSOFT.SQL/SERVERS/ELASTICPOOLS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/9b629e89-4ea0-53ec-9409-1579b8c41453\",\r\n \"name\": \"9b629e89-4ea0-53ec-9409-1579b8c41453\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"SQL Database Managed Instance\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.SQL/MANAGEDINSTANCES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/40ef020e-8ae7-8d57-b538-9153c47cee69\",\r\n \"name\": \"40ef020e-8ae7-8d57-b538-9153c47cee69\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"SQL Server in VM - Linux\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/53b14ef9-9b69-4d8c-a458-b8e4c132a815\",\r\n \"name\": \"53b14ef9-9b69-4d8c-a458-b8e4c132a815\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"SQL Server in VM - Windows\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICCOMPUTE/VIRTUALMACHINES\",\r\n \"MICROSOFT.COMPUTE/VIRTUALMACHINES\",\r\n \"Microsoft.SqlVirtualMachine/sqlVirtualMachines\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/4046cf79-84e4-c890-4fdb-73137d6506a5\",\r\n \"name\": \"4046cf79-84e4-c890-4fdb-73137d6506a5\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"SQL Server Registry\",\r\n \"resourceTypes\": [\r\n \"Microsoft.AzureData/sqlServerRegistrations\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/effcf656-f62f-92f2-8cef-2b28aea2da1f\",\r\n \"name\": \"effcf656-f62f-92f2-8cef-2b28aea2da1f\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"SQL Server Stretch Database\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6a9c20ed-85c7-c289-d5e2-560da8f2a7c8\",\r\n \"name\": \"6a9c20ed-85c7-c289-d5e2-560da8f2a7c8\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Storage Account Management\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICSTORAGE/STORAGEACCOUNTS\",\r\n \"MICROSOFT.STORAGE/STORAGEACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/94c5f326-7ab1-6ef3-c3c0-8e0b5a584085\",\r\n \"name\": \"94c5f326-7ab1-6ef3-c3c0-8e0b5a584085\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Storage Explorer\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/ffe1bb13-3bb2-e99d-35fa-d0c165557f88\",\r\n \"name\": \"ffe1bb13-3bb2-e99d-35fa-d0c165557f88\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"StorSimple Data Manager\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.HYBRIDDATA/DATAMANAGERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/30e73728-5d13-cbf4-5c57-3036ed1067fd\",\r\n \"name\": \"30e73728-5d13-cbf4-5c57-3036ed1067fd\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Stream Analytics\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.STREAMANALYTICS/STREAMINGJOBS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/f3dc5421-79ef-1efa-41a5-42bf3cbb52c6\",\r\n \"name\": \"f3dc5421-79ef-1efa-41a5-42bf3cbb52c6\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Subscription management\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/8418caaf-4634-b4c0-d9b6-27c266b6b67b\",\r\n \"name\": \"8418caaf-4634-b4c0-d9b6-27c266b6b67b\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Table Storage\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICSTORAGE/STORAGEACCOUNTS\",\r\n \"MICROSOFT.STORAGE/STORAGEACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/e4d6b9b0-79d5-3133-c4db-460a39e8a622\",\r\n \"name\": \"e4d6b9b0-79d5-3133-c4db-460a39e8a622\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Time Series Insights\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.TIMESERIESINSIGHTS/ENVIRONMENTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/66fff2d6-c34e-ac9b-d1ba-6631ab20989e\",\r\n \"name\": \"66fff2d6-c34e-ac9b-d1ba-6631ab20989e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Traffic Manager – DNS based load balancing\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NETWORK/TRAFFICMANAGERPROFILES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/99dd2657-2a74-8c5a-951f-23abdd7851c6\",\r\n \"name\": \"99dd2657-2a74-8c5a-951f-23abdd7851c6\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Universal Print - Preview\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/393f9162-a29a-1e9f-1972-d524c7bc7026\",\r\n \"name\": \"393f9162-a29a-1e9f-1972-d524c7bc7026\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Video Indexer\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/722ccc66-c988-d2ac-1ec6-b7aebc857f2d\",\r\n \"name\": \"722ccc66-c988-d2ac-1ec6-b7aebc857f2d\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Machine running Citrix\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b6492139-637a-c445-ee02-5dc6749337c3\",\r\n \"name\": \"b6492139-637a-c445-ee02-5dc6749337c3\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Machine running Cloud Foundry\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc\",\r\n \"name\": \"cddd3eb5-1830-b494-44fd-782f691479dc\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Machine running Linux\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICCOMPUTE/VIRTUALMACHINES\",\r\n \"MICROSOFT.COMPUTE/VIRTUALMACHINES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87\",\r\n \"name\": \"de8937fc-74cc-daa7-2639-e1fe433dcb87\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Machine running RedHat\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICCOMPUTE/VIRTUALMACHINES\",\r\n \"MICROSOFT.COMPUTE/VIRTUALMACHINES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0\",\r\n \"name\": \"98e5cec8-2650-28c1-92e8-0ecaa232eec0\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Machine running SUSE\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Compute/virtualmachines\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7\",\r\n \"name\": \"2340ae8b-c745-572f-6ea8-661d68c08bd7\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Machine running Ubuntu\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICCOMPUTE/VIRTUALMACHINES\",\r\n \"MICROSOFT.COMPUTE/VIRTUALMACHINES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396\",\r\n \"name\": \"6f16735c-b0ae-b275-ad3a-03479cfa1396\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Machine running Windows\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICCOMPUTE/VIRTUALMACHINES\",\r\n \"MICROSOFT.COMPUTE/VIRTUALMACHINES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/e9e31931-21fa-d50a-e6e7-e37d5d784591\",\r\n \"name\": \"e9e31931-21fa-d50a-e6e7-e37d5d784591\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Machine Scale Sets\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.COMPUTE/VIRTUALMACHINESCALESETS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b25271d3-6431-dfbc-5f12-5693326809b3\",\r\n \"name\": \"b25271d3-6431-dfbc-5f12-5693326809b3\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Network\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NETWORK/VIRTUALNETWORKS\",\r\n \"MICROSOFT.CLASSICNETWORK/VIRTUALNETWORKS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/e980d0ab-c6c3-894b-8a1d-74564e159e3b\",\r\n \"name\": \"e980d0ab-c6c3-894b-8a1d-74564e159e3b\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Network NAT - Preview\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Network/NATGateways\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/d3b69052-33aa-55e7-6d30-ebb7040f9766\",\r\n \"name\": \"d3b69052-33aa-55e7-6d30-ebb7040f9766\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual WAN\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NETWORK/VIRTUALWANS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/5a813df8-0060-7015-892d-9f17015a6706\",\r\n \"name\": \"5a813df8-0060-7015-892d-9f17015a6706\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"VPN Gateway\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NETWORK/VIRTUALNETWORKGATEWAYS\",\r\n \"MICROSOFT.NETWORK/CONNECTIONS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b452a42b-3779-64de-532c-8a32738357a6\",\r\n \"name\": \"b452a42b-3779-64de-532c-8a32738357a6\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Web App (Linux)\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.WEB/SITES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/1890289e-747c-7ef6-b4f5-b1dbb0bead28\",\r\n \"name\": \"1890289e-747c-7ef6-b4f5-b1dbb0bead28\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Web App (Windows)\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.WEB/SITES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/d40f17bb-8b19-117c-f69a-d1be4187f657\",\r\n \"name\": \"d40f17bb-8b19-117c-f69a-d1be4187f657\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Web App for Containers\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.WEB/SITES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/63cefc01-98f2-7ef4-2b5f-0c4b268a7dad\",\r\n \"name\": \"63cefc01-98f2-7ef4-2b5f-0c4b268a7dad\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Windows Virtual Desktop\",\r\n \"resourceTypes\": [\r\n \"Microsoft.DesktopVirtualization\"\r\n ]\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
@@ -130,13 +130,13 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a61fc292-a646-4a55-9d07-c2037d011d35"
+ "1c9b235b-fb63-4929-9660-890cf5c8abd4"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.28516.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Support.MicrosoftSupportClient/1.0.0.0"
@@ -150,7 +150,10 @@
"no-cache"
],
"x-ms-ratelimit-remaining-tenant-reads": [
- "11897"
+ "11997"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -159,19 +162,16 @@
"Kestrel"
],
"x-ms-request-id": [
- "085e643e-e876-43ef-90ab-985c3fdeeb30"
+ "8e7a4d30-519a-4941-b03c-81ea258a5e69"
],
"x-ms-correlation-request-id": [
- "085e643e-e876-43ef-90ab-985c3fdeeb30"
+ "8e7a4d30-519a-4941-b03c-81ea258a5e69"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200315T071728Z:085e643e-e876-43ef-90ab-985c3fdeeb30"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "CENTRALUSEUAP:20200327T043635Z:8e7a4d30-519a-4941-b03c-81ea258a5e69"
],
"Date": [
- "Sun, 15 Mar 2020 07:17:28 GMT"
+ "Fri, 27 Mar 2020 04:36:34 GMT"
],
"Content-Length": [
"5483"
@@ -193,13 +193,13 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2ec38a01-a9e2-447e-bfbc-ebd605b218b5"
+ "47a3e756-8e3d-45fb-9598-1326f58b3b45"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.28516.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Support.MicrosoftSupportClient/1.0.0.0"
@@ -213,7 +213,10 @@
"no-cache"
],
"x-ms-ratelimit-remaining-tenant-reads": [
- "11896"
+ "11996"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -222,19 +225,16 @@
"Kestrel"
],
"x-ms-request-id": [
- "0f395c9d-ad7e-46b2-8fb3-1657a8f3842e"
+ "4728dd75-f061-4563-b0f6-9e40b3785c2d"
],
"x-ms-correlation-request-id": [
- "0f395c9d-ad7e-46b2-8fb3-1657a8f3842e"
+ "4728dd75-f061-4563-b0f6-9e40b3785c2d"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200315T071728Z:0f395c9d-ad7e-46b2-8fb3-1657a8f3842e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "CENTRALUSEUAP:20200327T043635Z:4728dd75-f061-4563-b0f6-9e40b3785c2d"
],
"Date": [
- "Sun, 15 Mar 2020 07:17:28 GMT"
+ "Fri, 27 Mar 2020 04:36:34 GMT"
],
"Content-Length": [
"3478"
@@ -256,13 +256,13 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c39004c3-e767-4a5a-96ff-af285b58ccfd"
+ "543954aa-6b81-47b7-b422-0915e221b07d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.28516.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Support.MicrosoftSupportClient/1.0.0.0"
@@ -276,7 +276,10 @@
"no-cache"
],
"x-ms-ratelimit-remaining-tenant-reads": [
- "11895"
+ "11995"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -285,22 +288,19 @@
"Kestrel"
],
"x-ms-request-id": [
- "39827aca-d9cf-41be-9c9c-f0baa8248b3b"
+ "71f9b176-fd78-4d70-a8ce-1711e868bf34"
],
"x-ms-correlation-request-id": [
- "39827aca-d9cf-41be-9c9c-f0baa8248b3b"
+ "71f9b176-fd78-4d70-a8ce-1711e868bf34"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200315T071729Z:39827aca-d9cf-41be-9c9c-f0baa8248b3b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "CENTRALUSEUAP:20200327T043635Z:71f9b176-fd78-4d70-a8ce-1711e868bf34"
],
"Date": [
- "Sun, 15 Mar 2020 07:17:28 GMT"
+ "Fri, 27 Mar 2020 04:36:34 GMT"
],
"Content-Length": [
- "33975"
+ "33597"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -309,7 +309,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/bae68529-51c1-d9b0-9e84-157fe59ac631\",\r\n \"name\": \"bae68529-51c1-d9b0-9e84-157fe59ac631\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Compute-VM (cores-vCPUs) subscription limit increases\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/7d8fb79f-7fbc-7125-b4dc-3060a75a755d\",\r\n \"name\": \"7d8fb79f-7fbc-7125-b4dc-3060a75a755d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / My configuration change impacted connectivity\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/b3ca1e6d-ea88-4d89-2f27-cf22e3bf6b37\",\r\n \"name\": \"b3ca1e6d-ea88-4d89-2f27-cf22e3bf6b37\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Troubleshoot my network security group (NSG)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/64f558d7-19ec-b533-1d51-bf8065b8b000\",\r\n \"name\": \"64f558d7-19ec-b533-1d51-bf8065b8b000\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Troubleshoot my VM firewall\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/55947c35-0935-27d8-69fa-6fb7798312ab\",\r\n \"name\": \"55947c35-0935-27d8-69fa-6fb7798312ab\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I have an issue with my public IP\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/aeca6c5b-eeda-205d-8e9a-84fbc3787d58\",\r\n \"name\": \"aeca6c5b-eeda-205d-8e9a-84fbc3787d58\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I need to reset my password\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/de79f709-5c28-19b7-4268-4e1270837208\",\r\n \"name\": \"de79f709-5c28-19b7-4268-4e1270837208\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I need guidance with serial console access\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/1c2f964e-9219-e8fe-f027-95330b445941\",\r\n \"name\": \"1c2f964e-9219-e8fe-f027-95330b445941\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Failure to connect using RDP or SSH port\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/cbc66602-d0a3-abe6-c880-043309caa9e5\",\r\n \"name\": \"cbc66602-d0a3-abe6-c880-043309caa9e5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My VM will not start after a configuration change\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/f098b595-bead-07c7-61e1-fea5b00a921d\",\r\n \"name\": \"f098b595-bead-07c7-61e1-fea5b00a921d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I received a disk related error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/7252a6f3-09f9-4c9c-434f-7720ebb1d071\",\r\n \"name\": \"7252a6f3-09f9-4c9c-434f-7720ebb1d071\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I received an allocation failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/24950ba1-1ada-26d3-eec4-1dedb62ebb00\",\r\n \"name\": \"24950ba1-1ada-26d3-eec4-1dedb62ebb00\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My VM is unresponsive to start or stop operations\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/ff2da016-f47d-a267-456f-8569ce67e6d5\",\r\n \"name\": \"ff2da016-f47d-a267-456f-8569ce67e6d5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I am unable to resize my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/173e58db-1650-76b6-0f0f-1c0ed42835ad\",\r\n \"name\": \"173e58db-1650-76b6-0f0f-1c0ed42835ad\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My start or stop operation failed\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/6fb3a706-abe9-0693-1544-72e848334a9f\",\r\n \"name\": \"6fb3a706-abe9-0693-1544-72e848334a9f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My VMs OS is not booting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/9a7863c9-b048-81d3-0e88-9f5d3806173b\",\r\n \"name\": \"9a7863c9-b048-81d3-0e88-9f5d3806173b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My VMs OS is on a reboot loop\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/87f507df-1333-d6dd-e5b0-80ca310e0431\",\r\n \"name\": \"87f507df-1333-d6dd-e5b0-80ca310e0431\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / I applied updates and my VM will not boot\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/f820b562-a549-86dc-b8ae-b5ee4e835aaa\",\r\n \"name\": \"f820b562-a549-86dc-b8ae-b5ee4e835aaa\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / I received a failure when starting my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/752f1e7e-b2bc-13c0-2519-4184c4f6ff54\",\r\n \"name\": \"752f1e7e-b2bc-13c0-2519-4184c4f6ff54\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My problem is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/e41e015e-0ec8-24c9-974f-79fe0d285f9e\",\r\n \"name\": \"e41e015e-0ec8-24c9-974f-79fe0d285f9e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I need guidance preparing an image\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/a4b8355c-cf91-9ccd-ff84-80019d1e63c2\",\r\n \"name\": \"a4b8355c-cf91-9ccd-ff84-80019d1e63c2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I need guidance deploying with managed disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/01ed3ac2-367f-aaa3-5464-fbbb9c7eade8\",\r\n \"name\": \"01ed3ac2-367f-aaa3-5464-fbbb9c7eade8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot custom image deployment failures\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/84447c9a-0723-4d08-5b97-4bf90b7890d5\",\r\n \"name\": \"84447c9a-0723-4d08-5b97-4bf90b7890d5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot marketplace image deployment failures\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/21c73052-26f9-3d51-4f0f-592336d20375\",\r\n \"name\": \"21c73052-26f9-3d51-4f0f-592336d20375\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / My desired region or VM size is unavailable\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/f2e182ae-a174-e38e-52a0-32abcfa142af\",\r\n \"name\": \"f2e182ae-a174-e38e-52a0-32abcfa142af\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I received an allocation failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/53b20091-2600-5eff-9031-2f393f7041a0\",\r\n \"name\": \"53b20091-2600-5eff-9031-2f393f7041a0\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I am unable to deploy a captured or generalized image\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/259a0a84-71b9-5e83-5c69-f95ada859212\",\r\n \"name\": \"259a0a84-71b9-5e83-5c69-f95ada859212\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot my ARM template error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/a6b58b4c-09c7-e170-c974-b7ac37f76b5c\",\r\n \"name\": \"a6b58b4c-09c7-e170-c974-b7ac37f76b5c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I received a provisioning or deployment timeout error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/bf46b021-8045-213e-8857-d7b83562e22e\",\r\n \"name\": \"bf46b021-8045-213e-8857-d7b83562e22e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / My guest OS is causing restarts\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/dcf6f0d6-63ca-7638-f29a-79e3ebbf94fb\",\r\n \"name\": \"dcf6f0d6-63ca-7638-f29a-79e3ebbf94fb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Request Root Cause Statement for recent availability impact\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/d85c401e-04b1-c1c2-6838-755bac055bda\",\r\n \"name\": \"d85c401e-04b1-c1c2-6838-755bac055bda\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Help diagnose my VM restart issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/46d3b5cb-4fa8-12e0-c525-9c41d42dcb8b\",\r\n \"name\": \"46d3b5cb-4fa8-12e0-c525-9c41d42dcb8b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Disk throughput is lower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/5a5377ad-0f05-a3ba-d25e-98346a3f74df\",\r\n \"name\": \"5a5377ad-0f05-a3ba-d25e-98346a3f74df\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / CPU usage is higher than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/1ae095b6-523e-28e8-1f5d-db00a4c8217b\",\r\n \"name\": \"1ae095b6-523e-28e8-1f5d-db00a4c8217b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Memory usage is higher than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/7aba48c1-5e0d-9ccb-a1c7-e1e22fa7db08\",\r\n \"name\": \"7aba48c1-5e0d-9ccb-a1c7-e1e22fa7db08\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / GPU processing is slower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/b80f1d81-dd72-8613-0f92-25825c8a9ec6\",\r\n \"name\": \"b80f1d81-dd72-8613-0f92-25825c8a9ec6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Guidance for better VM sizing and throughput\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/4970a103-2894-d3f9-d08c-2633cfc78e45\",\r\n \"name\": \"4970a103-2894-d3f9-d08c-2633cfc78e45\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Unable to resize my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/95538b9d-4af5-8ce7-0b3d-fa68832bfd1c\",\r\n \"name\": \"95538b9d-4af5-8ce7-0b3d-fa68832bfd1c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Resizing a virtual disk\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/1e68258f-b823-9c34-e519-3f70d59e973f\",\r\n \"name\": \"1e68258f-b823-9c34-e519-3f70d59e973f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Attaching or detaching virtual disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/7e6c7e39-9cce-3d58-b2e4-274f6d9bec37\",\r\n \"name\": \"7e6c7e39-9cce-3d58-b2e4-274f6d9bec37\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Creating or deleting virtual disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/e7fd0942-fb71-bf62-4c6d-18832647bdac\",\r\n \"name\": \"e7fd0942-fb71-bf62-4c6d-18832647bdac\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Disk throughput is lower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/2c49e119-868a-efac-80af-67599fae45b7\",\r\n \"name\": \"2c49e119-868a-efac-80af-67599fae45b7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Restore a VM from snapshot\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/a254dd34-bf5f-b67c-f99f-86f9cf7ed6c8\",\r\n \"name\": \"a254dd34-bf5f-b67c-f99f-86f9cf7ed6c8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Issues with Direct Upload for Managed Disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/521c0dec-7579-07b7-c7c8-40bbaeb40240\",\r\n \"name\": \"521c0dec-7579-07b7-c7c8-40bbaeb40240\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / My problem is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/e0377a4c-88a2-2e30-7ba8-d7079f986fd9\",\r\n \"name\": \"e0377a4c-88a2-2e30-7ba8-d7079f986fd9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Diagnostic (boot diagnostics) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/b2a54971-f86b-fcfc-d2e9-a784cb400e2c\",\r\n \"name\": \"b2a54971-f86b-fcfc-d2e9-a784cb400e2c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Custom Script (CSE) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/b749326b-a0d9-7397-e078-545f08d07958\",\r\n \"name\": \"b749326b-a0d9-7397-e078-545f08d07958\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Log Analytics (OMS) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/b18ffbd3-1113-0c33-9cdc-656f3f59b255\",\r\n \"name\": \"b18ffbd3-1113-0c33-9cdc-656f3f59b255\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Desired State Configuration (DSC) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/f6b80563-6a99-2b18-68b1-87302cf1d2d4\",\r\n \"name\": \"f6b80563-6a99-2b18-68b1-87302cf1d2d4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Microsoft Antimalware (security) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/69720acf-121d-1581-bc05-b35043d3989f\",\r\n \"name\": \"69720acf-121d-1581-bc05-b35043d3989f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Disk Encryption (ADE) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/c9417489-6f2a-7906-cde8-2c446eeac78e\",\r\n \"name\": \"c9417489-6f2a-7906-cde8-2c446eeac78e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Snapshot (Azure Backup) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/e6826775-d3e8-f596-5867-0b9c0241d1ac\",\r\n \"name\": \"e6826775-d3e8-f596-5867-0b9c0241d1ac\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Update Management extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/10ed694a-3166-2ffc-bec1-25b610f940ca\",\r\n \"name\": \"10ed694a-3166-2ffc-bec1-25b610f940ca\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / GPU Driver extension issue (NVIDIA)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/219f7c12-40f8-24a1-7d7c-d78e8f0198e4\",\r\n \"name\": \"219f7c12-40f8-24a1-7d7c-d78e8f0198e4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Network Watcher agent extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/90d85a5b-aab4-4375-f298-2049d519ab76\",\r\n \"name\": \"90d85a5b-aab4-4375-f298-2049d519ab76\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Monitoring agent (MMA) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/b2670f9f-ade3-2456-799c-f591435394c6\",\r\n \"name\": \"b2670f9f-ade3-2456-799c-f591435394c6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Access (enablevmaccess) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/849fe8ad-39b8-1ca0-bc1b-57716af420de\",\r\n \"name\": \"849fe8ad-39b8-1ca0-bc1b-57716af420de\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Guest Agent issue (crash, hung, not upgrading, or not connecting)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/a7999b61-1d4d-4abd-594c-e6687aec6faf\",\r\n \"name\": \"a7999b61-1d4d-4abd-594c-e6687aec6faf\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Custom Script (CSE) extension using Managed Identity issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/89a2d1f5-09e9-e2fa-f074-f5b690e82998\",\r\n \"name\": \"89a2d1f5-09e9-e2fa-f074-f5b690e82998\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Active Directory Login extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/514ac81e-be99-54a4-eaf4-9370fc0be72c\",\r\n \"name\": \"514ac81e-be99-54a4-eaf4-9370fc0be72c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / GPU Driver extension issue (AMD)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/a04c7d08-f45f-42c0-4e86-88ae407595cb\",\r\n \"name\": \"a04c7d08-f45f-42c0-4e86-88ae407595cb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My encryption has failed due to a pre-req failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/47901e14-6bd1-3d71-1443-d6c67a18432d\",\r\n \"name\": \"47901e14-6bd1-3d71-1443-d6c67a18432d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is due to unsupported image or operating system\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/80cd33ae-f2a0-5549-cdf5-4d109cce7a67\",\r\n \"name\": \"80cd33ae-f2a0-5549-cdf5-4d109cce7a67\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My VM is not booting after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/bb35dc52-6e37-0fff-6044-d965d4c97a54\",\r\n \"name\": \"bb35dc52-6e37-0fff-6044-d965d4c97a54\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My VM is not reachable after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/3789b4d8-9b87-4aad-f35f-5ea8a439697e\",\r\n \"name\": \"3789b4d8-9b87-4aad-f35f-5ea8a439697e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My data drive or file system is not available after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/d2c0cf01-81a6-5009-467a-eb21488048e8\",\r\n \"name\": \"d2c0cf01-81a6-5009-467a-eb21488048e8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / I need guidance with Azure Key Vault configuration, permissions, or keys\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/d8e2e786-e8d3-ddbf-79df-10d913ff100e\",\r\n \"name\": \"d8e2e786-e8d3-ddbf-79df-10d913ff100e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / Current status of encryption is incorrect for my VM (Portal, CLI, PS)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/d8eaaf54-b662-86ca-66db-e115a4896a5c\",\r\n \"name\": \"d8eaaf54-b662-86ca-66db-e115a4896a5c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue with decrypting a virtual disk\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/8ff77fb6-150f-80f7-7d88-98b049aacd81\",\r\n \"name\": \"8ff77fb6-150f-80f7-7d88-98b049aacd81\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is with troubleshooting an encrypted VM (unlocking)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/6825cbf2-c7fc-a14a-a2f7-f10ad953f5bd\",\r\n \"name\": \"6825cbf2-c7fc-a14a-a2f7-f10ad953f5bd\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My encryption is not working as expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/315d6829-1ab2-b452-6663-51eb961c246f\",\r\n \"name\": \"315d6829-1ab2-b452-6663-51eb961c246f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/f7c2099e-8e0a-98f6-313b-854ebd0c6f62\",\r\n \"name\": \"f7c2099e-8e0a-98f6-313b-854ebd0c6f62\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I am having issues configuring or enabling backup\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/562c48c7-c68f-0a96-99d2-8d13f3554ce7\",\r\n \"name\": \"562c48c7-c68f-0a96-99d2-8d13f3554ce7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Backup is failing for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/f4fd8a3e-74db-f3a4-03d1-60188940a66f\",\r\n \"name\": \"f4fd8a3e-74db-f3a4-03d1-60188940a66f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Restore is failing for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/83c3b7c9-1efa-3941-3b12-d43d7a729a32\",\r\n \"name\": \"83c3b7c9-1efa-3941-3b12-d43d7a729a32\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Backup is taking longer than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/568c0608-9ba0-ee8f-01e7-34e8afefb041\",\r\n \"name\": \"568c0608-9ba0-ee8f-01e7-34e8afefb041\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Restore is taking longer than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/36b2730a-cb80-23d9-656d-c0c2d476e45f\",\r\n \"name\": \"36b2730a-cb80-23d9-656d-c0c2d476e45f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I need guidance configuring backup for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/ffe93180-2ece-07c9-0cd4-6ae7ccc19d7c\",\r\n \"name\": \"ffe93180-2ece-07c9-0cd4-6ae7ccc19d7c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I need guidance with restoring my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/ec4a3cb7-9b8b-f765-e132-d5562425d712\",\r\n \"name\": \"ec4a3cb7-9b8b-f765-e132-d5562425d712\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / My issue is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/bd0acd80-7468-6588-5ae3-cfe2b179f195\",\r\n \"name\": \"bd0acd80-7468-6588-5ae3-cfe2b179f195\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Guest OS - Kernel upgrade issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/e828e8d4-ff7f-6594-4f9d-fa7004f419fa\",\r\n \"name\": \"e828e8d4-ff7f-6594-4f9d-fa7004f419fa\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Create a Linux failover cluster\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/d9bb543f-fd32-6a17-40ff-bc2b75f55027\",\r\n \"name\": \"d9bb543f-fd32-6a17-40ff-bc2b75f55027\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to delete a virtual machine\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/beacf412-7db1-a73e-9130-3f717a3511e5\",\r\n \"name\": \"beacf412-7db1-a73e-9130-3f717a3511e5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to delete a Resource Group\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/609fff6e-d1b6-61a5-0ec0-577ab025cd95\",\r\n \"name\": \"609fff6e-d1b6-61a5-0ec0-577ab025cd95\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Instance Metadata Service\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/fd3c1878-732c-0f98-5b78-f3108ff0c26f\",\r\n \"name\": \"fd3c1878-732c-0f98-5b78-f3108ff0c26f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage or use a Linux cluster in Azure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/6ea04af3-f79f-522a-07d7-5542f30e1d7b\",\r\n \"name\": \"6ea04af3-f79f-522a-07d7-5542f30e1d7b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Azure Metadata Service (Scheduled Events)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/f634afb0-8ab2-18e7-ae60-0953e0dc624e\",\r\n \"name\": \"f634afb0-8ab2-18e7-ae60-0953e0dc624e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to share Shared Image Gallery, Image Definition or Image Version\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/3385321a-4a96-c811-4c9c-61a6c799aab6\",\r\n \"name\": \"3385321a-4a96-c811-4c9c-61a6c799aab6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage an instance of SQL Server\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/e2542607-20ad-4425-e30d-eec8e2121f55\",\r\n \"name\": \"e2542607-20ad-4425-e30d-eec8e2121f55\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Guidance regarding retirement of Classic IAAS resources (ASM)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/cf48d5a5-f3e1-0346-9bc5-42a374fc7787\",\r\n \"name\": \"cf48d5a5-f3e1-0346-9bc5-42a374fc7787\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate IAAS resources from Classic (ASM) to Azure Resource Manager (ARM)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/deb635fc-d919-065f-6ca0-b7bc61479177\",\r\n \"name\": \"deb635fc-d919-065f-6ca0-b7bc61479177\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Managed disks migration\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/c4aa16ad-4241-d898-28c2-38d21faa52ee\",\r\n \"name\": \"c4aa16ad-4241-d898-28c2-38d21faa52ee\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between storage accounts\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/785dbce9-3d5c-4799-46e2-8b83db4eef73\",\r\n \"name\": \"785dbce9-3d5c-4799-46e2-8b83db4eef73\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between regions\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/9020a3f4-8868-d4ff-8d67-a9ccb5afb7b6\",\r\n \"name\": \"9020a3f4-8868-d4ff-8d67-a9ccb5afb7b6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between subscriptions\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/92bf5bcc-b7cd-6a7f-add6-973b02755e4c\",\r\n \"name\": \"92bf5bcc-b7cd-6a7f-add6-973b02755e4c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate resources using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/daccad3e-eabc-e716-5059-e7109fe0560a\",\r\n \"name\": \"daccad3e-eabc-e716-5059-e7109fe0560a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate virtual machines from on-premises to Azure using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/da01b1c1-7d54-941d-888a-7da4fb85d897\",\r\n \"name\": \"da01b1c1-7d54-941d-888a-7da4fb85d897\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate virtual machines from third-party provider to Azure using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/69f642dd-74a8-34c8-c4e4-dd2b00b3512c\",\r\n \"name\": \"69f642dd-74a8-34c8-c4e4-dd2b00b3512c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between resource groups\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/c334a302-aa5c-e950-5656-755d0e981c7e\",\r\n \"name\": \"c334a302-aa5c-e950-5656-755d0e981c7e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Planned Maintenance (Azure Platform)\"\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/bae68529-51c1-d9b0-9e84-157fe59ac631\",\r\n \"name\": \"bae68529-51c1-d9b0-9e84-157fe59ac631\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Compute-VM (cores-vCPUs) subscription limit increases\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/7d8fb79f-7fbc-7125-b4dc-3060a75a755d\",\r\n \"name\": \"7d8fb79f-7fbc-7125-b4dc-3060a75a755d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / My configuration change impacted connectivity\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/b3ca1e6d-ea88-4d89-2f27-cf22e3bf6b37\",\r\n \"name\": \"b3ca1e6d-ea88-4d89-2f27-cf22e3bf6b37\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Troubleshoot my network security group (NSG)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/64f558d7-19ec-b533-1d51-bf8065b8b000\",\r\n \"name\": \"64f558d7-19ec-b533-1d51-bf8065b8b000\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Troubleshoot my VM firewall\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/55947c35-0935-27d8-69fa-6fb7798312ab\",\r\n \"name\": \"55947c35-0935-27d8-69fa-6fb7798312ab\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I have an issue with my public IP\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/aeca6c5b-eeda-205d-8e9a-84fbc3787d58\",\r\n \"name\": \"aeca6c5b-eeda-205d-8e9a-84fbc3787d58\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I need to reset my password\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/de79f709-5c28-19b7-4268-4e1270837208\",\r\n \"name\": \"de79f709-5c28-19b7-4268-4e1270837208\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I need guidance with serial console access\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/1c2f964e-9219-e8fe-f027-95330b445941\",\r\n \"name\": \"1c2f964e-9219-e8fe-f027-95330b445941\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Failure to connect using RDP or SSH port\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/cbc66602-d0a3-abe6-c880-043309caa9e5\",\r\n \"name\": \"cbc66602-d0a3-abe6-c880-043309caa9e5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My VM will not start after a configuration change\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/f098b595-bead-07c7-61e1-fea5b00a921d\",\r\n \"name\": \"f098b595-bead-07c7-61e1-fea5b00a921d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I received a disk related error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/7252a6f3-09f9-4c9c-434f-7720ebb1d071\",\r\n \"name\": \"7252a6f3-09f9-4c9c-434f-7720ebb1d071\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I received an allocation failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/24950ba1-1ada-26d3-eec4-1dedb62ebb00\",\r\n \"name\": \"24950ba1-1ada-26d3-eec4-1dedb62ebb00\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My VM is unresponsive to start or stop operations\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/ff2da016-f47d-a267-456f-8569ce67e6d5\",\r\n \"name\": \"ff2da016-f47d-a267-456f-8569ce67e6d5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I am unable to resize my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/173e58db-1650-76b6-0f0f-1c0ed42835ad\",\r\n \"name\": \"173e58db-1650-76b6-0f0f-1c0ed42835ad\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My start or stop operation failed\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/6fb3a706-abe9-0693-1544-72e848334a9f\",\r\n \"name\": \"6fb3a706-abe9-0693-1544-72e848334a9f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My VMs OS is not booting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/9a7863c9-b048-81d3-0e88-9f5d3806173b\",\r\n \"name\": \"9a7863c9-b048-81d3-0e88-9f5d3806173b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My VMs OS is on a reboot loop\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/87f507df-1333-d6dd-e5b0-80ca310e0431\",\r\n \"name\": \"87f507df-1333-d6dd-e5b0-80ca310e0431\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / I applied updates and my VM will not boot\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/f820b562-a549-86dc-b8ae-b5ee4e835aaa\",\r\n \"name\": \"f820b562-a549-86dc-b8ae-b5ee4e835aaa\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / I received a failure when starting my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/752f1e7e-b2bc-13c0-2519-4184c4f6ff54\",\r\n \"name\": \"752f1e7e-b2bc-13c0-2519-4184c4f6ff54\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My problem is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/e41e015e-0ec8-24c9-974f-79fe0d285f9e\",\r\n \"name\": \"e41e015e-0ec8-24c9-974f-79fe0d285f9e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I need guidance preparing an image\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/a4b8355c-cf91-9ccd-ff84-80019d1e63c2\",\r\n \"name\": \"a4b8355c-cf91-9ccd-ff84-80019d1e63c2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I need guidance deploying with managed disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/01ed3ac2-367f-aaa3-5464-fbbb9c7eade8\",\r\n \"name\": \"01ed3ac2-367f-aaa3-5464-fbbb9c7eade8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot custom image deployment failures\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/84447c9a-0723-4d08-5b97-4bf90b7890d5\",\r\n \"name\": \"84447c9a-0723-4d08-5b97-4bf90b7890d5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot marketplace image deployment failures\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/21c73052-26f9-3d51-4f0f-592336d20375\",\r\n \"name\": \"21c73052-26f9-3d51-4f0f-592336d20375\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / My desired region or VM size is unavailable\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/f2e182ae-a174-e38e-52a0-32abcfa142af\",\r\n \"name\": \"f2e182ae-a174-e38e-52a0-32abcfa142af\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I received an allocation failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/53b20091-2600-5eff-9031-2f393f7041a0\",\r\n \"name\": \"53b20091-2600-5eff-9031-2f393f7041a0\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I am unable to deploy a captured or generalized image\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/259a0a84-71b9-5e83-5c69-f95ada859212\",\r\n \"name\": \"259a0a84-71b9-5e83-5c69-f95ada859212\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot my ARM template error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/a6b58b4c-09c7-e170-c974-b7ac37f76b5c\",\r\n \"name\": \"a6b58b4c-09c7-e170-c974-b7ac37f76b5c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I received a provisioning or deployment timeout error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/bf46b021-8045-213e-8857-d7b83562e22e\",\r\n \"name\": \"bf46b021-8045-213e-8857-d7b83562e22e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / My guest OS is causing restarts\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/dcf6f0d6-63ca-7638-f29a-79e3ebbf94fb\",\r\n \"name\": \"dcf6f0d6-63ca-7638-f29a-79e3ebbf94fb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Request Root Cause Statement for recent availability impact\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/d85c401e-04b1-c1c2-6838-755bac055bda\",\r\n \"name\": \"d85c401e-04b1-c1c2-6838-755bac055bda\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Help diagnose my VM restart issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/46d3b5cb-4fa8-12e0-c525-9c41d42dcb8b\",\r\n \"name\": \"46d3b5cb-4fa8-12e0-c525-9c41d42dcb8b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Disk throughput is lower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/5a5377ad-0f05-a3ba-d25e-98346a3f74df\",\r\n \"name\": \"5a5377ad-0f05-a3ba-d25e-98346a3f74df\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / CPU usage is higher than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/1ae095b6-523e-28e8-1f5d-db00a4c8217b\",\r\n \"name\": \"1ae095b6-523e-28e8-1f5d-db00a4c8217b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Memory usage is higher than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/7aba48c1-5e0d-9ccb-a1c7-e1e22fa7db08\",\r\n \"name\": \"7aba48c1-5e0d-9ccb-a1c7-e1e22fa7db08\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / GPU processing is slower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/b80f1d81-dd72-8613-0f92-25825c8a9ec6\",\r\n \"name\": \"b80f1d81-dd72-8613-0f92-25825c8a9ec6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Guidance for better VM sizing and throughput\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/4970a103-2894-d3f9-d08c-2633cfc78e45\",\r\n \"name\": \"4970a103-2894-d3f9-d08c-2633cfc78e45\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Unable to resize my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/95538b9d-4af5-8ce7-0b3d-fa68832bfd1c\",\r\n \"name\": \"95538b9d-4af5-8ce7-0b3d-fa68832bfd1c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Resizing a virtual disk\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/1e68258f-b823-9c34-e519-3f70d59e973f\",\r\n \"name\": \"1e68258f-b823-9c34-e519-3f70d59e973f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Attaching or detaching virtual disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/7e6c7e39-9cce-3d58-b2e4-274f6d9bec37\",\r\n \"name\": \"7e6c7e39-9cce-3d58-b2e4-274f6d9bec37\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Creating or deleting virtual disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/e7fd0942-fb71-bf62-4c6d-18832647bdac\",\r\n \"name\": \"e7fd0942-fb71-bf62-4c6d-18832647bdac\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Disk throughput is lower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/2c49e119-868a-efac-80af-67599fae45b7\",\r\n \"name\": \"2c49e119-868a-efac-80af-67599fae45b7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Restore a VM from snapshot\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/a254dd34-bf5f-b67c-f99f-86f9cf7ed6c8\",\r\n \"name\": \"a254dd34-bf5f-b67c-f99f-86f9cf7ed6c8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Issues with Direct Upload for Managed Disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/521c0dec-7579-07b7-c7c8-40bbaeb40240\",\r\n \"name\": \"521c0dec-7579-07b7-c7c8-40bbaeb40240\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / My problem is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/e0377a4c-88a2-2e30-7ba8-d7079f986fd9\",\r\n \"name\": \"e0377a4c-88a2-2e30-7ba8-d7079f986fd9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Diagnostic (boot diagnostics) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/b2a54971-f86b-fcfc-d2e9-a784cb400e2c\",\r\n \"name\": \"b2a54971-f86b-fcfc-d2e9-a784cb400e2c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Custom Script (CSE) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/b749326b-a0d9-7397-e078-545f08d07958\",\r\n \"name\": \"b749326b-a0d9-7397-e078-545f08d07958\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Log Analytics (OMS) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/b18ffbd3-1113-0c33-9cdc-656f3f59b255\",\r\n \"name\": \"b18ffbd3-1113-0c33-9cdc-656f3f59b255\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Desired State Configuration (DSC) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/f6b80563-6a99-2b18-68b1-87302cf1d2d4\",\r\n \"name\": \"f6b80563-6a99-2b18-68b1-87302cf1d2d4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Microsoft Antimalware (security) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/69720acf-121d-1581-bc05-b35043d3989f\",\r\n \"name\": \"69720acf-121d-1581-bc05-b35043d3989f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Disk Encryption (ADE) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/c9417489-6f2a-7906-cde8-2c446eeac78e\",\r\n \"name\": \"c9417489-6f2a-7906-cde8-2c446eeac78e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Snapshot (Azure Backup) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/e6826775-d3e8-f596-5867-0b9c0241d1ac\",\r\n \"name\": \"e6826775-d3e8-f596-5867-0b9c0241d1ac\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Update Management extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/10ed694a-3166-2ffc-bec1-25b610f940ca\",\r\n \"name\": \"10ed694a-3166-2ffc-bec1-25b610f940ca\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / GPU Driver extension issue (NVIDIA)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/219f7c12-40f8-24a1-7d7c-d78e8f0198e4\",\r\n \"name\": \"219f7c12-40f8-24a1-7d7c-d78e8f0198e4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Network Watcher agent extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/90d85a5b-aab4-4375-f298-2049d519ab76\",\r\n \"name\": \"90d85a5b-aab4-4375-f298-2049d519ab76\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Monitoring agent (MMA) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/b2670f9f-ade3-2456-799c-f591435394c6\",\r\n \"name\": \"b2670f9f-ade3-2456-799c-f591435394c6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Access (enablevmaccess) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/849fe8ad-39b8-1ca0-bc1b-57716af420de\",\r\n \"name\": \"849fe8ad-39b8-1ca0-bc1b-57716af420de\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Guest Agent issue (crash, hung, not upgrading, or not connecting)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/89a2d1f5-09e9-e2fa-f074-f5b690e82998\",\r\n \"name\": \"89a2d1f5-09e9-e2fa-f074-f5b690e82998\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Active Directory Login extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/514ac81e-be99-54a4-eaf4-9370fc0be72c\",\r\n \"name\": \"514ac81e-be99-54a4-eaf4-9370fc0be72c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / GPU Driver extension issue (AMD)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/a04c7d08-f45f-42c0-4e86-88ae407595cb\",\r\n \"name\": \"a04c7d08-f45f-42c0-4e86-88ae407595cb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My encryption has failed due to a pre-req failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/47901e14-6bd1-3d71-1443-d6c67a18432d\",\r\n \"name\": \"47901e14-6bd1-3d71-1443-d6c67a18432d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is due to unsupported image or operating system\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/80cd33ae-f2a0-5549-cdf5-4d109cce7a67\",\r\n \"name\": \"80cd33ae-f2a0-5549-cdf5-4d109cce7a67\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My VM is not booting after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/bb35dc52-6e37-0fff-6044-d965d4c97a54\",\r\n \"name\": \"bb35dc52-6e37-0fff-6044-d965d4c97a54\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My VM is not reachable after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/3789b4d8-9b87-4aad-f35f-5ea8a439697e\",\r\n \"name\": \"3789b4d8-9b87-4aad-f35f-5ea8a439697e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My data drive or file system is not available after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/d2c0cf01-81a6-5009-467a-eb21488048e8\",\r\n \"name\": \"d2c0cf01-81a6-5009-467a-eb21488048e8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / I need guidance with Azure Key Vault configuration, permissions, or keys\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/d8e2e786-e8d3-ddbf-79df-10d913ff100e\",\r\n \"name\": \"d8e2e786-e8d3-ddbf-79df-10d913ff100e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / Current status of encryption is incorrect for my VM (Portal, CLI, PS)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/d8eaaf54-b662-86ca-66db-e115a4896a5c\",\r\n \"name\": \"d8eaaf54-b662-86ca-66db-e115a4896a5c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue with decrypting a virtual disk\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/8ff77fb6-150f-80f7-7d88-98b049aacd81\",\r\n \"name\": \"8ff77fb6-150f-80f7-7d88-98b049aacd81\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is with troubleshooting an encrypted VM (unlocking)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/6825cbf2-c7fc-a14a-a2f7-f10ad953f5bd\",\r\n \"name\": \"6825cbf2-c7fc-a14a-a2f7-f10ad953f5bd\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My encryption is not working as expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/315d6829-1ab2-b452-6663-51eb961c246f\",\r\n \"name\": \"315d6829-1ab2-b452-6663-51eb961c246f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/f7c2099e-8e0a-98f6-313b-854ebd0c6f62\",\r\n \"name\": \"f7c2099e-8e0a-98f6-313b-854ebd0c6f62\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I am having issues configuring or enabling backup\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/562c48c7-c68f-0a96-99d2-8d13f3554ce7\",\r\n \"name\": \"562c48c7-c68f-0a96-99d2-8d13f3554ce7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Backup is failing for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/f4fd8a3e-74db-f3a4-03d1-60188940a66f\",\r\n \"name\": \"f4fd8a3e-74db-f3a4-03d1-60188940a66f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Restore is failing for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/83c3b7c9-1efa-3941-3b12-d43d7a729a32\",\r\n \"name\": \"83c3b7c9-1efa-3941-3b12-d43d7a729a32\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Backup is taking longer than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/568c0608-9ba0-ee8f-01e7-34e8afefb041\",\r\n \"name\": \"568c0608-9ba0-ee8f-01e7-34e8afefb041\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Restore is taking longer than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/36b2730a-cb80-23d9-656d-c0c2d476e45f\",\r\n \"name\": \"36b2730a-cb80-23d9-656d-c0c2d476e45f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I need guidance configuring backup for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/ffe93180-2ece-07c9-0cd4-6ae7ccc19d7c\",\r\n \"name\": \"ffe93180-2ece-07c9-0cd4-6ae7ccc19d7c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I need guidance with restoring my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/ec4a3cb7-9b8b-f765-e132-d5562425d712\",\r\n \"name\": \"ec4a3cb7-9b8b-f765-e132-d5562425d712\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / My issue is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/bd0acd80-7468-6588-5ae3-cfe2b179f195\",\r\n \"name\": \"bd0acd80-7468-6588-5ae3-cfe2b179f195\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Guest OS - Kernel upgrade issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/e828e8d4-ff7f-6594-4f9d-fa7004f419fa\",\r\n \"name\": \"e828e8d4-ff7f-6594-4f9d-fa7004f419fa\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Create a Linux failover cluster\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/d9bb543f-fd32-6a17-40ff-bc2b75f55027\",\r\n \"name\": \"d9bb543f-fd32-6a17-40ff-bc2b75f55027\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to delete a virtual machine\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/beacf412-7db1-a73e-9130-3f717a3511e5\",\r\n \"name\": \"beacf412-7db1-a73e-9130-3f717a3511e5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to delete a Resource Group\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/609fff6e-d1b6-61a5-0ec0-577ab025cd95\",\r\n \"name\": \"609fff6e-d1b6-61a5-0ec0-577ab025cd95\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Instance Metadata Service\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/fd3c1878-732c-0f98-5b78-f3108ff0c26f\",\r\n \"name\": \"fd3c1878-732c-0f98-5b78-f3108ff0c26f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage or use a Linux cluster in Azure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/6ea04af3-f79f-522a-07d7-5542f30e1d7b\",\r\n \"name\": \"6ea04af3-f79f-522a-07d7-5542f30e1d7b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Azure Metadata Service (Scheduled Events)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/f634afb0-8ab2-18e7-ae60-0953e0dc624e\",\r\n \"name\": \"f634afb0-8ab2-18e7-ae60-0953e0dc624e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to share Shared Image Gallery, Image Definition or Image Version\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/3385321a-4a96-c811-4c9c-61a6c799aab6\",\r\n \"name\": \"3385321a-4a96-c811-4c9c-61a6c799aab6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage an instance of SQL Server\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/e2542607-20ad-4425-e30d-eec8e2121f55\",\r\n \"name\": \"e2542607-20ad-4425-e30d-eec8e2121f55\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Guidance regarding retirement of Classic IAAS resources (ASM)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/cf48d5a5-f3e1-0346-9bc5-42a374fc7787\",\r\n \"name\": \"cf48d5a5-f3e1-0346-9bc5-42a374fc7787\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate IAAS resources from Classic (ASM) to Azure Resource Manager (ARM)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/deb635fc-d919-065f-6ca0-b7bc61479177\",\r\n \"name\": \"deb635fc-d919-065f-6ca0-b7bc61479177\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Managed disks migration\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/c4aa16ad-4241-d898-28c2-38d21faa52ee\",\r\n \"name\": \"c4aa16ad-4241-d898-28c2-38d21faa52ee\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between storage accounts\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/785dbce9-3d5c-4799-46e2-8b83db4eef73\",\r\n \"name\": \"785dbce9-3d5c-4799-46e2-8b83db4eef73\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between regions\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/9020a3f4-8868-d4ff-8d67-a9ccb5afb7b6\",\r\n \"name\": \"9020a3f4-8868-d4ff-8d67-a9ccb5afb7b6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between subscriptions\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/92bf5bcc-b7cd-6a7f-add6-973b02755e4c\",\r\n \"name\": \"92bf5bcc-b7cd-6a7f-add6-973b02755e4c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate resources using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/daccad3e-eabc-e716-5059-e7109fe0560a\",\r\n \"name\": \"daccad3e-eabc-e716-5059-e7109fe0560a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate virtual machines from on-premises to Azure using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/da01b1c1-7d54-941d-888a-7da4fb85d897\",\r\n \"name\": \"da01b1c1-7d54-941d-888a-7da4fb85d897\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate virtual machines from third-party provider to Azure using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/69f642dd-74a8-34c8-c4e4-dd2b00b3512c\",\r\n \"name\": \"69f642dd-74a8-34c8-c4e4-dd2b00b3512c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between resource groups\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/c334a302-aa5c-e950-5656-755d0e981c7e\",\r\n \"name\": \"c334a302-aa5c-e950-5656-755d0e981c7e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Planned Maintenance (Azure Platform)\"\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
@@ -319,13 +319,13 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6232cba1-e89a-460c-a630-fb41e9ad6fc5"
+ "34e60d7a-8242-4c15-ab28-5fa7706276c9"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.28516.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Support.MicrosoftSupportClient/1.0.0.0"
@@ -339,7 +339,10 @@
"no-cache"
],
"x-ms-ratelimit-remaining-tenant-reads": [
- "11894"
+ "11994"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -348,22 +351,19 @@
"Kestrel"
],
"x-ms-request-id": [
- "db10a501-8ffb-4914-9ed3-09102f512130"
+ "3450c2c1-bb10-4439-b887-badb9b66015d"
],
"x-ms-correlation-request-id": [
- "db10a501-8ffb-4914-9ed3-09102f512130"
+ "3450c2c1-bb10-4439-b887-badb9b66015d"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200315T071729Z:db10a501-8ffb-4914-9ed3-09102f512130"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "CENTRALUSEUAP:20200327T043635Z:3450c2c1-bb10-4439-b887-badb9b66015d"
],
"Date": [
- "Sun, 15 Mar 2020 07:17:28 GMT"
+ "Fri, 27 Mar 2020 04:36:35 GMT"
],
"Content-Length": [
- "33975"
+ "33597"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -372,7 +372,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/00b0b194-7e37-b8c4-db36-eb6d3548cac1\",\r\n \"name\": \"00b0b194-7e37-b8c4-db36-eb6d3548cac1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Compute-VM (cores-vCPUs) subscription limit increases\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/60ac7433-77c9-85ac-897d-3ef4112732b1\",\r\n \"name\": \"60ac7433-77c9-85ac-897d-3ef4112732b1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / My configuration change impacted connectivity\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/1cd64f59-26a0-f45e-0419-44c0244009b2\",\r\n \"name\": \"1cd64f59-26a0-f45e-0419-44c0244009b2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Troubleshoot my network security group (NSG)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/c4b7a9f2-8f4b-8fcf-5394-2a221d2e723d\",\r\n \"name\": \"c4b7a9f2-8f4b-8fcf-5394-2a221d2e723d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Troubleshoot my VM firewall\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/733fb4be-707d-b2c5-b5d1-01d743a154d9\",\r\n \"name\": \"733fb4be-707d-b2c5-b5d1-01d743a154d9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I have an issue with my public IP\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/7b901199-fb49-5141-5754-8492bf2badc6\",\r\n \"name\": \"7b901199-fb49-5141-5754-8492bf2badc6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I need to reset my password\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/65c2be4f-8625-c747-ed34-e923079e3b04\",\r\n \"name\": \"65c2be4f-8625-c747-ed34-e923079e3b04\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I need guidance with serial console access\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/4862537c-5b3d-88c4-b393-07ccf284c4af\",\r\n \"name\": \"4862537c-5b3d-88c4-b393-07ccf284c4af\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Failure to connect using RDP or SSH port\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/c101d166-7cd3-5f81-f571-b48432d1c853\",\r\n \"name\": \"c101d166-7cd3-5f81-f571-b48432d1c853\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My VM will not start after a configuration change\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/c40f77d3-fe8f-2582-530c-41978bcfc1a8\",\r\n \"name\": \"c40f77d3-fe8f-2582-530c-41978bcfc1a8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I received a disk related error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/d60254ec-81f6-14b8-17e5-86e090a5c114\",\r\n \"name\": \"d60254ec-81f6-14b8-17e5-86e090a5c114\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I received an allocation failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/f3dce59e-ef98-1cc5-e649-c712a6e403d3\",\r\n \"name\": \"f3dce59e-ef98-1cc5-e649-c712a6e403d3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My VM is unresponsive to start or stop operations\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/5f497f89-a8f9-bf7a-4c9b-4f2d952a63f7\",\r\n \"name\": \"5f497f89-a8f9-bf7a-4c9b-4f2d952a63f7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I am unable to resize my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/b20d1f10-6751-1b16-e043-346951c9737f\",\r\n \"name\": \"b20d1f10-6751-1b16-e043-346951c9737f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My start or stop operation failed\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/76ba6e97-4c43-a8f1-eced-98e5b488e3c2\",\r\n \"name\": \"76ba6e97-4c43-a8f1-eced-98e5b488e3c2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My VMs OS is not booting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/0ae39b56-d43d-25bf-352e-6b902e34730a\",\r\n \"name\": \"0ae39b56-d43d-25bf-352e-6b902e34730a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My VMs OS is on a reboot loop\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/691c34b0-3089-227f-8877-0f9bb40655df\",\r\n \"name\": \"691c34b0-3089-227f-8877-0f9bb40655df\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / I applied updates and my VM will not boot\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/ea641794-4895-77ff-4493-8e27b3ed8088\",\r\n \"name\": \"ea641794-4895-77ff-4493-8e27b3ed8088\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / I received a failure when starting my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/326e6b44-39dd-df25-ed6c-2a3dbcce27a1\",\r\n \"name\": \"326e6b44-39dd-df25-ed6c-2a3dbcce27a1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My problem is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/d713e96b-b6ba-cafe-08dc-d708cf3a927b\",\r\n \"name\": \"d713e96b-b6ba-cafe-08dc-d708cf3a927b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I need guidance preparing an image\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/473d7c64-95eb-3efa-730b-4991d75704a0\",\r\n \"name\": \"473d7c64-95eb-3efa-730b-4991d75704a0\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I need guidance deploying with managed disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/859e0b1f-c69e-7806-6a43-22e03c121d33\",\r\n \"name\": \"859e0b1f-c69e-7806-6a43-22e03c121d33\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot custom image deployment failures\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/59b2bc0b-6d1f-340b-141b-76940d6ed87d\",\r\n \"name\": \"59b2bc0b-6d1f-340b-141b-76940d6ed87d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot marketplace image deployment failures\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/7a0432be-d5a8-5b37-410e-fbbd62a085c2\",\r\n \"name\": \"7a0432be-d5a8-5b37-410e-fbbd62a085c2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / My desired region or VM size is unavailable\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/416fff37-d999-6441-9bb4-8fe3bd1ee40a\",\r\n \"name\": \"416fff37-d999-6441-9bb4-8fe3bd1ee40a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I received an allocation failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/b3d35ad2-0156-24f9-65dc-553180a538f2\",\r\n \"name\": \"b3d35ad2-0156-24f9-65dc-553180a538f2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I am unable to deploy a captured or generalized image\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/9dcc8c00-a5d9-8121-1399-6950370ecbec\",\r\n \"name\": \"9dcc8c00-a5d9-8121-1399-6950370ecbec\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot my ARM template error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/b4d1e87a-4dd1-f166-d55f-1b1d4aa0dec2\",\r\n \"name\": \"b4d1e87a-4dd1-f166-d55f-1b1d4aa0dec2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I received a provisioning or deployment timeout error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/a6946f32-c1e2-ca94-be27-dbebcd6cb5f3\",\r\n \"name\": \"a6946f32-c1e2-ca94-be27-dbebcd6cb5f3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / My guest OS is causing restarts\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/edf63757-a5fc-8c55-dbb1-2d1619efac0a\",\r\n \"name\": \"edf63757-a5fc-8c55-dbb1-2d1619efac0a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Request Root Cause Statement for recent availability impact\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/0ec0021e-0e64-77ea-3cfc-32103fc2c2c3\",\r\n \"name\": \"0ec0021e-0e64-77ea-3cfc-32103fc2c2c3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Help diagnose my VM restart issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/20aa3013-c309-ffdb-e8ec-d6214202fe2c\",\r\n \"name\": \"20aa3013-c309-ffdb-e8ec-d6214202fe2c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Disk throughput is lower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/c7a4adae-6c60-c08c-8024-48416fe60c65\",\r\n \"name\": \"c7a4adae-6c60-c08c-8024-48416fe60c65\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / CPU usage is higher than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/0d5dd76a-5da0-e5f7-4aac-14d6762c5719\",\r\n \"name\": \"0d5dd76a-5da0-e5f7-4aac-14d6762c5719\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Memory usage is higher than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/0b6b2a1c-c62f-37b7-b676-7d301bf3ac2e\",\r\n \"name\": \"0b6b2a1c-c62f-37b7-b676-7d301bf3ac2e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / GPU processing is slower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/0744e2e3-915f-354d-4cf4-15611d915082\",\r\n \"name\": \"0744e2e3-915f-354d-4cf4-15611d915082\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Guidance for better VM sizing and throughput\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/fbc190b2-887d-53f4-d89f-506fe1b0bca0\",\r\n \"name\": \"fbc190b2-887d-53f4-d89f-506fe1b0bca0\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Unable to resize my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/0bc575fd-4c7c-1342-c2dc-00ea0a7417d4\",\r\n \"name\": \"0bc575fd-4c7c-1342-c2dc-00ea0a7417d4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Resizing a virtual disk\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/3f3c91f0-5972-0077-6d84-9bd969a76b9c\",\r\n \"name\": \"3f3c91f0-5972-0077-6d84-9bd969a76b9c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Attaching or detaching virtual disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/0f37d7f2-37b0-68d0-41c7-73366919e9b6\",\r\n \"name\": \"0f37d7f2-37b0-68d0-41c7-73366919e9b6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Creating or deleting virtual disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/2c916744-50e2-f012-5c63-cb6d4b3fe336\",\r\n \"name\": \"2c916744-50e2-f012-5c63-cb6d4b3fe336\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Disk throughput is lower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/9b978658-5b35-235f-7225-73c8a020f854\",\r\n \"name\": \"9b978658-5b35-235f-7225-73c8a020f854\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Restore a VM from snapshot\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/b364b834-a97a-4ac2-51cf-1753030a4a64\",\r\n \"name\": \"b364b834-a97a-4ac2-51cf-1753030a4a64\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Issues with Direct Upload for Managed Disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/99c9a352-6723-75fe-dbc1-6fa5e0bda9d4\",\r\n \"name\": \"99c9a352-6723-75fe-dbc1-6fa5e0bda9d4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / My problem is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/330e83f6-b7e3-a6c7-c829-d0a4b87c48c4\",\r\n \"name\": \"330e83f6-b7e3-a6c7-c829-d0a4b87c48c4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Diagnostic (boot diagnostics) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/8cbac97b-41ac-e94a-2e7b-444155e13f67\",\r\n \"name\": \"8cbac97b-41ac-e94a-2e7b-444155e13f67\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Custom Script (CSE) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/e05ff447-6146-a743-c96c-fc711ae69bb0\",\r\n \"name\": \"e05ff447-6146-a743-c96c-fc711ae69bb0\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Log Analytics (OMS) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/2ecbadca-bddb-86b0-75f3-22a894aee131\",\r\n \"name\": \"2ecbadca-bddb-86b0-75f3-22a894aee131\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Desired State Configuration (DSC) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/1b37033a-0de6-668c-ae9f-046b2ff8f136\",\r\n \"name\": \"1b37033a-0de6-668c-ae9f-046b2ff8f136\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Microsoft Antimalware (security) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/4a1a712f-b47a-519d-57d5-46c62b17a3e7\",\r\n \"name\": \"4a1a712f-b47a-519d-57d5-46c62b17a3e7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Disk Encryption (ADE) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/7a6220c0-dc08-717c-42ee-2a768c17bc3c\",\r\n \"name\": \"7a6220c0-dc08-717c-42ee-2a768c17bc3c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Snapshot (Azure Backup) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/a3425f19-0d75-c7dd-d690-3815e5cd9da7\",\r\n \"name\": \"a3425f19-0d75-c7dd-d690-3815e5cd9da7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Update Management extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/3dbbd8b3-db83-9aaa-58be-e94634690bb9\",\r\n \"name\": \"3dbbd8b3-db83-9aaa-58be-e94634690bb9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / GPU Driver extension issue (NVIDIA)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/40bddb88-8440-df18-e0f9-09669c86244e\",\r\n \"name\": \"40bddb88-8440-df18-e0f9-09669c86244e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Network Watcher agent extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/9200ace0-935d-33d8-2094-4e4e91191e9d\",\r\n \"name\": \"9200ace0-935d-33d8-2094-4e4e91191e9d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Monitoring agent (MMA) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/0b6100d8-d1b1-48f3-be89-2dd79979fb62\",\r\n \"name\": \"0b6100d8-d1b1-48f3-be89-2dd79979fb62\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Access (enablevmaccess) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/fb89de86-a9b6-1292-4a65-acda51054736\",\r\n \"name\": \"fb89de86-a9b6-1292-4a65-acda51054736\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Guest Agent issue (crash, hung, not upgrading, or not connecting)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/68f47b23-d3bb-2380-2190-8ea3d6fd593a\",\r\n \"name\": \"68f47b23-d3bb-2380-2190-8ea3d6fd593a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Custom Script (CSE) extension using Managed Identity issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/1bf9b69c-ed00-1627-0012-f5b5a0e5e0a4\",\r\n \"name\": \"1bf9b69c-ed00-1627-0012-f5b5a0e5e0a4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Active Directory Login extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/94a6cfd1-af5c-dc01-5415-44dee8d6800b\",\r\n \"name\": \"94a6cfd1-af5c-dc01-5415-44dee8d6800b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / GPU Driver extension issue (AMD)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/1350f3cb-cdd9-5996-fd4f-5ddca60bdcb7\",\r\n \"name\": \"1350f3cb-cdd9-5996-fd4f-5ddca60bdcb7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My encryption has failed due to a pre-req failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/4e0a1a96-d790-792a-210a-492e029dc1de\",\r\n \"name\": \"4e0a1a96-d790-792a-210a-492e029dc1de\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is due to unsupported image or operating system\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/10d11557-35bc-f44c-107e-802e2fb7e1c8\",\r\n \"name\": \"10d11557-35bc-f44c-107e-802e2fb7e1c8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My VM is not booting after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/b6743c0d-680c-b129-818d-c3f5b177f904\",\r\n \"name\": \"b6743c0d-680c-b129-818d-c3f5b177f904\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My VM is not reachable after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/7f298da5-723e-211d-d41e-0d0a03701656\",\r\n \"name\": \"7f298da5-723e-211d-d41e-0d0a03701656\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My data drive or file system is not available after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/c9b69827-590e-7db3-4bdf-a6472c135690\",\r\n \"name\": \"c9b69827-590e-7db3-4bdf-a6472c135690\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / I need guidance with Azure Key Vault configuration, permissions, or keys\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/2035562c-af0c-cf74-6b8f-3d38ac988130\",\r\n \"name\": \"2035562c-af0c-cf74-6b8f-3d38ac988130\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / Current status of encryption is incorrect for my VM (Portal, CLI, PS)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/ebf08e9a-c81e-2ef6-fbfa-992b93587c41\",\r\n \"name\": \"ebf08e9a-c81e-2ef6-fbfa-992b93587c41\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue with decrypting a virtual disk\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/3bc08be5-e9e6-2cde-ddc1-d7793ad3a70e\",\r\n \"name\": \"3bc08be5-e9e6-2cde-ddc1-d7793ad3a70e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is with troubleshooting an encrypted VM (unlocking)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/3c1373bc-483e-5817-80aa-45f8044dbeea\",\r\n \"name\": \"3c1373bc-483e-5817-80aa-45f8044dbeea\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My encryption is not working as expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/ba3758d8-3246-3d26-9b81-4f2c236df115\",\r\n \"name\": \"ba3758d8-3246-3d26-9b81-4f2c236df115\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/8af24982-4be2-b92c-af06-f3df0f29fc22\",\r\n \"name\": \"8af24982-4be2-b92c-af06-f3df0f29fc22\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I am having issues configuring or enabling backup\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/2ffdd13f-2348-2a94-9650-b53905b0a750\",\r\n \"name\": \"2ffdd13f-2348-2a94-9650-b53905b0a750\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Backup is failing for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/28016531-9037-b4d8-6753-66f86cf29063\",\r\n \"name\": \"28016531-9037-b4d8-6753-66f86cf29063\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Restore is failing for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/18e098f4-a2aa-0b8a-22a6-14cd90f64f3a\",\r\n \"name\": \"18e098f4-a2aa-0b8a-22a6-14cd90f64f3a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Backup is taking longer than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/f056f930-df4e-4d32-5fa6-c09c80b56c1a\",\r\n \"name\": \"f056f930-df4e-4d32-5fa6-c09c80b56c1a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Restore is taking longer than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/97535f5c-fe02-af2d-e29b-d519fecba8b4\",\r\n \"name\": \"97535f5c-fe02-af2d-e29b-d519fecba8b4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I need guidance configuring backup for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/604f02a1-609d-72ec-5d5d-f91abe37c1e7\",\r\n \"name\": \"604f02a1-609d-72ec-5d5d-f91abe37c1e7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I need guidance with restoring my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/57a236ed-df2b-ba44-eac5-b0415774a7d8\",\r\n \"name\": \"57a236ed-df2b-ba44-eac5-b0415774a7d8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / My issue is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/7a592167-d3d3-2b49-1ec6-234521b70791\",\r\n \"name\": \"7a592167-d3d3-2b49-1ec6-234521b70791\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Guest OS - Kernel upgrade issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/6efb5661-da3e-90fb-a1a3-837cad023d23\",\r\n \"name\": \"6efb5661-da3e-90fb-a1a3-837cad023d23\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Create a Linux failover cluster\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/23ec520a-8c6f-0872-6a2f-b91c5ff35dcb\",\r\n \"name\": \"23ec520a-8c6f-0872-6a2f-b91c5ff35dcb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to delete a virtual machine\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/592b8875-cae2-7233-282b-5d44f6e2f37f\",\r\n \"name\": \"592b8875-cae2-7233-282b-5d44f6e2f37f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to delete a Resource Group\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/c9e2ce19-d8aa-69c8-27a5-700441a8e9bd\",\r\n \"name\": \"c9e2ce19-d8aa-69c8-27a5-700441a8e9bd\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Instance Metadata Service\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/abb93a79-3d88-7a3b-8541-d01624fe4d20\",\r\n \"name\": \"abb93a79-3d88-7a3b-8541-d01624fe4d20\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage or use a Linux cluster in Azure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/d4942be3-a6f1-370b-2398-be2ea815c748\",\r\n \"name\": \"d4942be3-a6f1-370b-2398-be2ea815c748\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Azure Metadata Service (Scheduled Events)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/6528c651-6ef2-9e2e-e93b-498eaa6c8980\",\r\n \"name\": \"6528c651-6ef2-9e2e-e93b-498eaa6c8980\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to share Shared Image Gallery, Image Definition or Image Version\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/b2b37cdc-98ec-83ce-df72-9b0cc788f4f5\",\r\n \"name\": \"b2b37cdc-98ec-83ce-df72-9b0cc788f4f5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage an instance of SQL Server\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/b4991d30-6ff3-56aa-c832-0aa9f9e8f0c1\",\r\n \"name\": \"b4991d30-6ff3-56aa-c832-0aa9f9e8f0c1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Guidance regarding retirement of Classic IAAS resources (ASM)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/a462719a-90cf-45a5-60f0-e4f742a60e5a\",\r\n \"name\": \"a462719a-90cf-45a5-60f0-e4f742a60e5a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate IAAS resources from Classic (ASM) to Azure Resource Manager (ARM)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/e0c5322b-fad8-7555-c8e0-6b9630ad590f\",\r\n \"name\": \"e0c5322b-fad8-7555-c8e0-6b9630ad590f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Managed disks migration\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/1a1765c8-6cd4-8857-1543-2a269f996b6c\",\r\n \"name\": \"1a1765c8-6cd4-8857-1543-2a269f996b6c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between storage accounts\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/912f8f14-107e-1bc1-c037-5c1bf9e60fbb\",\r\n \"name\": \"912f8f14-107e-1bc1-c037-5c1bf9e60fbb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between regions\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/ab3525b3-dae0-840d-ffbe-1e10e831fa79\",\r\n \"name\": \"ab3525b3-dae0-840d-ffbe-1e10e831fa79\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between subscriptions\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/1c960d1e-fcde-8c22-71b5-b80157c6a667\",\r\n \"name\": \"1c960d1e-fcde-8c22-71b5-b80157c6a667\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate resources using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/0b5ba037-70e3-364f-5e0d-b9c02ea3a341\",\r\n \"name\": \"0b5ba037-70e3-364f-5e0d-b9c02ea3a341\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate virtual machines from on-premises to Azure using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/5942fab6-bc22-4488-65ad-45ed868e7b23\",\r\n \"name\": \"5942fab6-bc22-4488-65ad-45ed868e7b23\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate virtual machines from third-party provider to Azure using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/224e3d01-19b9-3ea4-2af6-f208b822dc51\",\r\n \"name\": \"224e3d01-19b9-3ea4-2af6-f208b822dc51\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between resource groups\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/a1c4a5b7-1a16-b05f-7930-877b3826e306\",\r\n \"name\": \"a1c4a5b7-1a16-b05f-7930-877b3826e306\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Planned Maintenance (Azure Platform)\"\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/00b0b194-7e37-b8c4-db36-eb6d3548cac1\",\r\n \"name\": \"00b0b194-7e37-b8c4-db36-eb6d3548cac1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Compute-VM (cores-vCPUs) subscription limit increases\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/60ac7433-77c9-85ac-897d-3ef4112732b1\",\r\n \"name\": \"60ac7433-77c9-85ac-897d-3ef4112732b1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / My configuration change impacted connectivity\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/1cd64f59-26a0-f45e-0419-44c0244009b2\",\r\n \"name\": \"1cd64f59-26a0-f45e-0419-44c0244009b2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Troubleshoot my network security group (NSG)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/c4b7a9f2-8f4b-8fcf-5394-2a221d2e723d\",\r\n \"name\": \"c4b7a9f2-8f4b-8fcf-5394-2a221d2e723d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Troubleshoot my VM firewall\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/733fb4be-707d-b2c5-b5d1-01d743a154d9\",\r\n \"name\": \"733fb4be-707d-b2c5-b5d1-01d743a154d9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I have an issue with my public IP\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/7b901199-fb49-5141-5754-8492bf2badc6\",\r\n \"name\": \"7b901199-fb49-5141-5754-8492bf2badc6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I need to reset my password\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/65c2be4f-8625-c747-ed34-e923079e3b04\",\r\n \"name\": \"65c2be4f-8625-c747-ed34-e923079e3b04\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I need guidance with serial console access\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/4862537c-5b3d-88c4-b393-07ccf284c4af\",\r\n \"name\": \"4862537c-5b3d-88c4-b393-07ccf284c4af\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Failure to connect using RDP or SSH port\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/c101d166-7cd3-5f81-f571-b48432d1c853\",\r\n \"name\": \"c101d166-7cd3-5f81-f571-b48432d1c853\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My VM will not start after a configuration change\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/c40f77d3-fe8f-2582-530c-41978bcfc1a8\",\r\n \"name\": \"c40f77d3-fe8f-2582-530c-41978bcfc1a8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I received a disk related error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/d60254ec-81f6-14b8-17e5-86e090a5c114\",\r\n \"name\": \"d60254ec-81f6-14b8-17e5-86e090a5c114\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I received an allocation failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/f3dce59e-ef98-1cc5-e649-c712a6e403d3\",\r\n \"name\": \"f3dce59e-ef98-1cc5-e649-c712a6e403d3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My VM is unresponsive to start or stop operations\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/5f497f89-a8f9-bf7a-4c9b-4f2d952a63f7\",\r\n \"name\": \"5f497f89-a8f9-bf7a-4c9b-4f2d952a63f7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I am unable to resize my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/b20d1f10-6751-1b16-e043-346951c9737f\",\r\n \"name\": \"b20d1f10-6751-1b16-e043-346951c9737f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My start or stop operation failed\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/76ba6e97-4c43-a8f1-eced-98e5b488e3c2\",\r\n \"name\": \"76ba6e97-4c43-a8f1-eced-98e5b488e3c2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My VMs OS is not booting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/0ae39b56-d43d-25bf-352e-6b902e34730a\",\r\n \"name\": \"0ae39b56-d43d-25bf-352e-6b902e34730a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My VMs OS is on a reboot loop\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/691c34b0-3089-227f-8877-0f9bb40655df\",\r\n \"name\": \"691c34b0-3089-227f-8877-0f9bb40655df\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / I applied updates and my VM will not boot\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/ea641794-4895-77ff-4493-8e27b3ed8088\",\r\n \"name\": \"ea641794-4895-77ff-4493-8e27b3ed8088\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / I received a failure when starting my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/326e6b44-39dd-df25-ed6c-2a3dbcce27a1\",\r\n \"name\": \"326e6b44-39dd-df25-ed6c-2a3dbcce27a1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My problem is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/d713e96b-b6ba-cafe-08dc-d708cf3a927b\",\r\n \"name\": \"d713e96b-b6ba-cafe-08dc-d708cf3a927b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I need guidance preparing an image\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/473d7c64-95eb-3efa-730b-4991d75704a0\",\r\n \"name\": \"473d7c64-95eb-3efa-730b-4991d75704a0\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I need guidance deploying with managed disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/859e0b1f-c69e-7806-6a43-22e03c121d33\",\r\n \"name\": \"859e0b1f-c69e-7806-6a43-22e03c121d33\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot custom image deployment failures\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/59b2bc0b-6d1f-340b-141b-76940d6ed87d\",\r\n \"name\": \"59b2bc0b-6d1f-340b-141b-76940d6ed87d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot marketplace image deployment failures\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/7a0432be-d5a8-5b37-410e-fbbd62a085c2\",\r\n \"name\": \"7a0432be-d5a8-5b37-410e-fbbd62a085c2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / My desired region or VM size is unavailable\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/416fff37-d999-6441-9bb4-8fe3bd1ee40a\",\r\n \"name\": \"416fff37-d999-6441-9bb4-8fe3bd1ee40a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I received an allocation failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/b3d35ad2-0156-24f9-65dc-553180a538f2\",\r\n \"name\": \"b3d35ad2-0156-24f9-65dc-553180a538f2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I am unable to deploy a captured or generalized image\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/9dcc8c00-a5d9-8121-1399-6950370ecbec\",\r\n \"name\": \"9dcc8c00-a5d9-8121-1399-6950370ecbec\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot my ARM template error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/b4d1e87a-4dd1-f166-d55f-1b1d4aa0dec2\",\r\n \"name\": \"b4d1e87a-4dd1-f166-d55f-1b1d4aa0dec2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I received a provisioning or deployment timeout error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/a6946f32-c1e2-ca94-be27-dbebcd6cb5f3\",\r\n \"name\": \"a6946f32-c1e2-ca94-be27-dbebcd6cb5f3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / My guest OS is causing restarts\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/edf63757-a5fc-8c55-dbb1-2d1619efac0a\",\r\n \"name\": \"edf63757-a5fc-8c55-dbb1-2d1619efac0a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Request Root Cause Statement for recent availability impact\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/0ec0021e-0e64-77ea-3cfc-32103fc2c2c3\",\r\n \"name\": \"0ec0021e-0e64-77ea-3cfc-32103fc2c2c3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Help diagnose my VM restart issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/20aa3013-c309-ffdb-e8ec-d6214202fe2c\",\r\n \"name\": \"20aa3013-c309-ffdb-e8ec-d6214202fe2c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Disk throughput is lower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/c7a4adae-6c60-c08c-8024-48416fe60c65\",\r\n \"name\": \"c7a4adae-6c60-c08c-8024-48416fe60c65\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / CPU usage is higher than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/0d5dd76a-5da0-e5f7-4aac-14d6762c5719\",\r\n \"name\": \"0d5dd76a-5da0-e5f7-4aac-14d6762c5719\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Memory usage is higher than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/0b6b2a1c-c62f-37b7-b676-7d301bf3ac2e\",\r\n \"name\": \"0b6b2a1c-c62f-37b7-b676-7d301bf3ac2e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / GPU processing is slower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/0744e2e3-915f-354d-4cf4-15611d915082\",\r\n \"name\": \"0744e2e3-915f-354d-4cf4-15611d915082\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Guidance for better VM sizing and throughput\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/fbc190b2-887d-53f4-d89f-506fe1b0bca0\",\r\n \"name\": \"fbc190b2-887d-53f4-d89f-506fe1b0bca0\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Unable to resize my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/0bc575fd-4c7c-1342-c2dc-00ea0a7417d4\",\r\n \"name\": \"0bc575fd-4c7c-1342-c2dc-00ea0a7417d4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Resizing a virtual disk\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/3f3c91f0-5972-0077-6d84-9bd969a76b9c\",\r\n \"name\": \"3f3c91f0-5972-0077-6d84-9bd969a76b9c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Attaching or detaching virtual disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/0f37d7f2-37b0-68d0-41c7-73366919e9b6\",\r\n \"name\": \"0f37d7f2-37b0-68d0-41c7-73366919e9b6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Creating or deleting virtual disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/2c916744-50e2-f012-5c63-cb6d4b3fe336\",\r\n \"name\": \"2c916744-50e2-f012-5c63-cb6d4b3fe336\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Disk throughput is lower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/9b978658-5b35-235f-7225-73c8a020f854\",\r\n \"name\": \"9b978658-5b35-235f-7225-73c8a020f854\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Restore a VM from snapshot\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/b364b834-a97a-4ac2-51cf-1753030a4a64\",\r\n \"name\": \"b364b834-a97a-4ac2-51cf-1753030a4a64\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Issues with Direct Upload for Managed Disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/99c9a352-6723-75fe-dbc1-6fa5e0bda9d4\",\r\n \"name\": \"99c9a352-6723-75fe-dbc1-6fa5e0bda9d4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / My problem is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/330e83f6-b7e3-a6c7-c829-d0a4b87c48c4\",\r\n \"name\": \"330e83f6-b7e3-a6c7-c829-d0a4b87c48c4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Diagnostic (boot diagnostics) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/8cbac97b-41ac-e94a-2e7b-444155e13f67\",\r\n \"name\": \"8cbac97b-41ac-e94a-2e7b-444155e13f67\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Custom Script (CSE) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/e05ff447-6146-a743-c96c-fc711ae69bb0\",\r\n \"name\": \"e05ff447-6146-a743-c96c-fc711ae69bb0\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Log Analytics (OMS) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/2ecbadca-bddb-86b0-75f3-22a894aee131\",\r\n \"name\": \"2ecbadca-bddb-86b0-75f3-22a894aee131\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Desired State Configuration (DSC) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/1b37033a-0de6-668c-ae9f-046b2ff8f136\",\r\n \"name\": \"1b37033a-0de6-668c-ae9f-046b2ff8f136\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Microsoft Antimalware (security) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/4a1a712f-b47a-519d-57d5-46c62b17a3e7\",\r\n \"name\": \"4a1a712f-b47a-519d-57d5-46c62b17a3e7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Disk Encryption (ADE) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/7a6220c0-dc08-717c-42ee-2a768c17bc3c\",\r\n \"name\": \"7a6220c0-dc08-717c-42ee-2a768c17bc3c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Snapshot (Azure Backup) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/a3425f19-0d75-c7dd-d690-3815e5cd9da7\",\r\n \"name\": \"a3425f19-0d75-c7dd-d690-3815e5cd9da7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Update Management extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/3dbbd8b3-db83-9aaa-58be-e94634690bb9\",\r\n \"name\": \"3dbbd8b3-db83-9aaa-58be-e94634690bb9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / GPU Driver extension issue (NVIDIA)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/40bddb88-8440-df18-e0f9-09669c86244e\",\r\n \"name\": \"40bddb88-8440-df18-e0f9-09669c86244e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Network Watcher agent extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/9200ace0-935d-33d8-2094-4e4e91191e9d\",\r\n \"name\": \"9200ace0-935d-33d8-2094-4e4e91191e9d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Monitoring agent (MMA) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/0b6100d8-d1b1-48f3-be89-2dd79979fb62\",\r\n \"name\": \"0b6100d8-d1b1-48f3-be89-2dd79979fb62\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Access (enablevmaccess) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/fb89de86-a9b6-1292-4a65-acda51054736\",\r\n \"name\": \"fb89de86-a9b6-1292-4a65-acda51054736\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Guest Agent issue (crash, hung, not upgrading, or not connecting)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/1bf9b69c-ed00-1627-0012-f5b5a0e5e0a4\",\r\n \"name\": \"1bf9b69c-ed00-1627-0012-f5b5a0e5e0a4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Active Directory Login extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/94a6cfd1-af5c-dc01-5415-44dee8d6800b\",\r\n \"name\": \"94a6cfd1-af5c-dc01-5415-44dee8d6800b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / GPU Driver extension issue (AMD)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/1350f3cb-cdd9-5996-fd4f-5ddca60bdcb7\",\r\n \"name\": \"1350f3cb-cdd9-5996-fd4f-5ddca60bdcb7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My encryption has failed due to a pre-req failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/4e0a1a96-d790-792a-210a-492e029dc1de\",\r\n \"name\": \"4e0a1a96-d790-792a-210a-492e029dc1de\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is due to unsupported image or operating system\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/10d11557-35bc-f44c-107e-802e2fb7e1c8\",\r\n \"name\": \"10d11557-35bc-f44c-107e-802e2fb7e1c8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My VM is not booting after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/b6743c0d-680c-b129-818d-c3f5b177f904\",\r\n \"name\": \"b6743c0d-680c-b129-818d-c3f5b177f904\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My VM is not reachable after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/7f298da5-723e-211d-d41e-0d0a03701656\",\r\n \"name\": \"7f298da5-723e-211d-d41e-0d0a03701656\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My data drive or file system is not available after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/c9b69827-590e-7db3-4bdf-a6472c135690\",\r\n \"name\": \"c9b69827-590e-7db3-4bdf-a6472c135690\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / I need guidance with Azure Key Vault configuration, permissions, or keys\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/2035562c-af0c-cf74-6b8f-3d38ac988130\",\r\n \"name\": \"2035562c-af0c-cf74-6b8f-3d38ac988130\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / Current status of encryption is incorrect for my VM (Portal, CLI, PS)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/ebf08e9a-c81e-2ef6-fbfa-992b93587c41\",\r\n \"name\": \"ebf08e9a-c81e-2ef6-fbfa-992b93587c41\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue with decrypting a virtual disk\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/3bc08be5-e9e6-2cde-ddc1-d7793ad3a70e\",\r\n \"name\": \"3bc08be5-e9e6-2cde-ddc1-d7793ad3a70e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is with troubleshooting an encrypted VM (unlocking)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/3c1373bc-483e-5817-80aa-45f8044dbeea\",\r\n \"name\": \"3c1373bc-483e-5817-80aa-45f8044dbeea\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My encryption is not working as expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/ba3758d8-3246-3d26-9b81-4f2c236df115\",\r\n \"name\": \"ba3758d8-3246-3d26-9b81-4f2c236df115\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/8af24982-4be2-b92c-af06-f3df0f29fc22\",\r\n \"name\": \"8af24982-4be2-b92c-af06-f3df0f29fc22\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I am having issues configuring or enabling backup\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/2ffdd13f-2348-2a94-9650-b53905b0a750\",\r\n \"name\": \"2ffdd13f-2348-2a94-9650-b53905b0a750\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Backup is failing for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/28016531-9037-b4d8-6753-66f86cf29063\",\r\n \"name\": \"28016531-9037-b4d8-6753-66f86cf29063\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Restore is failing for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/18e098f4-a2aa-0b8a-22a6-14cd90f64f3a\",\r\n \"name\": \"18e098f4-a2aa-0b8a-22a6-14cd90f64f3a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Backup is taking longer than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/f056f930-df4e-4d32-5fa6-c09c80b56c1a\",\r\n \"name\": \"f056f930-df4e-4d32-5fa6-c09c80b56c1a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Restore is taking longer than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/97535f5c-fe02-af2d-e29b-d519fecba8b4\",\r\n \"name\": \"97535f5c-fe02-af2d-e29b-d519fecba8b4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I need guidance configuring backup for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/604f02a1-609d-72ec-5d5d-f91abe37c1e7\",\r\n \"name\": \"604f02a1-609d-72ec-5d5d-f91abe37c1e7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I need guidance with restoring my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/57a236ed-df2b-ba44-eac5-b0415774a7d8\",\r\n \"name\": \"57a236ed-df2b-ba44-eac5-b0415774a7d8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / My issue is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/7a592167-d3d3-2b49-1ec6-234521b70791\",\r\n \"name\": \"7a592167-d3d3-2b49-1ec6-234521b70791\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Guest OS - Kernel upgrade issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/6efb5661-da3e-90fb-a1a3-837cad023d23\",\r\n \"name\": \"6efb5661-da3e-90fb-a1a3-837cad023d23\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Create a Linux failover cluster\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/23ec520a-8c6f-0872-6a2f-b91c5ff35dcb\",\r\n \"name\": \"23ec520a-8c6f-0872-6a2f-b91c5ff35dcb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to delete a virtual machine\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/592b8875-cae2-7233-282b-5d44f6e2f37f\",\r\n \"name\": \"592b8875-cae2-7233-282b-5d44f6e2f37f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to delete a Resource Group\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/c9e2ce19-d8aa-69c8-27a5-700441a8e9bd\",\r\n \"name\": \"c9e2ce19-d8aa-69c8-27a5-700441a8e9bd\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Instance Metadata Service\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/abb93a79-3d88-7a3b-8541-d01624fe4d20\",\r\n \"name\": \"abb93a79-3d88-7a3b-8541-d01624fe4d20\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage or use a Linux cluster in Azure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/d4942be3-a6f1-370b-2398-be2ea815c748\",\r\n \"name\": \"d4942be3-a6f1-370b-2398-be2ea815c748\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Azure Metadata Service (Scheduled Events)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/6528c651-6ef2-9e2e-e93b-498eaa6c8980\",\r\n \"name\": \"6528c651-6ef2-9e2e-e93b-498eaa6c8980\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to share Shared Image Gallery, Image Definition or Image Version\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/b2b37cdc-98ec-83ce-df72-9b0cc788f4f5\",\r\n \"name\": \"b2b37cdc-98ec-83ce-df72-9b0cc788f4f5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage an instance of SQL Server\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/b4991d30-6ff3-56aa-c832-0aa9f9e8f0c1\",\r\n \"name\": \"b4991d30-6ff3-56aa-c832-0aa9f9e8f0c1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Guidance regarding retirement of Classic IAAS resources (ASM)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/a462719a-90cf-45a5-60f0-e4f742a60e5a\",\r\n \"name\": \"a462719a-90cf-45a5-60f0-e4f742a60e5a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate IAAS resources from Classic (ASM) to Azure Resource Manager (ARM)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/e0c5322b-fad8-7555-c8e0-6b9630ad590f\",\r\n \"name\": \"e0c5322b-fad8-7555-c8e0-6b9630ad590f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Managed disks migration\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/1a1765c8-6cd4-8857-1543-2a269f996b6c\",\r\n \"name\": \"1a1765c8-6cd4-8857-1543-2a269f996b6c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between storage accounts\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/912f8f14-107e-1bc1-c037-5c1bf9e60fbb\",\r\n \"name\": \"912f8f14-107e-1bc1-c037-5c1bf9e60fbb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between regions\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/ab3525b3-dae0-840d-ffbe-1e10e831fa79\",\r\n \"name\": \"ab3525b3-dae0-840d-ffbe-1e10e831fa79\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between subscriptions\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/1c960d1e-fcde-8c22-71b5-b80157c6a667\",\r\n \"name\": \"1c960d1e-fcde-8c22-71b5-b80157c6a667\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate resources using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/0b5ba037-70e3-364f-5e0d-b9c02ea3a341\",\r\n \"name\": \"0b5ba037-70e3-364f-5e0d-b9c02ea3a341\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate virtual machines from on-premises to Azure using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/5942fab6-bc22-4488-65ad-45ed868e7b23\",\r\n \"name\": \"5942fab6-bc22-4488-65ad-45ed868e7b23\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate virtual machines from third-party provider to Azure using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/224e3d01-19b9-3ea4-2af6-f208b822dc51\",\r\n \"name\": \"224e3d01-19b9-3ea4-2af6-f208b822dc51\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between resource groups\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/a1c4a5b7-1a16-b05f-7930-877b3826e306\",\r\n \"name\": \"a1c4a5b7-1a16-b05f-7930-877b3826e306\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Planned Maintenance (Azure Platform)\"\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
@@ -382,13 +382,13 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "660c502e-c3a5-4dee-9b3e-808c681646ab"
+ "fd6742de-eea7-4de1-99ca-ee40c2192fd4"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.28516.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Support.MicrosoftSupportClient/1.0.0.0"
@@ -402,7 +402,10 @@
"no-cache"
],
"x-ms-ratelimit-remaining-tenant-reads": [
- "11893"
+ "11993"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -411,22 +414,19 @@
"Kestrel"
],
"x-ms-request-id": [
- "a47a80de-7079-45f7-8a18-07898ab51231"
+ "47c243dd-980d-487f-b6ca-a836c6d69139"
],
"x-ms-correlation-request-id": [
- "a47a80de-7079-45f7-8a18-07898ab51231"
+ "47c243dd-980d-487f-b6ca-a836c6d69139"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200315T071729Z:a47a80de-7079-45f7-8a18-07898ab51231"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "CENTRALUSEUAP:20200327T043635Z:47c243dd-980d-487f-b6ca-a836c6d69139"
],
"Date": [
- "Sun, 15 Mar 2020 07:17:28 GMT"
+ "Fri, 27 Mar 2020 04:36:35 GMT"
],
"Content-Length": [
- "33975"
+ "33597"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -435,7 +435,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/13086017-942d-eef0-6753-4110d1f81f6d\",\r\n \"name\": \"13086017-942d-eef0-6753-4110d1f81f6d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Compute-VM (cores-vCPUs) subscription limit increases\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/97d59e9a-44c7-75a7-3dea-576703508865\",\r\n \"name\": \"97d59e9a-44c7-75a7-3dea-576703508865\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / My configuration change impacted connectivity\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/95c99bc2-2b70-d1bc-e401-dfe25698a4a6\",\r\n \"name\": \"95c99bc2-2b70-d1bc-e401-dfe25698a4a6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Troubleshoot my network security group (NSG)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/f45ecfaa-466e-3411-2666-16543879bf34\",\r\n \"name\": \"f45ecfaa-466e-3411-2666-16543879bf34\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Troubleshoot my VM firewall\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/78c3817c-a9dd-cfe4-6f8f-e0ce3d9afd07\",\r\n \"name\": \"78c3817c-a9dd-cfe4-6f8f-e0ce3d9afd07\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I have an issue with my public IP\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/1b8cc1f2-a9bd-891c-238c-0998bcc41608\",\r\n \"name\": \"1b8cc1f2-a9bd-891c-238c-0998bcc41608\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I need to reset my password\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/5d3532ae-9392-ff02-de86-69ed8b293a41\",\r\n \"name\": \"5d3532ae-9392-ff02-de86-69ed8b293a41\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I need guidance with serial console access\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/9c66fc89-fd32-7b8d-f92a-5b5bb42607a9\",\r\n \"name\": \"9c66fc89-fd32-7b8d-f92a-5b5bb42607a9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Failure to connect using RDP or SSH port\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/4e1ee33c-5ef0-f7b7-0296-62314acdefa5\",\r\n \"name\": \"4e1ee33c-5ef0-f7b7-0296-62314acdefa5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My VM will not start after a configuration change\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/ddf6e1a4-1e77-d436-6455-f0555fb7d5ed\",\r\n \"name\": \"ddf6e1a4-1e77-d436-6455-f0555fb7d5ed\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I received a disk related error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/f485c457-8e19-0c18-9c62-e0a05ab914e3\",\r\n \"name\": \"f485c457-8e19-0c18-9c62-e0a05ab914e3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I received an allocation failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/61b12a2a-12f9-029b-90b2-4735b90bfc14\",\r\n \"name\": \"61b12a2a-12f9-029b-90b2-4735b90bfc14\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My VM is unresponsive to start or stop operations\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/6d3096e7-0b57-8847-e78a-def7801487e5\",\r\n \"name\": \"6d3096e7-0b57-8847-e78a-def7801487e5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I am unable to resize my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/e334629a-173b-975a-f651-c24565b9077d\",\r\n \"name\": \"e334629a-173b-975a-f651-c24565b9077d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My start or stop operation failed\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/c245da0a-ab9c-7ab9-7875-eb896bc5508c\",\r\n \"name\": \"c245da0a-ab9c-7ab9-7875-eb896bc5508c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My VMs OS is not booting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/4ddf7ee3-6980-035e-a734-1e36b94b9be9\",\r\n \"name\": \"4ddf7ee3-6980-035e-a734-1e36b94b9be9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My VMs OS is on a reboot loop\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/3c07823e-c4e1-ae0f-55fb-1e5202e452e4\",\r\n \"name\": \"3c07823e-c4e1-ae0f-55fb-1e5202e452e4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / I applied updates and my VM will not boot\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/5e3efdeb-4546-595b-0a16-5ca5eebe25c1\",\r\n \"name\": \"5e3efdeb-4546-595b-0a16-5ca5eebe25c1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / I received a failure when starting my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/10e2260f-0f1f-10fb-6093-bd6b97ee5fac\",\r\n \"name\": \"10e2260f-0f1f-10fb-6093-bd6b97ee5fac\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My problem is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/ddf63090-bce8-efbd-717e-7bc80a6f0ece\",\r\n \"name\": \"ddf63090-bce8-efbd-717e-7bc80a6f0ece\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I need guidance preparing an image\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/d3596c4a-696f-badc-5668-83e20de96c56\",\r\n \"name\": \"d3596c4a-696f-badc-5668-83e20de96c56\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I need guidance deploying with managed disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/57acac79-ef86-d322-1074-e87c017f92b1\",\r\n \"name\": \"57acac79-ef86-d322-1074-e87c017f92b1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot custom image deployment failures\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/e8484403-dea9-baed-e6a1-9116836e8b8e\",\r\n \"name\": \"e8484403-dea9-baed-e6a1-9116836e8b8e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot marketplace image deployment failures\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/51881b97-a6b8-e9f8-a0ce-34f1b33a2e3e\",\r\n \"name\": \"51881b97-a6b8-e9f8-a0ce-34f1b33a2e3e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / My desired region or VM size is unavailable\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/b3a44c43-b1d8-0c8e-30f8-ee932130629e\",\r\n \"name\": \"b3a44c43-b1d8-0c8e-30f8-ee932130629e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I received an allocation failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/9d901692-a4dc-403b-ef14-840cdad12f33\",\r\n \"name\": \"9d901692-a4dc-403b-ef14-840cdad12f33\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I am unable to deploy a captured or generalized image\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/ef54b615-48b4-8033-f681-8dcd5c9d1f9a\",\r\n \"name\": \"ef54b615-48b4-8033-f681-8dcd5c9d1f9a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot my ARM template error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/5c859f46-dd53-03b2-498f-b4225febf829\",\r\n \"name\": \"5c859f46-dd53-03b2-498f-b4225febf829\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I received a provisioning or deployment timeout error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/264b845c-6ac7-d69c-9d32-88cf9c210156\",\r\n \"name\": \"264b845c-6ac7-d69c-9d32-88cf9c210156\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / My guest OS is causing restarts\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/a9ef9e6c-84ba-5de7-0d83-eaed1d584c1b\",\r\n \"name\": \"a9ef9e6c-84ba-5de7-0d83-eaed1d584c1b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Request Root Cause Statement for recent availability impact\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/79c19cdf-bf2f-3f25-c74b-7f106b9ba3dc\",\r\n \"name\": \"79c19cdf-bf2f-3f25-c74b-7f106b9ba3dc\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Help diagnose my VM restart issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/5d42bdf0-0398-274d-cbd9-eb264391fce1\",\r\n \"name\": \"5d42bdf0-0398-274d-cbd9-eb264391fce1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Disk throughput is lower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/d42513af-f30a-5af5-c61e-84291d954f5e\",\r\n \"name\": \"d42513af-f30a-5af5-c61e-84291d954f5e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / CPU usage is higher than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/277537fc-0cb4-ca80-6e6e-b771fb5a9728\",\r\n \"name\": \"277537fc-0cb4-ca80-6e6e-b771fb5a9728\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Memory usage is higher than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/6820c41d-5001-a492-ed6d-e7447a342824\",\r\n \"name\": \"6820c41d-5001-a492-ed6d-e7447a342824\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / GPU processing is slower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/edd956dc-8fac-8362-9e6e-e2e2c950de7e\",\r\n \"name\": \"edd956dc-8fac-8362-9e6e-e2e2c950de7e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Guidance for better VM sizing and throughput\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/c13e9c1e-152a-d58b-9351-ce1373694294\",\r\n \"name\": \"c13e9c1e-152a-d58b-9351-ce1373694294\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Unable to resize my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/2711f5d6-3ed3-b9c5-4542-2ca277ccf4a4\",\r\n \"name\": \"2711f5d6-3ed3-b9c5-4542-2ca277ccf4a4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Resizing a virtual disk\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/17899864-d403-8b54-02a5-26940eab58b5\",\r\n \"name\": \"17899864-d403-8b54-02a5-26940eab58b5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Attaching or detaching virtual disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/25f82959-8825-930a-8775-b2da8035854a\",\r\n \"name\": \"25f82959-8825-930a-8775-b2da8035854a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Creating or deleting virtual disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/0d045849-a219-fab3-3bcd-75654a2bfd99\",\r\n \"name\": \"0d045849-a219-fab3-3bcd-75654a2bfd99\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Disk throughput is lower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/2f8277dc-de9b-63fd-114f-48f03a8c46f4\",\r\n \"name\": \"2f8277dc-de9b-63fd-114f-48f03a8c46f4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Restore a VM from snapshot\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/cde25e58-a8fd-416e-e7b4-835d90be0ce1\",\r\n \"name\": \"cde25e58-a8fd-416e-e7b4-835d90be0ce1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Issues with Direct Upload for Managed Disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/39901314-e711-2c3d-d592-4617ea775041\",\r\n \"name\": \"39901314-e711-2c3d-d592-4617ea775041\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / My problem is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/3cbef9ba-ff30-70bc-14c8-e4f3cf3cc9b8\",\r\n \"name\": \"3cbef9ba-ff30-70bc-14c8-e4f3cf3cc9b8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Diagnostic (boot diagnostics) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/18f75bf4-965a-819e-024c-82436865e58c\",\r\n \"name\": \"18f75bf4-965a-819e-024c-82436865e58c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Custom Script (CSE) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/d835cec0-eef7-d190-81e3-e960c6129a93\",\r\n \"name\": \"d835cec0-eef7-d190-81e3-e960c6129a93\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Log Analytics (OMS) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/922d9343-4f89-012f-6c92-d13f1b747a0d\",\r\n \"name\": \"922d9343-4f89-012f-6c92-d13f1b747a0d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Desired State Configuration (DSC) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/cd8fe49c-5364-5018-8fb3-91833303b95b\",\r\n \"name\": \"cd8fe49c-5364-5018-8fb3-91833303b95b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Microsoft Antimalware (security) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/a1244cae-1bb0-3bc5-423f-e6d4effedd7b\",\r\n \"name\": \"a1244cae-1bb0-3bc5-423f-e6d4effedd7b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Disk Encryption (ADE) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/68ad16a7-00fd-5363-8f63-2417df9e4d18\",\r\n \"name\": \"68ad16a7-00fd-5363-8f63-2417df9e4d18\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Snapshot (Azure Backup) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/89d79476-b00c-d9f7-9653-b7443bec5783\",\r\n \"name\": \"89d79476-b00c-d9f7-9653-b7443bec5783\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Update Management extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/12432aed-b1ee-f642-126d-050c60ae6270\",\r\n \"name\": \"12432aed-b1ee-f642-126d-050c60ae6270\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / GPU Driver extension issue (NVIDIA)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/5035f994-5e58-1ea3-7b76-0a6e95f9136b\",\r\n \"name\": \"5035f994-5e58-1ea3-7b76-0a6e95f9136b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Network Watcher agent extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/1ec1197c-eecf-bef0-1fc0-1249869dfcfe\",\r\n \"name\": \"1ec1197c-eecf-bef0-1fc0-1249869dfcfe\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Monitoring agent (MMA) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/cfad9d0c-f389-5da6-9829-4a503c3fd5a0\",\r\n \"name\": \"cfad9d0c-f389-5da6-9829-4a503c3fd5a0\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Access (enablevmaccess) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/0112f5eb-f389-9828-6182-791f5fefffd6\",\r\n \"name\": \"0112f5eb-f389-9828-6182-791f5fefffd6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Guest Agent issue (crash, hung, not upgrading, or not connecting)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/a140b8b4-ce18-2c47-552e-285b76412925\",\r\n \"name\": \"a140b8b4-ce18-2c47-552e-285b76412925\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Custom Script (CSE) extension using Managed Identity issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/2b21d941-3980-2922-37e5-50e2bda90e06\",\r\n \"name\": \"2b21d941-3980-2922-37e5-50e2bda90e06\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Active Directory Login extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/bdf775ae-57c6-c1ee-d5a0-d2234578e8e5\",\r\n \"name\": \"bdf775ae-57c6-c1ee-d5a0-d2234578e8e5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / GPU Driver extension issue (AMD)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/e5de7aa7-83e1-dde5-6cfc-b03ef6b2230b\",\r\n \"name\": \"e5de7aa7-83e1-dde5-6cfc-b03ef6b2230b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My encryption has failed due to a pre-req failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/28a64cc6-768e-8d34-8ffb-bcf92b9aac2b\",\r\n \"name\": \"28a64cc6-768e-8d34-8ffb-bcf92b9aac2b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is due to unsupported image or operating system\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/d1d782ce-c148-0b02-1b7e-613982a81b6f\",\r\n \"name\": \"d1d782ce-c148-0b02-1b7e-613982a81b6f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My VM is not booting after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/332d4f59-f432-22dc-a707-8eea07dae815\",\r\n \"name\": \"332d4f59-f432-22dc-a707-8eea07dae815\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My VM is not reachable after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/579dad75-1207-15f2-437b-554be0677f6c\",\r\n \"name\": \"579dad75-1207-15f2-437b-554be0677f6c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My data drive or file system is not available after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/ba33538e-99e4-feb5-9324-56f08c691488\",\r\n \"name\": \"ba33538e-99e4-feb5-9324-56f08c691488\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / I need guidance with Azure Key Vault configuration, permissions, or keys\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/00ada183-92de-7636-1dc9-a381d2ec3482\",\r\n \"name\": \"00ada183-92de-7636-1dc9-a381d2ec3482\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / Current status of encryption is incorrect for my VM (Portal, CLI, PS)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/28e8162f-466c-fed0-33b5-92497e1ff43f\",\r\n \"name\": \"28e8162f-466c-fed0-33b5-92497e1ff43f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue with decrypting a virtual disk\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/b1684871-79ff-906c-593e-c46828c8be59\",\r\n \"name\": \"b1684871-79ff-906c-593e-c46828c8be59\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is with troubleshooting an encrypted VM (unlocking)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/56faf779-660e-7299-b9b0-f59377212e72\",\r\n \"name\": \"56faf779-660e-7299-b9b0-f59377212e72\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My encryption is not working as expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/a54d7e07-d333-9ec1-067b-7678c364aeb9\",\r\n \"name\": \"a54d7e07-d333-9ec1-067b-7678c364aeb9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/92305b37-6aa6-2f6a-ca9a-a3a705331241\",\r\n \"name\": \"92305b37-6aa6-2f6a-ca9a-a3a705331241\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I am having issues configuring or enabling backup\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/2e951b97-94cc-9b0b-e45f-5a88be9e89bc\",\r\n \"name\": \"2e951b97-94cc-9b0b-e45f-5a88be9e89bc\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Backup is failing for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/e7550efb-4cb4-efa2-af55-d16d0e0ebb37\",\r\n \"name\": \"e7550efb-4cb4-efa2-af55-d16d0e0ebb37\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Restore is failing for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/201fa48b-6c7c-c457-0d24-f345b58b3656\",\r\n \"name\": \"201fa48b-6c7c-c457-0d24-f345b58b3656\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Backup is taking longer than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/b573687c-0dfb-3f88-798a-f5d67c25730e\",\r\n \"name\": \"b573687c-0dfb-3f88-798a-f5d67c25730e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Restore is taking longer than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/6651a324-4084-f40c-9e98-8f260bd9ebd4\",\r\n \"name\": \"6651a324-4084-f40c-9e98-8f260bd9ebd4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I need guidance configuring backup for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/87d457bf-b2eb-4fc3-2642-af3125aa9944\",\r\n \"name\": \"87d457bf-b2eb-4fc3-2642-af3125aa9944\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I need guidance with restoring my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/e47cd566-4479-1320-562b-6adfc9f5107f\",\r\n \"name\": \"e47cd566-4479-1320-562b-6adfc9f5107f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / My issue is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/02db5ac6-64f6-5726-38b9-ee25df375c8c\",\r\n \"name\": \"02db5ac6-64f6-5726-38b9-ee25df375c8c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Guest OS - Kernel upgrade issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/217363f7-35d7-509c-cc75-2bdbcfd7727d\",\r\n \"name\": \"217363f7-35d7-509c-cc75-2bdbcfd7727d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Create a Linux failover cluster\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/4a471613-aba0-b69b-69f0-7e17d02113ac\",\r\n \"name\": \"4a471613-aba0-b69b-69f0-7e17d02113ac\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to delete a virtual machine\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/6822c17d-7e83-6d34-c015-b9d8345cbcd3\",\r\n \"name\": \"6822c17d-7e83-6d34-c015-b9d8345cbcd3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to delete a Resource Group\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/043edeb8-5980-8afd-be23-5dc892629076\",\r\n \"name\": \"043edeb8-5980-8afd-be23-5dc892629076\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Instance Metadata Service\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/f62adf2e-8bd5-c883-7ac4-88bb80f24cb6\",\r\n \"name\": \"f62adf2e-8bd5-c883-7ac4-88bb80f24cb6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage or use a Linux cluster in Azure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/3aa8f1cd-033b-c07e-430c-dbb88e33a43b\",\r\n \"name\": \"3aa8f1cd-033b-c07e-430c-dbb88e33a43b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Azure Metadata Service (Scheduled Events)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/d50047d3-6e34-440f-53f3-f6b9ea151c66\",\r\n \"name\": \"d50047d3-6e34-440f-53f3-f6b9ea151c66\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to share Shared Image Gallery, Image Definition or Image Version\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/68609d66-c773-bbbe-244c-5c5afd643527\",\r\n \"name\": \"68609d66-c773-bbbe-244c-5c5afd643527\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage an instance of SQL Server\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/01d83b71-bc02-e38d-facd-43ce9df6da28\",\r\n \"name\": \"01d83b71-bc02-e38d-facd-43ce9df6da28\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Guidance regarding retirement of Classic IAAS resources (ASM)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/9c6961c0-cf3e-9dbe-9bcb-9c1a102fce38\",\r\n \"name\": \"9c6961c0-cf3e-9dbe-9bcb-9c1a102fce38\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate IAAS resources from Classic (ASM) to Azure Resource Manager (ARM)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/6cf12b71-dffe-2150-1feb-16109ff143e5\",\r\n \"name\": \"6cf12b71-dffe-2150-1feb-16109ff143e5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Managed disks migration\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/7d1b4fe9-d2be-59eb-2d47-523b89bf0efc\",\r\n \"name\": \"7d1b4fe9-d2be-59eb-2d47-523b89bf0efc\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between storage accounts\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/24d6e747-a5fd-f15d-6a69-15e70f5f3604\",\r\n \"name\": \"24d6e747-a5fd-f15d-6a69-15e70f5f3604\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between regions\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/3dc0f91d-4d56-2bf2-65fd-f53912ed0d5a\",\r\n \"name\": \"3dc0f91d-4d56-2bf2-65fd-f53912ed0d5a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between subscriptions\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/42aef628-aeb5-41c8-fc1d-104ddb93f635\",\r\n \"name\": \"42aef628-aeb5-41c8-fc1d-104ddb93f635\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate resources using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/4b2cfaff-ddf5-da90-a64c-db25d5fa17fb\",\r\n \"name\": \"4b2cfaff-ddf5-da90-a64c-db25d5fa17fb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate virtual machines from on-premises to Azure using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/6784b50a-f959-bd77-67b2-7c72852f2677\",\r\n \"name\": \"6784b50a-f959-bd77-67b2-7c72852f2677\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate virtual machines from third-party provider to Azure using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/adec6fc5-555f-b291-8377-5963d2201ebb\",\r\n \"name\": \"adec6fc5-555f-b291-8377-5963d2201ebb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between resource groups\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/354db935-a238-4f24-19e4-402bcd1f7f7a\",\r\n \"name\": \"354db935-a238-4f24-19e4-402bcd1f7f7a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Planned Maintenance (Azure Platform)\"\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/13086017-942d-eef0-6753-4110d1f81f6d\",\r\n \"name\": \"13086017-942d-eef0-6753-4110d1f81f6d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Compute-VM (cores-vCPUs) subscription limit increases\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/97d59e9a-44c7-75a7-3dea-576703508865\",\r\n \"name\": \"97d59e9a-44c7-75a7-3dea-576703508865\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / My configuration change impacted connectivity\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/95c99bc2-2b70-d1bc-e401-dfe25698a4a6\",\r\n \"name\": \"95c99bc2-2b70-d1bc-e401-dfe25698a4a6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Troubleshoot my network security group (NSG)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/f45ecfaa-466e-3411-2666-16543879bf34\",\r\n \"name\": \"f45ecfaa-466e-3411-2666-16543879bf34\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Troubleshoot my VM firewall\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/78c3817c-a9dd-cfe4-6f8f-e0ce3d9afd07\",\r\n \"name\": \"78c3817c-a9dd-cfe4-6f8f-e0ce3d9afd07\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I have an issue with my public IP\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/1b8cc1f2-a9bd-891c-238c-0998bcc41608\",\r\n \"name\": \"1b8cc1f2-a9bd-891c-238c-0998bcc41608\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I need to reset my password\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/5d3532ae-9392-ff02-de86-69ed8b293a41\",\r\n \"name\": \"5d3532ae-9392-ff02-de86-69ed8b293a41\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I need guidance with serial console access\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/9c66fc89-fd32-7b8d-f92a-5b5bb42607a9\",\r\n \"name\": \"9c66fc89-fd32-7b8d-f92a-5b5bb42607a9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Failure to connect using RDP or SSH port\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/4e1ee33c-5ef0-f7b7-0296-62314acdefa5\",\r\n \"name\": \"4e1ee33c-5ef0-f7b7-0296-62314acdefa5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My VM will not start after a configuration change\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/ddf6e1a4-1e77-d436-6455-f0555fb7d5ed\",\r\n \"name\": \"ddf6e1a4-1e77-d436-6455-f0555fb7d5ed\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I received a disk related error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/f485c457-8e19-0c18-9c62-e0a05ab914e3\",\r\n \"name\": \"f485c457-8e19-0c18-9c62-e0a05ab914e3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I received an allocation failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/61b12a2a-12f9-029b-90b2-4735b90bfc14\",\r\n \"name\": \"61b12a2a-12f9-029b-90b2-4735b90bfc14\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My VM is unresponsive to start or stop operations\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/6d3096e7-0b57-8847-e78a-def7801487e5\",\r\n \"name\": \"6d3096e7-0b57-8847-e78a-def7801487e5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I am unable to resize my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/e334629a-173b-975a-f651-c24565b9077d\",\r\n \"name\": \"e334629a-173b-975a-f651-c24565b9077d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My start or stop operation failed\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/c245da0a-ab9c-7ab9-7875-eb896bc5508c\",\r\n \"name\": \"c245da0a-ab9c-7ab9-7875-eb896bc5508c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My VMs OS is not booting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/4ddf7ee3-6980-035e-a734-1e36b94b9be9\",\r\n \"name\": \"4ddf7ee3-6980-035e-a734-1e36b94b9be9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My VMs OS is on a reboot loop\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/3c07823e-c4e1-ae0f-55fb-1e5202e452e4\",\r\n \"name\": \"3c07823e-c4e1-ae0f-55fb-1e5202e452e4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / I applied updates and my VM will not boot\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/5e3efdeb-4546-595b-0a16-5ca5eebe25c1\",\r\n \"name\": \"5e3efdeb-4546-595b-0a16-5ca5eebe25c1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / I received a failure when starting my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/10e2260f-0f1f-10fb-6093-bd6b97ee5fac\",\r\n \"name\": \"10e2260f-0f1f-10fb-6093-bd6b97ee5fac\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My problem is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/ddf63090-bce8-efbd-717e-7bc80a6f0ece\",\r\n \"name\": \"ddf63090-bce8-efbd-717e-7bc80a6f0ece\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I need guidance preparing an image\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/d3596c4a-696f-badc-5668-83e20de96c56\",\r\n \"name\": \"d3596c4a-696f-badc-5668-83e20de96c56\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I need guidance deploying with managed disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/57acac79-ef86-d322-1074-e87c017f92b1\",\r\n \"name\": \"57acac79-ef86-d322-1074-e87c017f92b1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot custom image deployment failures\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/e8484403-dea9-baed-e6a1-9116836e8b8e\",\r\n \"name\": \"e8484403-dea9-baed-e6a1-9116836e8b8e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot marketplace image deployment failures\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/51881b97-a6b8-e9f8-a0ce-34f1b33a2e3e\",\r\n \"name\": \"51881b97-a6b8-e9f8-a0ce-34f1b33a2e3e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / My desired region or VM size is unavailable\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/b3a44c43-b1d8-0c8e-30f8-ee932130629e\",\r\n \"name\": \"b3a44c43-b1d8-0c8e-30f8-ee932130629e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I received an allocation failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/9d901692-a4dc-403b-ef14-840cdad12f33\",\r\n \"name\": \"9d901692-a4dc-403b-ef14-840cdad12f33\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I am unable to deploy a captured or generalized image\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/ef54b615-48b4-8033-f681-8dcd5c9d1f9a\",\r\n \"name\": \"ef54b615-48b4-8033-f681-8dcd5c9d1f9a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot my ARM template error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/5c859f46-dd53-03b2-498f-b4225febf829\",\r\n \"name\": \"5c859f46-dd53-03b2-498f-b4225febf829\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I received a provisioning or deployment timeout error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/264b845c-6ac7-d69c-9d32-88cf9c210156\",\r\n \"name\": \"264b845c-6ac7-d69c-9d32-88cf9c210156\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / My guest OS is causing restarts\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/a9ef9e6c-84ba-5de7-0d83-eaed1d584c1b\",\r\n \"name\": \"a9ef9e6c-84ba-5de7-0d83-eaed1d584c1b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Request Root Cause Statement for recent availability impact\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/79c19cdf-bf2f-3f25-c74b-7f106b9ba3dc\",\r\n \"name\": \"79c19cdf-bf2f-3f25-c74b-7f106b9ba3dc\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Help diagnose my VM restart issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/5d42bdf0-0398-274d-cbd9-eb264391fce1\",\r\n \"name\": \"5d42bdf0-0398-274d-cbd9-eb264391fce1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Disk throughput is lower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/d42513af-f30a-5af5-c61e-84291d954f5e\",\r\n \"name\": \"d42513af-f30a-5af5-c61e-84291d954f5e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / CPU usage is higher than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/277537fc-0cb4-ca80-6e6e-b771fb5a9728\",\r\n \"name\": \"277537fc-0cb4-ca80-6e6e-b771fb5a9728\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Memory usage is higher than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/6820c41d-5001-a492-ed6d-e7447a342824\",\r\n \"name\": \"6820c41d-5001-a492-ed6d-e7447a342824\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / GPU processing is slower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/edd956dc-8fac-8362-9e6e-e2e2c950de7e\",\r\n \"name\": \"edd956dc-8fac-8362-9e6e-e2e2c950de7e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Guidance for better VM sizing and throughput\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/c13e9c1e-152a-d58b-9351-ce1373694294\",\r\n \"name\": \"c13e9c1e-152a-d58b-9351-ce1373694294\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Unable to resize my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/2711f5d6-3ed3-b9c5-4542-2ca277ccf4a4\",\r\n \"name\": \"2711f5d6-3ed3-b9c5-4542-2ca277ccf4a4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Resizing a virtual disk\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/17899864-d403-8b54-02a5-26940eab58b5\",\r\n \"name\": \"17899864-d403-8b54-02a5-26940eab58b5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Attaching or detaching virtual disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/25f82959-8825-930a-8775-b2da8035854a\",\r\n \"name\": \"25f82959-8825-930a-8775-b2da8035854a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Creating or deleting virtual disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/0d045849-a219-fab3-3bcd-75654a2bfd99\",\r\n \"name\": \"0d045849-a219-fab3-3bcd-75654a2bfd99\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Disk throughput is lower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/2f8277dc-de9b-63fd-114f-48f03a8c46f4\",\r\n \"name\": \"2f8277dc-de9b-63fd-114f-48f03a8c46f4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Restore a VM from snapshot\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/cde25e58-a8fd-416e-e7b4-835d90be0ce1\",\r\n \"name\": \"cde25e58-a8fd-416e-e7b4-835d90be0ce1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Issues with Direct Upload for Managed Disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/39901314-e711-2c3d-d592-4617ea775041\",\r\n \"name\": \"39901314-e711-2c3d-d592-4617ea775041\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / My problem is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/3cbef9ba-ff30-70bc-14c8-e4f3cf3cc9b8\",\r\n \"name\": \"3cbef9ba-ff30-70bc-14c8-e4f3cf3cc9b8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Diagnostic (boot diagnostics) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/18f75bf4-965a-819e-024c-82436865e58c\",\r\n \"name\": \"18f75bf4-965a-819e-024c-82436865e58c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Custom Script (CSE) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/d835cec0-eef7-d190-81e3-e960c6129a93\",\r\n \"name\": \"d835cec0-eef7-d190-81e3-e960c6129a93\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Log Analytics (OMS) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/922d9343-4f89-012f-6c92-d13f1b747a0d\",\r\n \"name\": \"922d9343-4f89-012f-6c92-d13f1b747a0d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Desired State Configuration (DSC) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/cd8fe49c-5364-5018-8fb3-91833303b95b\",\r\n \"name\": \"cd8fe49c-5364-5018-8fb3-91833303b95b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Microsoft Antimalware (security) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/a1244cae-1bb0-3bc5-423f-e6d4effedd7b\",\r\n \"name\": \"a1244cae-1bb0-3bc5-423f-e6d4effedd7b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Disk Encryption (ADE) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/68ad16a7-00fd-5363-8f63-2417df9e4d18\",\r\n \"name\": \"68ad16a7-00fd-5363-8f63-2417df9e4d18\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Snapshot (Azure Backup) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/89d79476-b00c-d9f7-9653-b7443bec5783\",\r\n \"name\": \"89d79476-b00c-d9f7-9653-b7443bec5783\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Update Management extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/12432aed-b1ee-f642-126d-050c60ae6270\",\r\n \"name\": \"12432aed-b1ee-f642-126d-050c60ae6270\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / GPU Driver extension issue (NVIDIA)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/5035f994-5e58-1ea3-7b76-0a6e95f9136b\",\r\n \"name\": \"5035f994-5e58-1ea3-7b76-0a6e95f9136b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Network Watcher agent extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/1ec1197c-eecf-bef0-1fc0-1249869dfcfe\",\r\n \"name\": \"1ec1197c-eecf-bef0-1fc0-1249869dfcfe\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Monitoring agent (MMA) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/cfad9d0c-f389-5da6-9829-4a503c3fd5a0\",\r\n \"name\": \"cfad9d0c-f389-5da6-9829-4a503c3fd5a0\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Access (enablevmaccess) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/0112f5eb-f389-9828-6182-791f5fefffd6\",\r\n \"name\": \"0112f5eb-f389-9828-6182-791f5fefffd6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Guest Agent issue (crash, hung, not upgrading, or not connecting)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/2b21d941-3980-2922-37e5-50e2bda90e06\",\r\n \"name\": \"2b21d941-3980-2922-37e5-50e2bda90e06\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Active Directory Login extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/bdf775ae-57c6-c1ee-d5a0-d2234578e8e5\",\r\n \"name\": \"bdf775ae-57c6-c1ee-d5a0-d2234578e8e5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / GPU Driver extension issue (AMD)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/e5de7aa7-83e1-dde5-6cfc-b03ef6b2230b\",\r\n \"name\": \"e5de7aa7-83e1-dde5-6cfc-b03ef6b2230b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My encryption has failed due to a pre-req failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/28a64cc6-768e-8d34-8ffb-bcf92b9aac2b\",\r\n \"name\": \"28a64cc6-768e-8d34-8ffb-bcf92b9aac2b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is due to unsupported image or operating system\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/d1d782ce-c148-0b02-1b7e-613982a81b6f\",\r\n \"name\": \"d1d782ce-c148-0b02-1b7e-613982a81b6f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My VM is not booting after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/332d4f59-f432-22dc-a707-8eea07dae815\",\r\n \"name\": \"332d4f59-f432-22dc-a707-8eea07dae815\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My VM is not reachable after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/579dad75-1207-15f2-437b-554be0677f6c\",\r\n \"name\": \"579dad75-1207-15f2-437b-554be0677f6c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My data drive or file system is not available after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/ba33538e-99e4-feb5-9324-56f08c691488\",\r\n \"name\": \"ba33538e-99e4-feb5-9324-56f08c691488\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / I need guidance with Azure Key Vault configuration, permissions, or keys\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/00ada183-92de-7636-1dc9-a381d2ec3482\",\r\n \"name\": \"00ada183-92de-7636-1dc9-a381d2ec3482\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / Current status of encryption is incorrect for my VM (Portal, CLI, PS)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/28e8162f-466c-fed0-33b5-92497e1ff43f\",\r\n \"name\": \"28e8162f-466c-fed0-33b5-92497e1ff43f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue with decrypting a virtual disk\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/b1684871-79ff-906c-593e-c46828c8be59\",\r\n \"name\": \"b1684871-79ff-906c-593e-c46828c8be59\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is with troubleshooting an encrypted VM (unlocking)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/56faf779-660e-7299-b9b0-f59377212e72\",\r\n \"name\": \"56faf779-660e-7299-b9b0-f59377212e72\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My encryption is not working as expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/a54d7e07-d333-9ec1-067b-7678c364aeb9\",\r\n \"name\": \"a54d7e07-d333-9ec1-067b-7678c364aeb9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/92305b37-6aa6-2f6a-ca9a-a3a705331241\",\r\n \"name\": \"92305b37-6aa6-2f6a-ca9a-a3a705331241\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I am having issues configuring or enabling backup\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/2e951b97-94cc-9b0b-e45f-5a88be9e89bc\",\r\n \"name\": \"2e951b97-94cc-9b0b-e45f-5a88be9e89bc\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Backup is failing for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/e7550efb-4cb4-efa2-af55-d16d0e0ebb37\",\r\n \"name\": \"e7550efb-4cb4-efa2-af55-d16d0e0ebb37\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Restore is failing for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/201fa48b-6c7c-c457-0d24-f345b58b3656\",\r\n \"name\": \"201fa48b-6c7c-c457-0d24-f345b58b3656\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Backup is taking longer than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/b573687c-0dfb-3f88-798a-f5d67c25730e\",\r\n \"name\": \"b573687c-0dfb-3f88-798a-f5d67c25730e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Restore is taking longer than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/6651a324-4084-f40c-9e98-8f260bd9ebd4\",\r\n \"name\": \"6651a324-4084-f40c-9e98-8f260bd9ebd4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I need guidance configuring backup for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/87d457bf-b2eb-4fc3-2642-af3125aa9944\",\r\n \"name\": \"87d457bf-b2eb-4fc3-2642-af3125aa9944\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I need guidance with restoring my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/e47cd566-4479-1320-562b-6adfc9f5107f\",\r\n \"name\": \"e47cd566-4479-1320-562b-6adfc9f5107f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / My issue is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/02db5ac6-64f6-5726-38b9-ee25df375c8c\",\r\n \"name\": \"02db5ac6-64f6-5726-38b9-ee25df375c8c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Guest OS - Kernel upgrade issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/217363f7-35d7-509c-cc75-2bdbcfd7727d\",\r\n \"name\": \"217363f7-35d7-509c-cc75-2bdbcfd7727d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Create a Linux failover cluster\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/4a471613-aba0-b69b-69f0-7e17d02113ac\",\r\n \"name\": \"4a471613-aba0-b69b-69f0-7e17d02113ac\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to delete a virtual machine\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/6822c17d-7e83-6d34-c015-b9d8345cbcd3\",\r\n \"name\": \"6822c17d-7e83-6d34-c015-b9d8345cbcd3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to delete a Resource Group\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/043edeb8-5980-8afd-be23-5dc892629076\",\r\n \"name\": \"043edeb8-5980-8afd-be23-5dc892629076\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Instance Metadata Service\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/f62adf2e-8bd5-c883-7ac4-88bb80f24cb6\",\r\n \"name\": \"f62adf2e-8bd5-c883-7ac4-88bb80f24cb6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage or use a Linux cluster in Azure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/3aa8f1cd-033b-c07e-430c-dbb88e33a43b\",\r\n \"name\": \"3aa8f1cd-033b-c07e-430c-dbb88e33a43b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Azure Metadata Service (Scheduled Events)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/d50047d3-6e34-440f-53f3-f6b9ea151c66\",\r\n \"name\": \"d50047d3-6e34-440f-53f3-f6b9ea151c66\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to share Shared Image Gallery, Image Definition or Image Version\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/68609d66-c773-bbbe-244c-5c5afd643527\",\r\n \"name\": \"68609d66-c773-bbbe-244c-5c5afd643527\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage an instance of SQL Server\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/01d83b71-bc02-e38d-facd-43ce9df6da28\",\r\n \"name\": \"01d83b71-bc02-e38d-facd-43ce9df6da28\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Guidance regarding retirement of Classic IAAS resources (ASM)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/9c6961c0-cf3e-9dbe-9bcb-9c1a102fce38\",\r\n \"name\": \"9c6961c0-cf3e-9dbe-9bcb-9c1a102fce38\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate IAAS resources from Classic (ASM) to Azure Resource Manager (ARM)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/6cf12b71-dffe-2150-1feb-16109ff143e5\",\r\n \"name\": \"6cf12b71-dffe-2150-1feb-16109ff143e5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Managed disks migration\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/7d1b4fe9-d2be-59eb-2d47-523b89bf0efc\",\r\n \"name\": \"7d1b4fe9-d2be-59eb-2d47-523b89bf0efc\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between storage accounts\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/24d6e747-a5fd-f15d-6a69-15e70f5f3604\",\r\n \"name\": \"24d6e747-a5fd-f15d-6a69-15e70f5f3604\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between regions\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/3dc0f91d-4d56-2bf2-65fd-f53912ed0d5a\",\r\n \"name\": \"3dc0f91d-4d56-2bf2-65fd-f53912ed0d5a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between subscriptions\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/42aef628-aeb5-41c8-fc1d-104ddb93f635\",\r\n \"name\": \"42aef628-aeb5-41c8-fc1d-104ddb93f635\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate resources using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/4b2cfaff-ddf5-da90-a64c-db25d5fa17fb\",\r\n \"name\": \"4b2cfaff-ddf5-da90-a64c-db25d5fa17fb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate virtual machines from on-premises to Azure using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/6784b50a-f959-bd77-67b2-7c72852f2677\",\r\n \"name\": \"6784b50a-f959-bd77-67b2-7c72852f2677\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate virtual machines from third-party provider to Azure using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/adec6fc5-555f-b291-8377-5963d2201ebb\",\r\n \"name\": \"adec6fc5-555f-b291-8377-5963d2201ebb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between resource groups\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/354db935-a238-4f24-19e4-402bcd1f7f7a\",\r\n \"name\": \"354db935-a238-4f24-19e4-402bcd1f7f7a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Planned Maintenance (Azure Platform)\"\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
@@ -445,13 +445,13 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c41c7cfe-f8aa-40e9-a2cc-763d2fca8d83"
+ "476d9a6e-8a04-4f60-92d7-27c0c88712c3"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.28516.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Support.MicrosoftSupportClient/1.0.0.0"
@@ -465,7 +465,10 @@
"no-cache"
],
"x-ms-ratelimit-remaining-tenant-reads": [
- "11892"
+ "11992"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -474,22 +477,19 @@
"Kestrel"
],
"x-ms-request-id": [
- "4d2b6f6c-9ce2-4a33-9034-5c8b68eab496"
+ "aa4593b6-50bd-45fa-a37b-96f07cf7ac98"
],
"x-ms-correlation-request-id": [
- "4d2b6f6c-9ce2-4a33-9034-5c8b68eab496"
+ "aa4593b6-50bd-45fa-a37b-96f07cf7ac98"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200315T071729Z:4d2b6f6c-9ce2-4a33-9034-5c8b68eab496"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "CENTRALUSEUAP:20200327T043635Z:aa4593b6-50bd-45fa-a37b-96f07cf7ac98"
],
"Date": [
- "Sun, 15 Mar 2020 07:17:29 GMT"
+ "Fri, 27 Mar 2020 04:36:35 GMT"
],
"Content-Length": [
- "33975"
+ "33597"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -498,7 +498,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/d5030ad5-c2ba-a59a-54e5-e5607ae4fde2\",\r\n \"name\": \"d5030ad5-c2ba-a59a-54e5-e5607ae4fde2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Compute-VM (cores-vCPUs) subscription limit increases\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/ac307d36-18c9-b8cc-d145-b102384dc4c0\",\r\n \"name\": \"ac307d36-18c9-b8cc-d145-b102384dc4c0\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / My configuration change impacted connectivity\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/1b441472-cecd-5cda-9f77-8974f00e62a8\",\r\n \"name\": \"1b441472-cecd-5cda-9f77-8974f00e62a8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Troubleshoot my network security group (NSG)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/de268ec1-793d-0126-aa5c-8c952c97376c\",\r\n \"name\": \"de268ec1-793d-0126-aa5c-8c952c97376c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Troubleshoot my VM firewall\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/1b05f460-d040-f1cf-b349-56ee2f36b9af\",\r\n \"name\": \"1b05f460-d040-f1cf-b349-56ee2f36b9af\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I have an issue with my public IP\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/e8ef2ae9-4587-a94f-d748-2adafde2bf90\",\r\n \"name\": \"e8ef2ae9-4587-a94f-d748-2adafde2bf90\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I need to reset my password\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/5707e3b0-64c3-a9d9-4627-40f431914ab6\",\r\n \"name\": \"5707e3b0-64c3-a9d9-4627-40f431914ab6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I need guidance with serial console access\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/110155da-a163-a9e6-b1e6-2b8eac7fe20a\",\r\n \"name\": \"110155da-a163-a9e6-b1e6-2b8eac7fe20a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Failure to connect using RDP or SSH port\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/49193c4c-fbe3-73d1-924b-ea6c19a47f71\",\r\n \"name\": \"49193c4c-fbe3-73d1-924b-ea6c19a47f71\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My VM will not start after a configuration change\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/38286807-07fd-298d-ed5a-bf439fc95469\",\r\n \"name\": \"38286807-07fd-298d-ed5a-bf439fc95469\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I received a disk related error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/83e1375a-da5a-a994-e3da-058919aa7915\",\r\n \"name\": \"83e1375a-da5a-a994-e3da-058919aa7915\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I received an allocation failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/dae99494-d210-0639-fbf6-f4f0d35d70f2\",\r\n \"name\": \"dae99494-d210-0639-fbf6-f4f0d35d70f2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My VM is unresponsive to start or stop operations\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/2ad6b724-3c03-a266-2f93-52fc548acfd0\",\r\n \"name\": \"2ad6b724-3c03-a266-2f93-52fc548acfd0\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I am unable to resize my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/ccb68d2c-7f32-fbf3-6695-634cf1555e9c\",\r\n \"name\": \"ccb68d2c-7f32-fbf3-6695-634cf1555e9c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My start or stop operation failed\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/0f64bdfe-d980-bc15-721c-f3f14aa6f676\",\r\n \"name\": \"0f64bdfe-d980-bc15-721c-f3f14aa6f676\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My VMs OS is not booting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/4954fc8f-7b95-05ec-0640-b8f4b2937ad4\",\r\n \"name\": \"4954fc8f-7b95-05ec-0640-b8f4b2937ad4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My VMs OS is on a reboot loop\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/262eda34-248e-7871-741a-2d3708b0a862\",\r\n \"name\": \"262eda34-248e-7871-741a-2d3708b0a862\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / I applied updates and my VM will not boot\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/74ab9252-4eca-3c44-2252-c249bd0680fc\",\r\n \"name\": \"74ab9252-4eca-3c44-2252-c249bd0680fc\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / I received a failure when starting my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/618a1ecc-4862-9199-15d7-60a75b877247\",\r\n \"name\": \"618a1ecc-4862-9199-15d7-60a75b877247\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My problem is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/40026a20-2731-f229-11ed-b21d0a1b24e4\",\r\n \"name\": \"40026a20-2731-f229-11ed-b21d0a1b24e4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I need guidance preparing an image\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/4e6670a8-c278-f46b-1e33-94baf60799d7\",\r\n \"name\": \"4e6670a8-c278-f46b-1e33-94baf60799d7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I need guidance deploying with managed disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/15e2a142-b549-3a4d-1c7f-fa06b2c30288\",\r\n \"name\": \"15e2a142-b549-3a4d-1c7f-fa06b2c30288\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot custom image deployment failures\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/373a7125-6659-4b1c-112f-04323d0f6b56\",\r\n \"name\": \"373a7125-6659-4b1c-112f-04323d0f6b56\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot marketplace image deployment failures\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/3417413e-b21d-81e0-fe59-5ba2dcadf1fc\",\r\n \"name\": \"3417413e-b21d-81e0-fe59-5ba2dcadf1fc\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / My desired region or VM size is unavailable\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/d721f296-ee1b-6e50-6a52-62e4efac397d\",\r\n \"name\": \"d721f296-ee1b-6e50-6a52-62e4efac397d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I received an allocation failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/fd5f51c0-fbf5-45b7-c4df-38963e01227e\",\r\n \"name\": \"fd5f51c0-fbf5-45b7-c4df-38963e01227e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I am unable to deploy a captured or generalized image\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/817d8766-1585-a77c-9e03-79bc1fdafac5\",\r\n \"name\": \"817d8766-1585-a77c-9e03-79bc1fdafac5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot my ARM template error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/86087426-3ba7-5ab1-3b4c-b01daa55d565\",\r\n \"name\": \"86087426-3ba7-5ab1-3b4c-b01daa55d565\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I received a provisioning or deployment timeout error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/c3f56921-13fa-86b2-9b13-f74d841f215e\",\r\n \"name\": \"c3f56921-13fa-86b2-9b13-f74d841f215e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / My guest OS is causing restarts\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/26796b2b-edd6-b712-bc01-089f767a7d04\",\r\n \"name\": \"26796b2b-edd6-b712-bc01-089f767a7d04\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Request Root Cause Statement for recent availability impact\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/e71ae4c9-30c0-d993-a76c-934bab1f649b\",\r\n \"name\": \"e71ae4c9-30c0-d993-a76c-934bab1f649b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Help diagnose my VM restart issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/6d316553-632c-0fae-43d9-39b79e79fd8c\",\r\n \"name\": \"6d316553-632c-0fae-43d9-39b79e79fd8c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Disk throughput is lower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/d654798a-82f2-7476-b630-e5f7bf7fd40b\",\r\n \"name\": \"d654798a-82f2-7476-b630-e5f7bf7fd40b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / CPU usage is higher than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/f53629c8-a89b-8562-aace-f88feda170de\",\r\n \"name\": \"f53629c8-a89b-8562-aace-f88feda170de\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Memory usage is higher than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/8ab1180f-8bcb-ca42-a187-78c6491906a9\",\r\n \"name\": \"8ab1180f-8bcb-ca42-a187-78c6491906a9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / GPU processing is slower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/d39202e3-821c-27e4-6118-99b92d2940ba\",\r\n \"name\": \"d39202e3-821c-27e4-6118-99b92d2940ba\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Guidance for better VM sizing and throughput\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/db65e686-be0a-c951-b3e6-d5439c070fbc\",\r\n \"name\": \"db65e686-be0a-c951-b3e6-d5439c070fbc\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Unable to resize my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/338cbcc3-61b2-e337-dff8-c9c548dc80a8\",\r\n \"name\": \"338cbcc3-61b2-e337-dff8-c9c548dc80a8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Resizing a virtual disk\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/1156a3cf-fb92-3be8-8186-e6b597ce264c\",\r\n \"name\": \"1156a3cf-fb92-3be8-8186-e6b597ce264c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Attaching or detaching virtual disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/e8df87f3-14df-0f21-01a4-1f1e8838e965\",\r\n \"name\": \"e8df87f3-14df-0f21-01a4-1f1e8838e965\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Creating or deleting virtual disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/fecb015e-fce8-8325-9523-f56724b12199\",\r\n \"name\": \"fecb015e-fce8-8325-9523-f56724b12199\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Disk throughput is lower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/2db8a63f-5c87-3a9c-05d1-4bd38de434b9\",\r\n \"name\": \"2db8a63f-5c87-3a9c-05d1-4bd38de434b9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Restore a VM from snapshot\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/2b6f1732-802e-e708-2acc-e742ce037551\",\r\n \"name\": \"2b6f1732-802e-e708-2acc-e742ce037551\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Issues with Direct Upload for Managed Disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/29def612-a141-28cc-322f-18c75d9cbd0a\",\r\n \"name\": \"29def612-a141-28cc-322f-18c75d9cbd0a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / My problem is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/6011efba-4f6d-bd89-18f7-3e08f0ddd0f1\",\r\n \"name\": \"6011efba-4f6d-bd89-18f7-3e08f0ddd0f1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Diagnostic (boot diagnostics) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/03102534-9449-c672-84e9-208f85b550f5\",\r\n \"name\": \"03102534-9449-c672-84e9-208f85b550f5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Custom Script (CSE) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/2e39fe73-7959-a231-0d2b-4cb83ca67014\",\r\n \"name\": \"2e39fe73-7959-a231-0d2b-4cb83ca67014\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Log Analytics (OMS) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/550cbba4-3c0a-fce9-2500-f22d56ad75ad\",\r\n \"name\": \"550cbba4-3c0a-fce9-2500-f22d56ad75ad\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Desired State Configuration (DSC) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/e8ea8e26-ad33-d009-f57f-c5890c7462bf\",\r\n \"name\": \"e8ea8e26-ad33-d009-f57f-c5890c7462bf\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Microsoft Antimalware (security) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/1ab6bc16-09dc-96c3-abf2-3d8a386141c9\",\r\n \"name\": \"1ab6bc16-09dc-96c3-abf2-3d8a386141c9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Disk Encryption (ADE) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/9577ce3d-476e-2e38-74a2-ba0fcae1ca2c\",\r\n \"name\": \"9577ce3d-476e-2e38-74a2-ba0fcae1ca2c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Snapshot (Azure Backup) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/901d82ca-7978-461a-78c0-1a7fdd7c4131\",\r\n \"name\": \"901d82ca-7978-461a-78c0-1a7fdd7c4131\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Update Management extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/250bb464-4dc2-e31a-dacb-162b281aa00d\",\r\n \"name\": \"250bb464-4dc2-e31a-dacb-162b281aa00d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / GPU Driver extension issue (NVIDIA)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/e13229fd-6711-02d2-9da1-6b105fcec85a\",\r\n \"name\": \"e13229fd-6711-02d2-9da1-6b105fcec85a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Network Watcher agent extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/94a44633-6aed-7cd4-619f-4b7fa83da103\",\r\n \"name\": \"94a44633-6aed-7cd4-619f-4b7fa83da103\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Monitoring agent (MMA) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/d374c313-bbbc-a9c6-950e-bb6fb14148df\",\r\n \"name\": \"d374c313-bbbc-a9c6-950e-bb6fb14148df\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Access (enablevmaccess) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/0aab3168-ff94-fa06-b1e3-ede7205ec4bd\",\r\n \"name\": \"0aab3168-ff94-fa06-b1e3-ede7205ec4bd\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Guest Agent issue (crash, hung, not upgrading, or not connecting)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/d18abef1-6172-746b-f874-673528811612\",\r\n \"name\": \"d18abef1-6172-746b-f874-673528811612\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Custom Script (CSE) extension using Managed Identity issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/6aa6126b-1361-7924-7d0c-6241de164f6b\",\r\n \"name\": \"6aa6126b-1361-7924-7d0c-6241de164f6b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Active Directory Login extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/efb16c6d-5659-ffab-c0f7-f6cc6fa41730\",\r\n \"name\": \"efb16c6d-5659-ffab-c0f7-f6cc6fa41730\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / GPU Driver extension issue (AMD)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/d5373907-0aa4-83a7-c7fc-6c5e654d7ad6\",\r\n \"name\": \"d5373907-0aa4-83a7-c7fc-6c5e654d7ad6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My encryption has failed due to a pre-req failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/0071a11f-eb88-bd15-6675-9913559675a7\",\r\n \"name\": \"0071a11f-eb88-bd15-6675-9913559675a7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is due to unsupported image or operating system\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/7e27656f-7cc1-bd1e-7751-6ac910e18729\",\r\n \"name\": \"7e27656f-7cc1-bd1e-7751-6ac910e18729\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My VM is not booting after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/1b758073-168b-a012-65eb-e353be5c200a\",\r\n \"name\": \"1b758073-168b-a012-65eb-e353be5c200a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My VM is not reachable after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/257e2d5f-8e3a-7be1-677e-91e6d7b79c23\",\r\n \"name\": \"257e2d5f-8e3a-7be1-677e-91e6d7b79c23\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My data drive or file system is not available after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/491c7631-681d-e6a0-0d4a-78b436fb3231\",\r\n \"name\": \"491c7631-681d-e6a0-0d4a-78b436fb3231\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / I need guidance with Azure Key Vault configuration, permissions, or keys\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/b42c9bbf-3973-e5b9-c941-e0e7224ce34d\",\r\n \"name\": \"b42c9bbf-3973-e5b9-c941-e0e7224ce34d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / Current status of encryption is incorrect for my VM (Portal, CLI, PS)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/2ba1c5be-1a06-0503-9433-42a4b9e56da2\",\r\n \"name\": \"2ba1c5be-1a06-0503-9433-42a4b9e56da2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue with decrypting a virtual disk\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/daa65a91-70b2-0dee-539a-48c0adbb24f2\",\r\n \"name\": \"daa65a91-70b2-0dee-539a-48c0adbb24f2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is with troubleshooting an encrypted VM (unlocking)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/f313fbc1-f751-226e-d42c-b0893b740cde\",\r\n \"name\": \"f313fbc1-f751-226e-d42c-b0893b740cde\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My encryption is not working as expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/bf715ae2-8a3b-1b81-8029-bb8ea7d61563\",\r\n \"name\": \"bf715ae2-8a3b-1b81-8029-bb8ea7d61563\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/7c09ddf9-d5b7-2ab5-123a-3de9419c8cb0\",\r\n \"name\": \"7c09ddf9-d5b7-2ab5-123a-3de9419c8cb0\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I am having issues configuring or enabling backup\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/220d0e31-054c-1ac3-06b5-1fea24872507\",\r\n \"name\": \"220d0e31-054c-1ac3-06b5-1fea24872507\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Backup is failing for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/9fd4fe85-ab1a-ef21-1a42-151c8fcaef2d\",\r\n \"name\": \"9fd4fe85-ab1a-ef21-1a42-151c8fcaef2d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Restore is failing for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/a55789d7-74eb-4b4a-177f-ac47573d8d45\",\r\n \"name\": \"a55789d7-74eb-4b4a-177f-ac47573d8d45\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Backup is taking longer than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/e865b156-078d-473a-ee18-f58e94df74ea\",\r\n \"name\": \"e865b156-078d-473a-ee18-f58e94df74ea\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Restore is taking longer than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/03d53348-afd0-fcbc-0336-9531cba2d0a6\",\r\n \"name\": \"03d53348-afd0-fcbc-0336-9531cba2d0a6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I need guidance configuring backup for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/013711de-2781-6814-f9e2-73b238c54aba\",\r\n \"name\": \"013711de-2781-6814-f9e2-73b238c54aba\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I need guidance with restoring my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/8ced0acd-6c14-6a23-a67b-e14a08ba9637\",\r\n \"name\": \"8ced0acd-6c14-6a23-a67b-e14a08ba9637\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / My issue is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/65dd477f-1967-27c5-6861-9551b37f7fd4\",\r\n \"name\": \"65dd477f-1967-27c5-6861-9551b37f7fd4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Guest OS - Kernel upgrade issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/fe451411-615c-3563-84e7-9c694358f3ab\",\r\n \"name\": \"fe451411-615c-3563-84e7-9c694358f3ab\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Create a Linux failover cluster\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/221c3415-800a-79ac-376f-12facad91e8d\",\r\n \"name\": \"221c3415-800a-79ac-376f-12facad91e8d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to delete a virtual machine\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/7459bcaa-1c0c-7b61-e5f0-47e3d7e20898\",\r\n \"name\": \"7459bcaa-1c0c-7b61-e5f0-47e3d7e20898\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to delete a Resource Group\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/cbf5bd31-8925-92e2-a4ba-54c0f9f7cac2\",\r\n \"name\": \"cbf5bd31-8925-92e2-a4ba-54c0f9f7cac2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Instance Metadata Service\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/936bd15e-2072-f65e-0e61-ea02a53cbe0e\",\r\n \"name\": \"936bd15e-2072-f65e-0e61-ea02a53cbe0e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage or use a Linux cluster in Azure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/ca318b8b-c50b-9330-605c-f4fc781709d9\",\r\n \"name\": \"ca318b8b-c50b-9330-605c-f4fc781709d9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Azure Metadata Service (Scheduled Events)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/9a0c2025-c287-9819-3427-27634fc4a6c8\",\r\n \"name\": \"9a0c2025-c287-9819-3427-27634fc4a6c8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to share Shared Image Gallery, Image Definition or Image Version\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/7fd2cd11-a693-66b0-6ed0-12ad87da7a8c\",\r\n \"name\": \"7fd2cd11-a693-66b0-6ed0-12ad87da7a8c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage an instance of SQL Server\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/9b8be6a3-1dca-0ca9-93bb-d259139a5cd5\",\r\n \"name\": \"9b8be6a3-1dca-0ca9-93bb-d259139a5cd5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Guidance regarding retirement of Classic IAAS resources (ASM)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/801c6bab-2fcf-8250-ca7e-9db0a64b3346\",\r\n \"name\": \"801c6bab-2fcf-8250-ca7e-9db0a64b3346\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate IAAS resources from Classic (ASM) to Azure Resource Manager (ARM)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/da6a5116-47b8-200d-d395-78e04e81eeaa\",\r\n \"name\": \"da6a5116-47b8-200d-d395-78e04e81eeaa\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Managed disks migration\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/a4d89916-a6f3-6f0b-a536-d875accb5cfb\",\r\n \"name\": \"a4d89916-a6f3-6f0b-a536-d875accb5cfb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between storage accounts\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/e4cc86f1-592e-255d-f92d-bc3525b3b990\",\r\n \"name\": \"e4cc86f1-592e-255d-f92d-bc3525b3b990\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between regions\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/e0c25fab-dcc0-3adb-a8d1-be60ac38e9de\",\r\n \"name\": \"e0c25fab-dcc0-3adb-a8d1-be60ac38e9de\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between subscriptions\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/be8791f0-5deb-c1bf-a7c4-5f404506a208\",\r\n \"name\": \"be8791f0-5deb-c1bf-a7c4-5f404506a208\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate resources using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/4ced9202-14bd-052a-107e-0d6d0a88cda7\",\r\n \"name\": \"4ced9202-14bd-052a-107e-0d6d0a88cda7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate virtual machines from on-premises to Azure using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/fdf80c88-7fc8-9376-0ebe-1ac4bf948bf3\",\r\n \"name\": \"fdf80c88-7fc8-9376-0ebe-1ac4bf948bf3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate virtual machines from third-party provider to Azure using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/94db9610-0951-f0a0-9897-d93b675dc2b5\",\r\n \"name\": \"94db9610-0951-f0a0-9897-d93b675dc2b5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between resource groups\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/8dfbb6d2-50bf-c54b-726f-a52c6c90351c\",\r\n \"name\": \"8dfbb6d2-50bf-c54b-726f-a52c6c90351c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Planned Maintenance (Azure Platform)\"\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/d5030ad5-c2ba-a59a-54e5-e5607ae4fde2\",\r\n \"name\": \"d5030ad5-c2ba-a59a-54e5-e5607ae4fde2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Compute-VM (cores-vCPUs) subscription limit increases\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/ac307d36-18c9-b8cc-d145-b102384dc4c0\",\r\n \"name\": \"ac307d36-18c9-b8cc-d145-b102384dc4c0\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / My configuration change impacted connectivity\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/1b441472-cecd-5cda-9f77-8974f00e62a8\",\r\n \"name\": \"1b441472-cecd-5cda-9f77-8974f00e62a8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Troubleshoot my network security group (NSG)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/de268ec1-793d-0126-aa5c-8c952c97376c\",\r\n \"name\": \"de268ec1-793d-0126-aa5c-8c952c97376c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Troubleshoot my VM firewall\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/1b05f460-d040-f1cf-b349-56ee2f36b9af\",\r\n \"name\": \"1b05f460-d040-f1cf-b349-56ee2f36b9af\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I have an issue with my public IP\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/e8ef2ae9-4587-a94f-d748-2adafde2bf90\",\r\n \"name\": \"e8ef2ae9-4587-a94f-d748-2adafde2bf90\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I need to reset my password\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/5707e3b0-64c3-a9d9-4627-40f431914ab6\",\r\n \"name\": \"5707e3b0-64c3-a9d9-4627-40f431914ab6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I need guidance with serial console access\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/110155da-a163-a9e6-b1e6-2b8eac7fe20a\",\r\n \"name\": \"110155da-a163-a9e6-b1e6-2b8eac7fe20a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Failure to connect using RDP or SSH port\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/49193c4c-fbe3-73d1-924b-ea6c19a47f71\",\r\n \"name\": \"49193c4c-fbe3-73d1-924b-ea6c19a47f71\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My VM will not start after a configuration change\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/38286807-07fd-298d-ed5a-bf439fc95469\",\r\n \"name\": \"38286807-07fd-298d-ed5a-bf439fc95469\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I received a disk related error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/83e1375a-da5a-a994-e3da-058919aa7915\",\r\n \"name\": \"83e1375a-da5a-a994-e3da-058919aa7915\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I received an allocation failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/dae99494-d210-0639-fbf6-f4f0d35d70f2\",\r\n \"name\": \"dae99494-d210-0639-fbf6-f4f0d35d70f2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My VM is unresponsive to start or stop operations\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/2ad6b724-3c03-a266-2f93-52fc548acfd0\",\r\n \"name\": \"2ad6b724-3c03-a266-2f93-52fc548acfd0\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I am unable to resize my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/ccb68d2c-7f32-fbf3-6695-634cf1555e9c\",\r\n \"name\": \"ccb68d2c-7f32-fbf3-6695-634cf1555e9c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My start or stop operation failed\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/0f64bdfe-d980-bc15-721c-f3f14aa6f676\",\r\n \"name\": \"0f64bdfe-d980-bc15-721c-f3f14aa6f676\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My VMs OS is not booting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/4954fc8f-7b95-05ec-0640-b8f4b2937ad4\",\r\n \"name\": \"4954fc8f-7b95-05ec-0640-b8f4b2937ad4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My VMs OS is on a reboot loop\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/262eda34-248e-7871-741a-2d3708b0a862\",\r\n \"name\": \"262eda34-248e-7871-741a-2d3708b0a862\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / I applied updates and my VM will not boot\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/74ab9252-4eca-3c44-2252-c249bd0680fc\",\r\n \"name\": \"74ab9252-4eca-3c44-2252-c249bd0680fc\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / I received a failure when starting my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/618a1ecc-4862-9199-15d7-60a75b877247\",\r\n \"name\": \"618a1ecc-4862-9199-15d7-60a75b877247\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My problem is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/40026a20-2731-f229-11ed-b21d0a1b24e4\",\r\n \"name\": \"40026a20-2731-f229-11ed-b21d0a1b24e4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I need guidance preparing an image\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/4e6670a8-c278-f46b-1e33-94baf60799d7\",\r\n \"name\": \"4e6670a8-c278-f46b-1e33-94baf60799d7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I need guidance deploying with managed disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/15e2a142-b549-3a4d-1c7f-fa06b2c30288\",\r\n \"name\": \"15e2a142-b549-3a4d-1c7f-fa06b2c30288\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot custom image deployment failures\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/373a7125-6659-4b1c-112f-04323d0f6b56\",\r\n \"name\": \"373a7125-6659-4b1c-112f-04323d0f6b56\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot marketplace image deployment failures\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/3417413e-b21d-81e0-fe59-5ba2dcadf1fc\",\r\n \"name\": \"3417413e-b21d-81e0-fe59-5ba2dcadf1fc\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / My desired region or VM size is unavailable\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/d721f296-ee1b-6e50-6a52-62e4efac397d\",\r\n \"name\": \"d721f296-ee1b-6e50-6a52-62e4efac397d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I received an allocation failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/fd5f51c0-fbf5-45b7-c4df-38963e01227e\",\r\n \"name\": \"fd5f51c0-fbf5-45b7-c4df-38963e01227e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I am unable to deploy a captured or generalized image\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/817d8766-1585-a77c-9e03-79bc1fdafac5\",\r\n \"name\": \"817d8766-1585-a77c-9e03-79bc1fdafac5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot my ARM template error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/86087426-3ba7-5ab1-3b4c-b01daa55d565\",\r\n \"name\": \"86087426-3ba7-5ab1-3b4c-b01daa55d565\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I received a provisioning or deployment timeout error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/c3f56921-13fa-86b2-9b13-f74d841f215e\",\r\n \"name\": \"c3f56921-13fa-86b2-9b13-f74d841f215e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / My guest OS is causing restarts\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/26796b2b-edd6-b712-bc01-089f767a7d04\",\r\n \"name\": \"26796b2b-edd6-b712-bc01-089f767a7d04\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Request Root Cause Statement for recent availability impact\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/e71ae4c9-30c0-d993-a76c-934bab1f649b\",\r\n \"name\": \"e71ae4c9-30c0-d993-a76c-934bab1f649b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Help diagnose my VM restart issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/6d316553-632c-0fae-43d9-39b79e79fd8c\",\r\n \"name\": \"6d316553-632c-0fae-43d9-39b79e79fd8c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Disk throughput is lower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/d654798a-82f2-7476-b630-e5f7bf7fd40b\",\r\n \"name\": \"d654798a-82f2-7476-b630-e5f7bf7fd40b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / CPU usage is higher than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/f53629c8-a89b-8562-aace-f88feda170de\",\r\n \"name\": \"f53629c8-a89b-8562-aace-f88feda170de\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Memory usage is higher than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/8ab1180f-8bcb-ca42-a187-78c6491906a9\",\r\n \"name\": \"8ab1180f-8bcb-ca42-a187-78c6491906a9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / GPU processing is slower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/d39202e3-821c-27e4-6118-99b92d2940ba\",\r\n \"name\": \"d39202e3-821c-27e4-6118-99b92d2940ba\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Guidance for better VM sizing and throughput\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/db65e686-be0a-c951-b3e6-d5439c070fbc\",\r\n \"name\": \"db65e686-be0a-c951-b3e6-d5439c070fbc\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Unable to resize my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/338cbcc3-61b2-e337-dff8-c9c548dc80a8\",\r\n \"name\": \"338cbcc3-61b2-e337-dff8-c9c548dc80a8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Resizing a virtual disk\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/1156a3cf-fb92-3be8-8186-e6b597ce264c\",\r\n \"name\": \"1156a3cf-fb92-3be8-8186-e6b597ce264c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Attaching or detaching virtual disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/e8df87f3-14df-0f21-01a4-1f1e8838e965\",\r\n \"name\": \"e8df87f3-14df-0f21-01a4-1f1e8838e965\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Creating or deleting virtual disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/fecb015e-fce8-8325-9523-f56724b12199\",\r\n \"name\": \"fecb015e-fce8-8325-9523-f56724b12199\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Disk throughput is lower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/2db8a63f-5c87-3a9c-05d1-4bd38de434b9\",\r\n \"name\": \"2db8a63f-5c87-3a9c-05d1-4bd38de434b9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Restore a VM from snapshot\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/2b6f1732-802e-e708-2acc-e742ce037551\",\r\n \"name\": \"2b6f1732-802e-e708-2acc-e742ce037551\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Issues with Direct Upload for Managed Disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/29def612-a141-28cc-322f-18c75d9cbd0a\",\r\n \"name\": \"29def612-a141-28cc-322f-18c75d9cbd0a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / My problem is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/6011efba-4f6d-bd89-18f7-3e08f0ddd0f1\",\r\n \"name\": \"6011efba-4f6d-bd89-18f7-3e08f0ddd0f1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Diagnostic (boot diagnostics) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/03102534-9449-c672-84e9-208f85b550f5\",\r\n \"name\": \"03102534-9449-c672-84e9-208f85b550f5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Custom Script (CSE) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/2e39fe73-7959-a231-0d2b-4cb83ca67014\",\r\n \"name\": \"2e39fe73-7959-a231-0d2b-4cb83ca67014\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Log Analytics (OMS) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/550cbba4-3c0a-fce9-2500-f22d56ad75ad\",\r\n \"name\": \"550cbba4-3c0a-fce9-2500-f22d56ad75ad\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Desired State Configuration (DSC) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/e8ea8e26-ad33-d009-f57f-c5890c7462bf\",\r\n \"name\": \"e8ea8e26-ad33-d009-f57f-c5890c7462bf\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Microsoft Antimalware (security) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/1ab6bc16-09dc-96c3-abf2-3d8a386141c9\",\r\n \"name\": \"1ab6bc16-09dc-96c3-abf2-3d8a386141c9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Disk Encryption (ADE) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/9577ce3d-476e-2e38-74a2-ba0fcae1ca2c\",\r\n \"name\": \"9577ce3d-476e-2e38-74a2-ba0fcae1ca2c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Snapshot (Azure Backup) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/901d82ca-7978-461a-78c0-1a7fdd7c4131\",\r\n \"name\": \"901d82ca-7978-461a-78c0-1a7fdd7c4131\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Update Management extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/250bb464-4dc2-e31a-dacb-162b281aa00d\",\r\n \"name\": \"250bb464-4dc2-e31a-dacb-162b281aa00d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / GPU Driver extension issue (NVIDIA)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/e13229fd-6711-02d2-9da1-6b105fcec85a\",\r\n \"name\": \"e13229fd-6711-02d2-9da1-6b105fcec85a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Network Watcher agent extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/94a44633-6aed-7cd4-619f-4b7fa83da103\",\r\n \"name\": \"94a44633-6aed-7cd4-619f-4b7fa83da103\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Monitoring agent (MMA) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/d374c313-bbbc-a9c6-950e-bb6fb14148df\",\r\n \"name\": \"d374c313-bbbc-a9c6-950e-bb6fb14148df\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Access (enablevmaccess) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/0aab3168-ff94-fa06-b1e3-ede7205ec4bd\",\r\n \"name\": \"0aab3168-ff94-fa06-b1e3-ede7205ec4bd\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Guest Agent issue (crash, hung, not upgrading, or not connecting)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/6aa6126b-1361-7924-7d0c-6241de164f6b\",\r\n \"name\": \"6aa6126b-1361-7924-7d0c-6241de164f6b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Active Directory Login extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/efb16c6d-5659-ffab-c0f7-f6cc6fa41730\",\r\n \"name\": \"efb16c6d-5659-ffab-c0f7-f6cc6fa41730\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / GPU Driver extension issue (AMD)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/d5373907-0aa4-83a7-c7fc-6c5e654d7ad6\",\r\n \"name\": \"d5373907-0aa4-83a7-c7fc-6c5e654d7ad6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My encryption has failed due to a pre-req failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/0071a11f-eb88-bd15-6675-9913559675a7\",\r\n \"name\": \"0071a11f-eb88-bd15-6675-9913559675a7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is due to unsupported image or operating system\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/7e27656f-7cc1-bd1e-7751-6ac910e18729\",\r\n \"name\": \"7e27656f-7cc1-bd1e-7751-6ac910e18729\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My VM is not booting after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/1b758073-168b-a012-65eb-e353be5c200a\",\r\n \"name\": \"1b758073-168b-a012-65eb-e353be5c200a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My VM is not reachable after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/257e2d5f-8e3a-7be1-677e-91e6d7b79c23\",\r\n \"name\": \"257e2d5f-8e3a-7be1-677e-91e6d7b79c23\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My data drive or file system is not available after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/491c7631-681d-e6a0-0d4a-78b436fb3231\",\r\n \"name\": \"491c7631-681d-e6a0-0d4a-78b436fb3231\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / I need guidance with Azure Key Vault configuration, permissions, or keys\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/b42c9bbf-3973-e5b9-c941-e0e7224ce34d\",\r\n \"name\": \"b42c9bbf-3973-e5b9-c941-e0e7224ce34d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / Current status of encryption is incorrect for my VM (Portal, CLI, PS)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/2ba1c5be-1a06-0503-9433-42a4b9e56da2\",\r\n \"name\": \"2ba1c5be-1a06-0503-9433-42a4b9e56da2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue with decrypting a virtual disk\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/daa65a91-70b2-0dee-539a-48c0adbb24f2\",\r\n \"name\": \"daa65a91-70b2-0dee-539a-48c0adbb24f2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is with troubleshooting an encrypted VM (unlocking)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/f313fbc1-f751-226e-d42c-b0893b740cde\",\r\n \"name\": \"f313fbc1-f751-226e-d42c-b0893b740cde\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My encryption is not working as expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/bf715ae2-8a3b-1b81-8029-bb8ea7d61563\",\r\n \"name\": \"bf715ae2-8a3b-1b81-8029-bb8ea7d61563\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/7c09ddf9-d5b7-2ab5-123a-3de9419c8cb0\",\r\n \"name\": \"7c09ddf9-d5b7-2ab5-123a-3de9419c8cb0\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I am having issues configuring or enabling backup\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/220d0e31-054c-1ac3-06b5-1fea24872507\",\r\n \"name\": \"220d0e31-054c-1ac3-06b5-1fea24872507\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Backup is failing for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/9fd4fe85-ab1a-ef21-1a42-151c8fcaef2d\",\r\n \"name\": \"9fd4fe85-ab1a-ef21-1a42-151c8fcaef2d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Restore is failing for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/a55789d7-74eb-4b4a-177f-ac47573d8d45\",\r\n \"name\": \"a55789d7-74eb-4b4a-177f-ac47573d8d45\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Backup is taking longer than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/e865b156-078d-473a-ee18-f58e94df74ea\",\r\n \"name\": \"e865b156-078d-473a-ee18-f58e94df74ea\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Restore is taking longer than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/03d53348-afd0-fcbc-0336-9531cba2d0a6\",\r\n \"name\": \"03d53348-afd0-fcbc-0336-9531cba2d0a6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I need guidance configuring backup for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/013711de-2781-6814-f9e2-73b238c54aba\",\r\n \"name\": \"013711de-2781-6814-f9e2-73b238c54aba\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I need guidance with restoring my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/8ced0acd-6c14-6a23-a67b-e14a08ba9637\",\r\n \"name\": \"8ced0acd-6c14-6a23-a67b-e14a08ba9637\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / My issue is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/65dd477f-1967-27c5-6861-9551b37f7fd4\",\r\n \"name\": \"65dd477f-1967-27c5-6861-9551b37f7fd4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Guest OS - Kernel upgrade issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/fe451411-615c-3563-84e7-9c694358f3ab\",\r\n \"name\": \"fe451411-615c-3563-84e7-9c694358f3ab\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Create a Linux failover cluster\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/221c3415-800a-79ac-376f-12facad91e8d\",\r\n \"name\": \"221c3415-800a-79ac-376f-12facad91e8d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to delete a virtual machine\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/7459bcaa-1c0c-7b61-e5f0-47e3d7e20898\",\r\n \"name\": \"7459bcaa-1c0c-7b61-e5f0-47e3d7e20898\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to delete a Resource Group\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/cbf5bd31-8925-92e2-a4ba-54c0f9f7cac2\",\r\n \"name\": \"cbf5bd31-8925-92e2-a4ba-54c0f9f7cac2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Instance Metadata Service\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/936bd15e-2072-f65e-0e61-ea02a53cbe0e\",\r\n \"name\": \"936bd15e-2072-f65e-0e61-ea02a53cbe0e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage or use a Linux cluster in Azure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/ca318b8b-c50b-9330-605c-f4fc781709d9\",\r\n \"name\": \"ca318b8b-c50b-9330-605c-f4fc781709d9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Azure Metadata Service (Scheduled Events)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/9a0c2025-c287-9819-3427-27634fc4a6c8\",\r\n \"name\": \"9a0c2025-c287-9819-3427-27634fc4a6c8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to share Shared Image Gallery, Image Definition or Image Version\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/7fd2cd11-a693-66b0-6ed0-12ad87da7a8c\",\r\n \"name\": \"7fd2cd11-a693-66b0-6ed0-12ad87da7a8c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage an instance of SQL Server\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/9b8be6a3-1dca-0ca9-93bb-d259139a5cd5\",\r\n \"name\": \"9b8be6a3-1dca-0ca9-93bb-d259139a5cd5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Guidance regarding retirement of Classic IAAS resources (ASM)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/801c6bab-2fcf-8250-ca7e-9db0a64b3346\",\r\n \"name\": \"801c6bab-2fcf-8250-ca7e-9db0a64b3346\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate IAAS resources from Classic (ASM) to Azure Resource Manager (ARM)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/da6a5116-47b8-200d-d395-78e04e81eeaa\",\r\n \"name\": \"da6a5116-47b8-200d-d395-78e04e81eeaa\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Managed disks migration\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/a4d89916-a6f3-6f0b-a536-d875accb5cfb\",\r\n \"name\": \"a4d89916-a6f3-6f0b-a536-d875accb5cfb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between storage accounts\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/e4cc86f1-592e-255d-f92d-bc3525b3b990\",\r\n \"name\": \"e4cc86f1-592e-255d-f92d-bc3525b3b990\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between regions\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/e0c25fab-dcc0-3adb-a8d1-be60ac38e9de\",\r\n \"name\": \"e0c25fab-dcc0-3adb-a8d1-be60ac38e9de\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between subscriptions\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/be8791f0-5deb-c1bf-a7c4-5f404506a208\",\r\n \"name\": \"be8791f0-5deb-c1bf-a7c4-5f404506a208\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate resources using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/4ced9202-14bd-052a-107e-0d6d0a88cda7\",\r\n \"name\": \"4ced9202-14bd-052a-107e-0d6d0a88cda7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate virtual machines from on-premises to Azure using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/fdf80c88-7fc8-9376-0ebe-1ac4bf948bf3\",\r\n \"name\": \"fdf80c88-7fc8-9376-0ebe-1ac4bf948bf3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate virtual machines from third-party provider to Azure using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/94db9610-0951-f0a0-9897-d93b675dc2b5\",\r\n \"name\": \"94db9610-0951-f0a0-9897-d93b675dc2b5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between resource groups\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/8dfbb6d2-50bf-c54b-726f-a52c6c90351c\",\r\n \"name\": \"8dfbb6d2-50bf-c54b-726f-a52c6c90351c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Planned Maintenance (Azure Platform)\"\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
@@ -508,13 +508,13 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4fee5159-b9a2-4abb-b0e4-67a18711c1f6"
+ "65fa6a14-377a-467f-9a71-7d127eb23d58"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.28516.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Support.MicrosoftSupportClient/1.0.0.0"
@@ -528,7 +528,10 @@
"no-cache"
],
"x-ms-ratelimit-remaining-tenant-reads": [
- "11891"
+ "11991"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -537,22 +540,19 @@
"Kestrel"
],
"x-ms-request-id": [
- "5ce14e46-b390-4fdd-862d-6a1a8fa08842"
+ "fc3292c3-9bcb-4f32-bc10-8022a8f91326"
],
"x-ms-correlation-request-id": [
- "5ce14e46-b390-4fdd-862d-6a1a8fa08842"
+ "fc3292c3-9bcb-4f32-bc10-8022a8f91326"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200315T071729Z:5ce14e46-b390-4fdd-862d-6a1a8fa08842"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "CENTRALUSEUAP:20200327T043636Z:fc3292c3-9bcb-4f32-bc10-8022a8f91326"
],
"Date": [
- "Sun, 15 Mar 2020 07:17:29 GMT"
+ "Fri, 27 Mar 2020 04:36:35 GMT"
],
"Content-Length": [
- "41858"
+ "41480"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -561,7 +561,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/4d78b174-3203-a3ac-9e08-41fb35de6354\",\r\n \"name\": \"4d78b174-3203-a3ac-9e08-41fb35de6354\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Compute-VM (cores-vCPUs) subscription limit increases\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/923d6b56-d573-f943-b65d-d69ba79ea21a\",\r\n \"name\": \"923d6b56-d573-f943-b65d-d69ba79ea21a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / My configuration change impacted connectivity\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/9e9faedb-7764-448b-244a-14eca26f5362\",\r\n \"name\": \"9e9faedb-7764-448b-244a-14eca26f5362\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Troubleshoot my network security group (NSG)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/a0456e7c-3e84-2bd5-63e9-2fc8ba7cff73\",\r\n \"name\": \"a0456e7c-3e84-2bd5-63e9-2fc8ba7cff73\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Troubleshoot my VM firewall\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/e5c307e3-50ff-5dc9-c8ae-7d35051f88c9\",\r\n \"name\": \"e5c307e3-50ff-5dc9-c8ae-7d35051f88c9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I have an issue with my public IP\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/f325e249-4f10-e5bd-28f6-a466704826da\",\r\n \"name\": \"f325e249-4f10-e5bd-28f6-a466704826da\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I need to reset my password\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/f44a2b74-6a5c-a93f-a259-81e756e8cc27\",\r\n \"name\": \"f44a2b74-6a5c-a93f-a259-81e756e8cc27\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I need guidance with serial console access\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/92c2396d-b703-973f-1bca-2eea9425b21a\",\r\n \"name\": \"92c2396d-b703-973f-1bca-2eea9425b21a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Failure to connect using RDP or SSH port\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/83e6afa6-4ecd-e1c6-ef63-de73e96d0842\",\r\n \"name\": \"83e6afa6-4ecd-e1c6-ef63-de73e96d0842\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My VM will not start after a configuration change\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/240605e1-1510-255d-b490-cb95f582b1dc\",\r\n \"name\": \"240605e1-1510-255d-b490-cb95f582b1dc\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I received a disk related error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/f47d6b99-6f4b-d21a-feee-1800ad391e10\",\r\n \"name\": \"f47d6b99-6f4b-d21a-feee-1800ad391e10\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I received an allocation failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/c330d1a5-2f80-c72f-9bf5-df862a6629c3\",\r\n \"name\": \"c330d1a5-2f80-c72f-9bf5-df862a6629c3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My VM is unresponsive to start or stop operations\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/391055aa-2419-54f5-a5c1-b7cee895e0b7\",\r\n \"name\": \"391055aa-2419-54f5-a5c1-b7cee895e0b7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I am unable to resize my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/57f62030-d8ca-14f0-21d8-d13a38da9b44\",\r\n \"name\": \"57f62030-d8ca-14f0-21d8-d13a38da9b44\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My start or stop operation failed\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/5aed3921-4198-0d81-c999-f9c878ac00c8\",\r\n \"name\": \"5aed3921-4198-0d81-c999-f9c878ac00c8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My VMs OS is not booting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/fac9b6c8-5fe8-1380-aac2-beca088aa4f9\",\r\n \"name\": \"fac9b6c8-5fe8-1380-aac2-beca088aa4f9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My VMs OS is on a reboot loop\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/e677e41f-3296-1eef-cce6-5f4418dd9a15\",\r\n \"name\": \"e677e41f-3296-1eef-cce6-5f4418dd9a15\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / I applied updates and my VM will not boot\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/08e5ecaa-db9a-f0c3-880e-8b19993c5693\",\r\n \"name\": \"08e5ecaa-db9a-f0c3-880e-8b19993c5693\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / I received a failure when starting my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/773b125f-f9a8-f282-abe3-051d8ffe0f26\",\r\n \"name\": \"773b125f-f9a8-f282-abe3-051d8ffe0f26\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My problem is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/0aa484ee-9ff4-730b-4712-db435e6379b1\",\r\n \"name\": \"0aa484ee-9ff4-730b-4712-db435e6379b1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I need guidance preparing an image\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/9cbf3cf0-08ae-c0ee-838d-0e478fd1db59\",\r\n \"name\": \"9cbf3cf0-08ae-c0ee-838d-0e478fd1db59\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I need guidance deploying with managed disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/f0ee0e3f-41b3-3911-fff5-cc68d7853c1e\",\r\n \"name\": \"f0ee0e3f-41b3-3911-fff5-cc68d7853c1e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot custom image deployment failures\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/e2212b28-7a50-21a0-2346-d238a1010cfb\",\r\n \"name\": \"e2212b28-7a50-21a0-2346-d238a1010cfb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot marketplace image deployment failures\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/40e11b22-ffdb-7bab-0ffe-5afe1f671257\",\r\n \"name\": \"40e11b22-ffdb-7bab-0ffe-5afe1f671257\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / My desired region or VM size is unavailable\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/62446684-0e2d-4d89-e8ac-a75e02e52b62\",\r\n \"name\": \"62446684-0e2d-4d89-e8ac-a75e02e52b62\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I received an allocation failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/296a2f1f-4e0e-0a47-b057-408c061a7c58\",\r\n \"name\": \"296a2f1f-4e0e-0a47-b057-408c061a7c58\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I am unable to deploy a captured or generalized image\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/cda07234-3a2f-2362-0f26-1228beb5e938\",\r\n \"name\": \"cda07234-3a2f-2362-0f26-1228beb5e938\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot my ARM template error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/7fabc8c8-2ca8-a148-3713-a4708abc6626\",\r\n \"name\": \"7fabc8c8-2ca8-a148-3713-a4708abc6626\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I received a provisioning or deployment timeout error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/d0135195-91e8-58c5-d179-52a0b3df9346\",\r\n \"name\": \"d0135195-91e8-58c5-d179-52a0b3df9346\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / My guest OS is causing restarts\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/ee1b9d5c-c229-5771-00cd-4ab0a351650f\",\r\n \"name\": \"ee1b9d5c-c229-5771-00cd-4ab0a351650f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Troubleshoot Windows Update issues\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/fa3319a9-fc1c-6bb3-4fcc-4fd91ae9446e\",\r\n \"name\": \"fa3319a9-fc1c-6bb3-4fcc-4fd91ae9446e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Request Root Cause Statement for recent availability impact\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/fd32c173-79fe-462d-bfff-aeef92800055\",\r\n \"name\": \"fd32c173-79fe-462d-bfff-aeef92800055\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Help diagnose my VM restart issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/ad87fcbe-dbe1-5757-c644-b5511f27f5c4\",\r\n \"name\": \"ad87fcbe-dbe1-5757-c644-b5511f27f5c4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Disk throughput is lower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/8b618100-f5cd-7ad5-1c69-72aaf37d801d\",\r\n \"name\": \"8b618100-f5cd-7ad5-1c69-72aaf37d801d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / CPU usage is higher than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/0cb121be-61df-48e4-5faa-b34f01c7aa16\",\r\n \"name\": \"0cb121be-61df-48e4-5faa-b34f01c7aa16\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Memory usage is higher than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/899926d6-8586-6c43-100d-a363420f10ad\",\r\n \"name\": \"899926d6-8586-6c43-100d-a363420f10ad\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / GPU processing is slower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/ee9dd1ca-39aa-86d7-1465-74ef01856d37\",\r\n \"name\": \"ee9dd1ca-39aa-86d7-1465-74ef01856d37\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Guidance for better VM sizing and throughput\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/2dafb8e0-c8e0-bacc-5ff0-42635d6c2491\",\r\n \"name\": \"2dafb8e0-c8e0-bacc-5ff0-42635d6c2491\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Unable to resize my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/f55ae157-8eae-55e0-db62-d976220c3b4b\",\r\n \"name\": \"f55ae157-8eae-55e0-db62-d976220c3b4b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot activate my Windows VM / My VM is reporting a specific activation error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/ebd329a3-fb2f-0895-7d80-e944994bcfab\",\r\n \"name\": \"ebd329a3-fb2f-0895-7d80-e944994bcfab\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot activate my Windows VM / My VM has never been successfully activated\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/5c13b65d-2d3c-a335-d7a0-fac839d34d2b\",\r\n \"name\": \"5c13b65d-2d3c-a335-d7a0-fac839d34d2b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot activate my Windows VM / My VM was previously activated and now isn’t\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/e587028f-8d91-4c0f-a265-b1f08a6d22cf\",\r\n \"name\": \"e587028f-8d91-4c0f-a265-b1f08a6d22cf\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot activate my Windows VM / My Express Route configuration is causing issues with Windows activation\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/d36debab-2411-5fcc-6fcc-f28b5a18a804\",\r\n \"name\": \"d36debab-2411-5fcc-6fcc-f28b5a18a804\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot activate my Windows VM / My KMS server is located on-premises and activation fails\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/1ceb0742-9626-0670-452f-e853aa789deb\",\r\n \"name\": \"1ceb0742-9626-0670-452f-e853aa789deb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot activate my Windows VM / My key or license isn’t working properly\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/7a936404-b37e-01e2-1616-571db2e113b0\",\r\n \"name\": \"7a936404-b37e-01e2-1616-571db2e113b0\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Resizing a virtual disk\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/c9d514fa-07ba-599c-6c86-2856247842a8\",\r\n \"name\": \"c9d514fa-07ba-599c-6c86-2856247842a8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Attaching or detaching virtual disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/8d76d0aa-e106-79ff-0231-9ffb1a59ed66\",\r\n \"name\": \"8d76d0aa-e106-79ff-0231-9ffb1a59ed66\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Creating or deleting virtual disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/e82eaf5a-b6a2-cc52-9651-571ffb782bbd\",\r\n \"name\": \"e82eaf5a-b6a2-cc52-9651-571ffb782bbd\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Disk throughput is lower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/b4fc835f-16aa-d11a-7a3b-1900ffeb7bcb\",\r\n \"name\": \"b4fc835f-16aa-d11a-7a3b-1900ffeb7bcb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Restore a VM from snapshot\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/03bac894-54fc-6fa1-df23-bbf21eace375\",\r\n \"name\": \"03bac894-54fc-6fa1-df23-bbf21eace375\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Issues with Direct Upload for Managed Disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/7f21b03f-08e9-238c-ab58-8c460823ee16\",\r\n \"name\": \"7f21b03f-08e9-238c-ab58-8c460823ee16\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / My problem is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/7261042e-2690-5f80-89b1-dbf323a90c03\",\r\n \"name\": \"7261042e-2690-5f80-89b1-dbf323a90c03\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Diagnostic (boot diagnostics) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/134405f7-3ab8-50a5-3f68-2b87855f74f6\",\r\n \"name\": \"134405f7-3ab8-50a5-3f68-2b87855f74f6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Custom Script (CSE) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/b6dec86c-f1a4-e67f-cc26-1bb9efce43f3\",\r\n \"name\": \"b6dec86c-f1a4-e67f-cc26-1bb9efce43f3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Log Analytics (OMS) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/7f5b5671-3461-1fce-84e5-36eeb0a6f235\",\r\n \"name\": \"7f5b5671-3461-1fce-84e5-36eeb0a6f235\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Desired State Configuration (DSC) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/43b0be02-be8c-ac5a-af46-ab0516762feb\",\r\n \"name\": \"43b0be02-be8c-ac5a-af46-ab0516762feb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Microsoft Antimalware (security) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/5f941c9f-e41a-2d35-7719-2f2f0bc72408\",\r\n \"name\": \"5f941c9f-e41a-2d35-7719-2f2f0bc72408\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Disk Encryption (ADE) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/52e4c0d8-bfe7-721a-315d-c930b5e33f4f\",\r\n \"name\": \"52e4c0d8-bfe7-721a-315d-c930b5e33f4f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Snapshot (Azure Backup) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/4d0458f2-335f-decc-813c-3a70929463df\",\r\n \"name\": \"4d0458f2-335f-decc-813c-3a70929463df\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Update Management extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/5a105230-54e6-b09a-5667-764d781026a1\",\r\n \"name\": \"5a105230-54e6-b09a-5667-764d781026a1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / GPU Driver extension issue (NVIDIA)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/f8c2e1e4-fa16-52f7-5569-10c956934600\",\r\n \"name\": \"f8c2e1e4-fa16-52f7-5569-10c956934600\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Network Watcher agent extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/fc4d4b63-7ee7-78c1-fc99-ffe694b9f8a2\",\r\n \"name\": \"fc4d4b63-7ee7-78c1-fc99-ffe694b9f8a2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Monitoring agent (MMA) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/501cfa71-4c26-0615-c60e-c800d605e049\",\r\n \"name\": \"501cfa71-4c26-0615-c60e-c800d605e049\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Access (enablevmaccess) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/4df7c88d-2c5a-27de-fc0e-87a7493fed69\",\r\n \"name\": \"4df7c88d-2c5a-27de-fc0e-87a7493fed69\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Guest Agent issue (crash, hung, not upgrading, or not connecting)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/0ff542fa-5338-ba24-2e2d-00200b837667\",\r\n \"name\": \"0ff542fa-5338-ba24-2e2d-00200b837667\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Custom Script (CSE) extension using Managed Identity issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/0969c3f5-eae0-7620-93c2-609254bcac83\",\r\n \"name\": \"0969c3f5-eae0-7620-93c2-609254bcac83\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Active Directory Login extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/62e3cd36-8683-2540-7b90-7a890e8560f2\",\r\n \"name\": \"62e3cd36-8683-2540-7b90-7a890e8560f2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / GPU Driver extension issue (AMD)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/8be087ad-d9b0-fbd1-aebe-c4b3bf9c2e0e\",\r\n \"name\": \"8be087ad-d9b0-fbd1-aebe-c4b3bf9c2e0e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My encryption has failed due to a pre-req failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/3cd0b841-0192-fcb7-f056-cccdb669cd4a\",\r\n \"name\": \"3cd0b841-0192-fcb7-f056-cccdb669cd4a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is due to unsupported image or operating system\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/6322d0b2-1b5c-129b-ea42-cace57e14805\",\r\n \"name\": \"6322d0b2-1b5c-129b-ea42-cace57e14805\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My VM is not booting after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/bc6dcea4-b6da-cd06-7ab1-1ddfb603eaee\",\r\n \"name\": \"bc6dcea4-b6da-cd06-7ab1-1ddfb603eaee\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My VM is not reachable after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/14b1d04c-90d1-a0ad-8bfc-d98666f39d30\",\r\n \"name\": \"14b1d04c-90d1-a0ad-8bfc-d98666f39d30\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My data drive or file system is not available after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/77622630-5414-5a0b-15b2-84be742163e5\",\r\n \"name\": \"77622630-5414-5a0b-15b2-84be742163e5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / I need guidance with Azure Key Vault configuration, permissions, or keys\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/af987d76-3ad6-c91a-5050-24712c6edc1f\",\r\n \"name\": \"af987d76-3ad6-c91a-5050-24712c6edc1f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / Current status of encryption is incorrect for my VM (Portal, CLI, PS)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/fabe7798-6447-21d1-eec1-ff516a8b2716\",\r\n \"name\": \"fabe7798-6447-21d1-eec1-ff516a8b2716\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue with decrypting a virtual disk\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/af1c1222-ca4f-b128-741b-f54511d64201\",\r\n \"name\": \"af1c1222-ca4f-b128-741b-f54511d64201\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is with troubleshooting an encrypted VM (unlocking)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/be276306-0a08-2531-82cb-9e9907e625f3\",\r\n \"name\": \"be276306-0a08-2531-82cb-9e9907e625f3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My encryption is not working as expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/397fe3e8-5101-d675-e61a-babcc02ff874\",\r\n \"name\": \"397fe3e8-5101-d675-e61a-babcc02ff874\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/e8bf24a4-487b-b723-7bf0-4271febda89c\",\r\n \"name\": \"e8bf24a4-487b-b723-7bf0-4271febda89c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I am having issues configuring or enabling backup\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/b2e9f884-ad9d-43ac-e01f-be03d1856ee3\",\r\n \"name\": \"b2e9f884-ad9d-43ac-e01f-be03d1856ee3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Backup is failing for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/6fddc208-ceac-8c83-a5a9-4cc00dae14be\",\r\n \"name\": \"6fddc208-ceac-8c83-a5a9-4cc00dae14be\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Restore is failing for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/518d9718-b940-0f5f-8e9d-08fde92a884a\",\r\n \"name\": \"518d9718-b940-0f5f-8e9d-08fde92a884a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Backup is taking longer than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/2abbb2fc-32d4-402c-6d5d-e7a28a7dc95e\",\r\n \"name\": \"2abbb2fc-32d4-402c-6d5d-e7a28a7dc95e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Restore is taking longer than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/5dd4e579-22b4-ee21-ee22-6b027061b157\",\r\n \"name\": \"5dd4e579-22b4-ee21-ee22-6b027061b157\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I need guidance configuring backup for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/90c41c9e-f50e-1bf4-370f-44ffb5a9c1ac\",\r\n \"name\": \"90c41c9e-f50e-1bf4-370f-44ffb5a9c1ac\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I need guidance with restoring my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/4fc9f99b-00f8-a3ca-cd9e-0c4648ce1d90\",\r\n \"name\": \"4fc9f99b-00f8-a3ca-cd9e-0c4648ce1d90\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / My issue is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/082217f4-bed0-6b03-12c1-173ed77cb03b\",\r\n \"name\": \"082217f4-bed0-6b03-12c1-173ed77cb03b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Guest OS - Windows specific in-place upgrade issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/4af02697-cd73-222d-c180-4ff928f26312\",\r\n \"name\": \"4af02697-cd73-222d-c180-4ff928f26312\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Create RDS in Azure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/ad486945-9500-f754-c39f-26ac7db9a17d\",\r\n \"name\": \"ad486945-9500-f754-c39f-26ac7db9a17d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Create a Windows failover cluster\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/7894368f-87ed-8e4b-df9a-4b2f8fa19e71\",\r\n \"name\": \"7894368f-87ed-8e4b-df9a-4b2f8fa19e71\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / My issue or question is specific to Hybrid Use Benefit (HUB)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/5ee984fd-2cd9-73b3-e688-91192a300d42\",\r\n \"name\": \"5ee984fd-2cd9-73b3-e688-91192a300d42\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to delete a virtual machine\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/93ee5e82-133c-842f-57fc-a18e959f7939\",\r\n \"name\": \"93ee5e82-133c-842f-57fc-a18e959f7939\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to delete a Resource Group\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/bca84408-0cce-27ce-6ec0-81d3d0bf61d3\",\r\n \"name\": \"bca84408-0cce-27ce-6ec0-81d3d0bf61d3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Instance Metadata Service\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/7deec2fa-ffd5-a10b-b26e-1891f495242b\",\r\n \"name\": \"7deec2fa-ffd5-a10b-b26e-1891f495242b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage or use RDS in Azure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/6c8b2a76-0250-e93c-ca70-263729a68761\",\r\n \"name\": \"6c8b2a76-0250-e93c-ca70-263729a68761\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage or use a Windows cluster in Azure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/cd0edcee-79fe-4f6a-5fa8-7ffe6d9e6a5c\",\r\n \"name\": \"cd0edcee-79fe-4f6a-5fa8-7ffe6d9e6a5c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Azure Metadata Service (Scheduled Events)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/727c53ba-c8ff-acae-381d-7659f403d974\",\r\n \"name\": \"727c53ba-c8ff-acae-381d-7659f403d974\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to share Shared Image Gallery, Image Definition or Image Version\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/2dbfdbd8-7942-817a-4614-851940815182\",\r\n \"name\": \"2dbfdbd8-7942-817a-4614-851940815182\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage an instance of SQL Server\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/588be50a-ee0e-8d07-0135-8dde3ee4bb56\",\r\n \"name\": \"588be50a-ee0e-8d07-0135-8dde3ee4bb56\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / My issue or question is specific to Hybrid Use Benefit (HUB) for Windows\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/8a82f77d-c3ab-7b08-d915-776b4ff64ff4\",\r\n \"name\": \"8a82f77d-c3ab-7b08-d915-776b4ff64ff4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Guidance regarding retirement of Classic IAAS resources (ASM)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/1135e3d0-20e2-aec5-4ef0-55fd3dae2d58\",\r\n \"name\": \"1135e3d0-20e2-aec5-4ef0-55fd3dae2d58\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate IAAS resources from Classic (ASM) to Azure Resource Manager (ARM)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/df1436d9-bc4b-555b-eeda-7b5150c974fa\",\r\n \"name\": \"df1436d9-bc4b-555b-eeda-7b5150c974fa\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Managed disks migration\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/0b726570-b04d-be6e-3fab-0e458a65aa90\",\r\n \"name\": \"0b726570-b04d-be6e-3fab-0e458a65aa90\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between storage accounts\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/e99d3660-70d7-d2f6-29a2-8571fe13516d\",\r\n \"name\": \"e99d3660-70d7-d2f6-29a2-8571fe13516d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between regions\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/579bb510-ba46-26a3-19c7-3ce5e37bf1c5\",\r\n \"name\": \"579bb510-ba46-26a3-19c7-3ce5e37bf1c5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between subscriptions\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/ddd00ce4-eae5-4bb0-d957-bdafe22ca5d7\",\r\n \"name\": \"ddd00ce4-eae5-4bb0-d957-bdafe22ca5d7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate resources using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/82d8b2f0-bd7e-d0b7-35a0-2d8072acd0bc\",\r\n \"name\": \"82d8b2f0-bd7e-d0b7-35a0-2d8072acd0bc\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate virtual machines from on-premises to Azure using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/d82aa2c5-a0cf-ae56-a486-220246791212\",\r\n \"name\": \"d82aa2c5-a0cf-ae56-a486-220246791212\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate virtual machines from third-party provider to Azure using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/aaa925f8-bbc6-997b-e8e2-35d9b6c78b2b\",\r\n \"name\": \"aaa925f8-bbc6-997b-e8e2-35d9b6c78b2b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between resource groups\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/bf5eafd5-a438-6e15-458f-e614453346a2\",\r\n \"name\": \"bf5eafd5-a438-6e15-458f-e614453346a2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Planned Maintenance (Azure Platform)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/b20d0fe1-828e-d1b8-2278-1c22a0dcb560\",\r\n \"name\": \"b20d0fe1-828e-d1b8-2278-1c22a0dcb560\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / AzureSafeGuards email received\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/98745d3a-6d4f-30a7-a3c9-8ad002a95560\",\r\n \"name\": \"98745d3a-6d4f-30a7-a3c9-8ad002a95560\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / Guidance for security advisories or vulnerabilities\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/34feb588-ad57-369b-158c-f00e25ec5075\",\r\n \"name\": \"34feb588-ad57-369b-158c-f00e25ec5075\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / Malicious activity suspected or detected on system\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/f91b2161-5abf-a1c9-094b-c1aaf6e688ff\",\r\n \"name\": \"f91b2161-5abf-a1c9-094b-c1aaf6e688ff\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / Malware suspected on system\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/fb1a3450-332d-ac43-2959-e46372dad22c\",\r\n \"name\": \"fb1a3450-332d-ac43-2959-e46372dad22c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / Root cause investigation or advisory\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/3e0f21a7-21e0-b7a8-1027-a4968f854350\",\r\n \"name\": \"3e0f21a7-21e0-b7a8-1027-a4968f854350\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / System has been compromised\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/e5a42d2e-0eb0-8c85-90af-0e82aaa44dd1\",\r\n \"name\": \"e5a42d2e-0eb0-8c85-90af-0e82aaa44dd1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / System or accounts have been hacked\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/d015a015-6b30-544e-58df-b15a0fb8087d\",\r\n \"name\": \"d015a015-6b30-544e-58df-b15a0fb8087d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / Virus or Trojan detected on system\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/60323453-3561-e550-d597-f6f16128db2a\",\r\n \"name\": \"60323453-3561-e550-d597-f6f16128db2a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / Vulnerability information\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/8bf92fac-4aff-92eb-65f3-b58e4f55a672\",\r\n \"name\": \"8bf92fac-4aff-92eb-65f3-b58e4f55a672\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / Vulnerability Scanner results\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/a2e34c4b-a2ba-2cb2-5e46-ee867cff565f\",\r\n \"name\": \"a2e34c4b-a2ba-2cb2-5e46-ee867cff565f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / Website has been defaced\"\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/4d78b174-3203-a3ac-9e08-41fb35de6354\",\r\n \"name\": \"4d78b174-3203-a3ac-9e08-41fb35de6354\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Compute-VM (cores-vCPUs) subscription limit increases\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/923d6b56-d573-f943-b65d-d69ba79ea21a\",\r\n \"name\": \"923d6b56-d573-f943-b65d-d69ba79ea21a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / My configuration change impacted connectivity\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/9e9faedb-7764-448b-244a-14eca26f5362\",\r\n \"name\": \"9e9faedb-7764-448b-244a-14eca26f5362\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Troubleshoot my network security group (NSG)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/a0456e7c-3e84-2bd5-63e9-2fc8ba7cff73\",\r\n \"name\": \"a0456e7c-3e84-2bd5-63e9-2fc8ba7cff73\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Troubleshoot my VM firewall\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/e5c307e3-50ff-5dc9-c8ae-7d35051f88c9\",\r\n \"name\": \"e5c307e3-50ff-5dc9-c8ae-7d35051f88c9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I have an issue with my public IP\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/f325e249-4f10-e5bd-28f6-a466704826da\",\r\n \"name\": \"f325e249-4f10-e5bd-28f6-a466704826da\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I need to reset my password\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/f44a2b74-6a5c-a93f-a259-81e756e8cc27\",\r\n \"name\": \"f44a2b74-6a5c-a93f-a259-81e756e8cc27\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I need guidance with serial console access\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/92c2396d-b703-973f-1bca-2eea9425b21a\",\r\n \"name\": \"92c2396d-b703-973f-1bca-2eea9425b21a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Failure to connect using RDP or SSH port\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/83e6afa6-4ecd-e1c6-ef63-de73e96d0842\",\r\n \"name\": \"83e6afa6-4ecd-e1c6-ef63-de73e96d0842\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My VM will not start after a configuration change\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/240605e1-1510-255d-b490-cb95f582b1dc\",\r\n \"name\": \"240605e1-1510-255d-b490-cb95f582b1dc\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I received a disk related error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/f47d6b99-6f4b-d21a-feee-1800ad391e10\",\r\n \"name\": \"f47d6b99-6f4b-d21a-feee-1800ad391e10\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I received an allocation failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/c330d1a5-2f80-c72f-9bf5-df862a6629c3\",\r\n \"name\": \"c330d1a5-2f80-c72f-9bf5-df862a6629c3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My VM is unresponsive to start or stop operations\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/391055aa-2419-54f5-a5c1-b7cee895e0b7\",\r\n \"name\": \"391055aa-2419-54f5-a5c1-b7cee895e0b7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I am unable to resize my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/57f62030-d8ca-14f0-21d8-d13a38da9b44\",\r\n \"name\": \"57f62030-d8ca-14f0-21d8-d13a38da9b44\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My start or stop operation failed\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/5aed3921-4198-0d81-c999-f9c878ac00c8\",\r\n \"name\": \"5aed3921-4198-0d81-c999-f9c878ac00c8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My VMs OS is not booting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/fac9b6c8-5fe8-1380-aac2-beca088aa4f9\",\r\n \"name\": \"fac9b6c8-5fe8-1380-aac2-beca088aa4f9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My VMs OS is on a reboot loop\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/e677e41f-3296-1eef-cce6-5f4418dd9a15\",\r\n \"name\": \"e677e41f-3296-1eef-cce6-5f4418dd9a15\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / I applied updates and my VM will not boot\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/08e5ecaa-db9a-f0c3-880e-8b19993c5693\",\r\n \"name\": \"08e5ecaa-db9a-f0c3-880e-8b19993c5693\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / I received a failure when starting my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/773b125f-f9a8-f282-abe3-051d8ffe0f26\",\r\n \"name\": \"773b125f-f9a8-f282-abe3-051d8ffe0f26\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My problem is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/0aa484ee-9ff4-730b-4712-db435e6379b1\",\r\n \"name\": \"0aa484ee-9ff4-730b-4712-db435e6379b1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I need guidance preparing an image\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/9cbf3cf0-08ae-c0ee-838d-0e478fd1db59\",\r\n \"name\": \"9cbf3cf0-08ae-c0ee-838d-0e478fd1db59\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I need guidance deploying with managed disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/f0ee0e3f-41b3-3911-fff5-cc68d7853c1e\",\r\n \"name\": \"f0ee0e3f-41b3-3911-fff5-cc68d7853c1e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot custom image deployment failures\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/e2212b28-7a50-21a0-2346-d238a1010cfb\",\r\n \"name\": \"e2212b28-7a50-21a0-2346-d238a1010cfb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot marketplace image deployment failures\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/40e11b22-ffdb-7bab-0ffe-5afe1f671257\",\r\n \"name\": \"40e11b22-ffdb-7bab-0ffe-5afe1f671257\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / My desired region or VM size is unavailable\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/62446684-0e2d-4d89-e8ac-a75e02e52b62\",\r\n \"name\": \"62446684-0e2d-4d89-e8ac-a75e02e52b62\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I received an allocation failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/296a2f1f-4e0e-0a47-b057-408c061a7c58\",\r\n \"name\": \"296a2f1f-4e0e-0a47-b057-408c061a7c58\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I am unable to deploy a captured or generalized image\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/cda07234-3a2f-2362-0f26-1228beb5e938\",\r\n \"name\": \"cda07234-3a2f-2362-0f26-1228beb5e938\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot my ARM template error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/7fabc8c8-2ca8-a148-3713-a4708abc6626\",\r\n \"name\": \"7fabc8c8-2ca8-a148-3713-a4708abc6626\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I received a provisioning or deployment timeout error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/d0135195-91e8-58c5-d179-52a0b3df9346\",\r\n \"name\": \"d0135195-91e8-58c5-d179-52a0b3df9346\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / My guest OS is causing restarts\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/ee1b9d5c-c229-5771-00cd-4ab0a351650f\",\r\n \"name\": \"ee1b9d5c-c229-5771-00cd-4ab0a351650f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Troubleshoot Windows Update issues\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/fa3319a9-fc1c-6bb3-4fcc-4fd91ae9446e\",\r\n \"name\": \"fa3319a9-fc1c-6bb3-4fcc-4fd91ae9446e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Request Root Cause Statement for recent availability impact\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/fd32c173-79fe-462d-bfff-aeef92800055\",\r\n \"name\": \"fd32c173-79fe-462d-bfff-aeef92800055\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Help diagnose my VM restart issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/ad87fcbe-dbe1-5757-c644-b5511f27f5c4\",\r\n \"name\": \"ad87fcbe-dbe1-5757-c644-b5511f27f5c4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Disk throughput is lower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/8b618100-f5cd-7ad5-1c69-72aaf37d801d\",\r\n \"name\": \"8b618100-f5cd-7ad5-1c69-72aaf37d801d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / CPU usage is higher than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/0cb121be-61df-48e4-5faa-b34f01c7aa16\",\r\n \"name\": \"0cb121be-61df-48e4-5faa-b34f01c7aa16\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Memory usage is higher than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/899926d6-8586-6c43-100d-a363420f10ad\",\r\n \"name\": \"899926d6-8586-6c43-100d-a363420f10ad\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / GPU processing is slower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/ee9dd1ca-39aa-86d7-1465-74ef01856d37\",\r\n \"name\": \"ee9dd1ca-39aa-86d7-1465-74ef01856d37\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Guidance for better VM sizing and throughput\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/2dafb8e0-c8e0-bacc-5ff0-42635d6c2491\",\r\n \"name\": \"2dafb8e0-c8e0-bacc-5ff0-42635d6c2491\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Unable to resize my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/f55ae157-8eae-55e0-db62-d976220c3b4b\",\r\n \"name\": \"f55ae157-8eae-55e0-db62-d976220c3b4b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot activate my Windows VM / My VM is reporting a specific activation error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/ebd329a3-fb2f-0895-7d80-e944994bcfab\",\r\n \"name\": \"ebd329a3-fb2f-0895-7d80-e944994bcfab\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot activate my Windows VM / My VM has never been successfully activated\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/5c13b65d-2d3c-a335-d7a0-fac839d34d2b\",\r\n \"name\": \"5c13b65d-2d3c-a335-d7a0-fac839d34d2b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot activate my Windows VM / My VM was previously activated and now isn’t\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/e587028f-8d91-4c0f-a265-b1f08a6d22cf\",\r\n \"name\": \"e587028f-8d91-4c0f-a265-b1f08a6d22cf\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot activate my Windows VM / My Express Route configuration is causing issues with Windows activation\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/d36debab-2411-5fcc-6fcc-f28b5a18a804\",\r\n \"name\": \"d36debab-2411-5fcc-6fcc-f28b5a18a804\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot activate my Windows VM / My KMS server is located on-premises and activation fails\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/1ceb0742-9626-0670-452f-e853aa789deb\",\r\n \"name\": \"1ceb0742-9626-0670-452f-e853aa789deb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot activate my Windows VM / My key or license isn’t working properly\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/7a936404-b37e-01e2-1616-571db2e113b0\",\r\n \"name\": \"7a936404-b37e-01e2-1616-571db2e113b0\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Resizing a virtual disk\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/c9d514fa-07ba-599c-6c86-2856247842a8\",\r\n \"name\": \"c9d514fa-07ba-599c-6c86-2856247842a8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Attaching or detaching virtual disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/8d76d0aa-e106-79ff-0231-9ffb1a59ed66\",\r\n \"name\": \"8d76d0aa-e106-79ff-0231-9ffb1a59ed66\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Creating or deleting virtual disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/e82eaf5a-b6a2-cc52-9651-571ffb782bbd\",\r\n \"name\": \"e82eaf5a-b6a2-cc52-9651-571ffb782bbd\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Disk throughput is lower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/b4fc835f-16aa-d11a-7a3b-1900ffeb7bcb\",\r\n \"name\": \"b4fc835f-16aa-d11a-7a3b-1900ffeb7bcb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Restore a VM from snapshot\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/03bac894-54fc-6fa1-df23-bbf21eace375\",\r\n \"name\": \"03bac894-54fc-6fa1-df23-bbf21eace375\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Issues with Direct Upload for Managed Disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/7f21b03f-08e9-238c-ab58-8c460823ee16\",\r\n \"name\": \"7f21b03f-08e9-238c-ab58-8c460823ee16\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / My problem is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/7261042e-2690-5f80-89b1-dbf323a90c03\",\r\n \"name\": \"7261042e-2690-5f80-89b1-dbf323a90c03\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Diagnostic (boot diagnostics) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/134405f7-3ab8-50a5-3f68-2b87855f74f6\",\r\n \"name\": \"134405f7-3ab8-50a5-3f68-2b87855f74f6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Custom Script (CSE) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/b6dec86c-f1a4-e67f-cc26-1bb9efce43f3\",\r\n \"name\": \"b6dec86c-f1a4-e67f-cc26-1bb9efce43f3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Log Analytics (OMS) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/7f5b5671-3461-1fce-84e5-36eeb0a6f235\",\r\n \"name\": \"7f5b5671-3461-1fce-84e5-36eeb0a6f235\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Desired State Configuration (DSC) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/43b0be02-be8c-ac5a-af46-ab0516762feb\",\r\n \"name\": \"43b0be02-be8c-ac5a-af46-ab0516762feb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Microsoft Antimalware (security) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/5f941c9f-e41a-2d35-7719-2f2f0bc72408\",\r\n \"name\": \"5f941c9f-e41a-2d35-7719-2f2f0bc72408\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Disk Encryption (ADE) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/52e4c0d8-bfe7-721a-315d-c930b5e33f4f\",\r\n \"name\": \"52e4c0d8-bfe7-721a-315d-c930b5e33f4f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Snapshot (Azure Backup) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/4d0458f2-335f-decc-813c-3a70929463df\",\r\n \"name\": \"4d0458f2-335f-decc-813c-3a70929463df\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Update Management extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/5a105230-54e6-b09a-5667-764d781026a1\",\r\n \"name\": \"5a105230-54e6-b09a-5667-764d781026a1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / GPU Driver extension issue (NVIDIA)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/f8c2e1e4-fa16-52f7-5569-10c956934600\",\r\n \"name\": \"f8c2e1e4-fa16-52f7-5569-10c956934600\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Network Watcher agent extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/fc4d4b63-7ee7-78c1-fc99-ffe694b9f8a2\",\r\n \"name\": \"fc4d4b63-7ee7-78c1-fc99-ffe694b9f8a2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Monitoring agent (MMA) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/501cfa71-4c26-0615-c60e-c800d605e049\",\r\n \"name\": \"501cfa71-4c26-0615-c60e-c800d605e049\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Access (enablevmaccess) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/4df7c88d-2c5a-27de-fc0e-87a7493fed69\",\r\n \"name\": \"4df7c88d-2c5a-27de-fc0e-87a7493fed69\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Guest Agent issue (crash, hung, not upgrading, or not connecting)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/0969c3f5-eae0-7620-93c2-609254bcac83\",\r\n \"name\": \"0969c3f5-eae0-7620-93c2-609254bcac83\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Active Directory Login extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/62e3cd36-8683-2540-7b90-7a890e8560f2\",\r\n \"name\": \"62e3cd36-8683-2540-7b90-7a890e8560f2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / GPU Driver extension issue (AMD)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/8be087ad-d9b0-fbd1-aebe-c4b3bf9c2e0e\",\r\n \"name\": \"8be087ad-d9b0-fbd1-aebe-c4b3bf9c2e0e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My encryption has failed due to a pre-req failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/3cd0b841-0192-fcb7-f056-cccdb669cd4a\",\r\n \"name\": \"3cd0b841-0192-fcb7-f056-cccdb669cd4a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is due to unsupported image or operating system\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/6322d0b2-1b5c-129b-ea42-cace57e14805\",\r\n \"name\": \"6322d0b2-1b5c-129b-ea42-cace57e14805\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My VM is not booting after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/bc6dcea4-b6da-cd06-7ab1-1ddfb603eaee\",\r\n \"name\": \"bc6dcea4-b6da-cd06-7ab1-1ddfb603eaee\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My VM is not reachable after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/14b1d04c-90d1-a0ad-8bfc-d98666f39d30\",\r\n \"name\": \"14b1d04c-90d1-a0ad-8bfc-d98666f39d30\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My data drive or file system is not available after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/77622630-5414-5a0b-15b2-84be742163e5\",\r\n \"name\": \"77622630-5414-5a0b-15b2-84be742163e5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / I need guidance with Azure Key Vault configuration, permissions, or keys\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/af987d76-3ad6-c91a-5050-24712c6edc1f\",\r\n \"name\": \"af987d76-3ad6-c91a-5050-24712c6edc1f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / Current status of encryption is incorrect for my VM (Portal, CLI, PS)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/fabe7798-6447-21d1-eec1-ff516a8b2716\",\r\n \"name\": \"fabe7798-6447-21d1-eec1-ff516a8b2716\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue with decrypting a virtual disk\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/af1c1222-ca4f-b128-741b-f54511d64201\",\r\n \"name\": \"af1c1222-ca4f-b128-741b-f54511d64201\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is with troubleshooting an encrypted VM (unlocking)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/be276306-0a08-2531-82cb-9e9907e625f3\",\r\n \"name\": \"be276306-0a08-2531-82cb-9e9907e625f3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My encryption is not working as expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/397fe3e8-5101-d675-e61a-babcc02ff874\",\r\n \"name\": \"397fe3e8-5101-d675-e61a-babcc02ff874\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/e8bf24a4-487b-b723-7bf0-4271febda89c\",\r\n \"name\": \"e8bf24a4-487b-b723-7bf0-4271febda89c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I am having issues configuring or enabling backup\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/b2e9f884-ad9d-43ac-e01f-be03d1856ee3\",\r\n \"name\": \"b2e9f884-ad9d-43ac-e01f-be03d1856ee3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Backup is failing for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/6fddc208-ceac-8c83-a5a9-4cc00dae14be\",\r\n \"name\": \"6fddc208-ceac-8c83-a5a9-4cc00dae14be\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Restore is failing for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/518d9718-b940-0f5f-8e9d-08fde92a884a\",\r\n \"name\": \"518d9718-b940-0f5f-8e9d-08fde92a884a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Backup is taking longer than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/2abbb2fc-32d4-402c-6d5d-e7a28a7dc95e\",\r\n \"name\": \"2abbb2fc-32d4-402c-6d5d-e7a28a7dc95e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Restore is taking longer than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/5dd4e579-22b4-ee21-ee22-6b027061b157\",\r\n \"name\": \"5dd4e579-22b4-ee21-ee22-6b027061b157\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I need guidance configuring backup for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/90c41c9e-f50e-1bf4-370f-44ffb5a9c1ac\",\r\n \"name\": \"90c41c9e-f50e-1bf4-370f-44ffb5a9c1ac\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I need guidance with restoring my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/4fc9f99b-00f8-a3ca-cd9e-0c4648ce1d90\",\r\n \"name\": \"4fc9f99b-00f8-a3ca-cd9e-0c4648ce1d90\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / My issue is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/082217f4-bed0-6b03-12c1-173ed77cb03b\",\r\n \"name\": \"082217f4-bed0-6b03-12c1-173ed77cb03b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Guest OS - Windows specific in-place upgrade issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/4af02697-cd73-222d-c180-4ff928f26312\",\r\n \"name\": \"4af02697-cd73-222d-c180-4ff928f26312\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Create RDS in Azure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/ad486945-9500-f754-c39f-26ac7db9a17d\",\r\n \"name\": \"ad486945-9500-f754-c39f-26ac7db9a17d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Create a Windows failover cluster\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/7894368f-87ed-8e4b-df9a-4b2f8fa19e71\",\r\n \"name\": \"7894368f-87ed-8e4b-df9a-4b2f8fa19e71\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / My issue or question is specific to Hybrid Use Benefit (HUB)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/5ee984fd-2cd9-73b3-e688-91192a300d42\",\r\n \"name\": \"5ee984fd-2cd9-73b3-e688-91192a300d42\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to delete a virtual machine\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/93ee5e82-133c-842f-57fc-a18e959f7939\",\r\n \"name\": \"93ee5e82-133c-842f-57fc-a18e959f7939\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to delete a Resource Group\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/bca84408-0cce-27ce-6ec0-81d3d0bf61d3\",\r\n \"name\": \"bca84408-0cce-27ce-6ec0-81d3d0bf61d3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Instance Metadata Service\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/7deec2fa-ffd5-a10b-b26e-1891f495242b\",\r\n \"name\": \"7deec2fa-ffd5-a10b-b26e-1891f495242b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage or use RDS in Azure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/6c8b2a76-0250-e93c-ca70-263729a68761\",\r\n \"name\": \"6c8b2a76-0250-e93c-ca70-263729a68761\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage or use a Windows cluster in Azure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/cd0edcee-79fe-4f6a-5fa8-7ffe6d9e6a5c\",\r\n \"name\": \"cd0edcee-79fe-4f6a-5fa8-7ffe6d9e6a5c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Azure Metadata Service (Scheduled Events)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/727c53ba-c8ff-acae-381d-7659f403d974\",\r\n \"name\": \"727c53ba-c8ff-acae-381d-7659f403d974\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to share Shared Image Gallery, Image Definition or Image Version\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/2dbfdbd8-7942-817a-4614-851940815182\",\r\n \"name\": \"2dbfdbd8-7942-817a-4614-851940815182\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage an instance of SQL Server\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/588be50a-ee0e-8d07-0135-8dde3ee4bb56\",\r\n \"name\": \"588be50a-ee0e-8d07-0135-8dde3ee4bb56\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / My issue or question is specific to Hybrid Use Benefit (HUB) for Windows\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/8a82f77d-c3ab-7b08-d915-776b4ff64ff4\",\r\n \"name\": \"8a82f77d-c3ab-7b08-d915-776b4ff64ff4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Guidance regarding retirement of Classic IAAS resources (ASM)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/1135e3d0-20e2-aec5-4ef0-55fd3dae2d58\",\r\n \"name\": \"1135e3d0-20e2-aec5-4ef0-55fd3dae2d58\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate IAAS resources from Classic (ASM) to Azure Resource Manager (ARM)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/df1436d9-bc4b-555b-eeda-7b5150c974fa\",\r\n \"name\": \"df1436d9-bc4b-555b-eeda-7b5150c974fa\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Managed disks migration\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/0b726570-b04d-be6e-3fab-0e458a65aa90\",\r\n \"name\": \"0b726570-b04d-be6e-3fab-0e458a65aa90\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between storage accounts\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/e99d3660-70d7-d2f6-29a2-8571fe13516d\",\r\n \"name\": \"e99d3660-70d7-d2f6-29a2-8571fe13516d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between regions\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/579bb510-ba46-26a3-19c7-3ce5e37bf1c5\",\r\n \"name\": \"579bb510-ba46-26a3-19c7-3ce5e37bf1c5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between subscriptions\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/ddd00ce4-eae5-4bb0-d957-bdafe22ca5d7\",\r\n \"name\": \"ddd00ce4-eae5-4bb0-d957-bdafe22ca5d7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate resources using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/82d8b2f0-bd7e-d0b7-35a0-2d8072acd0bc\",\r\n \"name\": \"82d8b2f0-bd7e-d0b7-35a0-2d8072acd0bc\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate virtual machines from on-premises to Azure using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/d82aa2c5-a0cf-ae56-a486-220246791212\",\r\n \"name\": \"d82aa2c5-a0cf-ae56-a486-220246791212\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate virtual machines from third-party provider to Azure using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/aaa925f8-bbc6-997b-e8e2-35d9b6c78b2b\",\r\n \"name\": \"aaa925f8-bbc6-997b-e8e2-35d9b6c78b2b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between resource groups\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/bf5eafd5-a438-6e15-458f-e614453346a2\",\r\n \"name\": \"bf5eafd5-a438-6e15-458f-e614453346a2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Planned Maintenance (Azure Platform)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/b20d0fe1-828e-d1b8-2278-1c22a0dcb560\",\r\n \"name\": \"b20d0fe1-828e-d1b8-2278-1c22a0dcb560\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / AzureSafeGuards email received\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/98745d3a-6d4f-30a7-a3c9-8ad002a95560\",\r\n \"name\": \"98745d3a-6d4f-30a7-a3c9-8ad002a95560\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / Guidance for security advisories or vulnerabilities\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/34feb588-ad57-369b-158c-f00e25ec5075\",\r\n \"name\": \"34feb588-ad57-369b-158c-f00e25ec5075\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / Malicious activity suspected or detected on system\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/f91b2161-5abf-a1c9-094b-c1aaf6e688ff\",\r\n \"name\": \"f91b2161-5abf-a1c9-094b-c1aaf6e688ff\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / Malware suspected on system\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/fb1a3450-332d-ac43-2959-e46372dad22c\",\r\n \"name\": \"fb1a3450-332d-ac43-2959-e46372dad22c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / Root cause investigation or advisory\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/3e0f21a7-21e0-b7a8-1027-a4968f854350\",\r\n \"name\": \"3e0f21a7-21e0-b7a8-1027-a4968f854350\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / System has been compromised\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/e5a42d2e-0eb0-8c85-90af-0e82aaa44dd1\",\r\n \"name\": \"e5a42d2e-0eb0-8c85-90af-0e82aaa44dd1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / System or accounts have been hacked\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/d015a015-6b30-544e-58df-b15a0fb8087d\",\r\n \"name\": \"d015a015-6b30-544e-58df-b15a0fb8087d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / Virus or Trojan detected on system\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/60323453-3561-e550-d597-f6f16128db2a\",\r\n \"name\": \"60323453-3561-e550-d597-f6f16128db2a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / Vulnerability information\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/8bf92fac-4aff-92eb-65f3-b58e4f55a672\",\r\n \"name\": \"8bf92fac-4aff-92eb-65f3-b58e4f55a672\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / Vulnerability Scanner results\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/a2e34c4b-a2ba-2cb2-5e46-ee867cff565f\",\r\n \"name\": \"a2e34c4b-a2ba-2cb2-5e46-ee867cff565f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / Website has been defaced\"\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
@@ -571,13 +571,13 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "04483684-1f50-4436-ae80-7c1ea6d58c6c"
+ "79014929-ad17-4f0e-8abc-d149b67c8903"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.28516.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Support.MicrosoftSupportClient/1.0.0.0"
@@ -591,7 +591,10 @@
"no-cache"
],
"x-ms-ratelimit-remaining-tenant-reads": [
- "11890"
+ "11990"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -600,19 +603,16 @@
"Kestrel"
],
"x-ms-request-id": [
- "3e7f8887-f335-4df0-8e0e-0c8cd880f2cf"
+ "d0fdee26-1522-46ab-ac72-f9ccb6966101"
],
"x-ms-correlation-request-id": [
- "3e7f8887-f335-4df0-8e0e-0c8cd880f2cf"
+ "d0fdee26-1522-46ab-ac72-f9ccb6966101"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200315T071729Z:3e7f8887-f335-4df0-8e0e-0c8cd880f2cf"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "CENTRALUSEUAP:20200327T043636Z:d0fdee26-1522-46ab-ac72-f9ccb6966101"
],
"Date": [
- "Sun, 15 Mar 2020 07:17:29 GMT"
+ "Fri, 27 Mar 2020 04:36:35 GMT"
],
"Content-Length": [
"4527"
@@ -631,16 +631,16 @@
"RequestUri": "/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/providers/Microsoft.Support/checkNameAvailability?api-version=2020-04-01",
"EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZjYjc3ZmEtOGIxNy00ZWFiLTk0OTMtYjY1ZGFjZTk5ODEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3VwcG9ydC9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==",
"RequestMethod": "POST",
- "RequestBody": "{\r\n \"name\": \"PowershellScenarioTest404\",\r\n \"type\": \"Microsoft.Support/supportTickets\"\r\n}",
+ "RequestBody": "{\r\n \"name\": \"PowershellScenarioTest4705\",\r\n \"type\": \"Microsoft.Support/supportTickets\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "237a5c44-9e85-4175-8b82-9862d8407e51"
+ "ea2c9654-1bf5-4fd2-9f0b-2f016bb5ff46"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.28516.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Support.MicrosoftSupportClient/1.0.0.0"
@@ -649,7 +649,7 @@
"application/json; charset=utf-8"
],
"Content-Length": [
- "90"
+ "91"
]
},
"ResponseHeaders": {
@@ -660,7 +660,10 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1199"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -669,19 +672,16 @@
"Kestrel"
],
"x-ms-request-id": [
- "9d45f1ca-1f3b-4c98-93fa-23c025d11540"
+ "a24a2fc4-2dfb-4fe0-b30d-d3af5217c7fd"
],
"x-ms-correlation-request-id": [
- "9d45f1ca-1f3b-4c98-93fa-23c025d11540"
+ "a24a2fc4-2dfb-4fe0-b30d-d3af5217c7fd"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200315T071730Z:9d45f1ca-1f3b-4c98-93fa-23c025d11540"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "CENTRALUSEUAP:20200327T043636Z:a24a2fc4-2dfb-4fe0-b30d-d3af5217c7fd"
],
"Date": [
- "Sun, 15 Mar 2020 07:17:29 GMT"
+ "Fri, 27 Mar 2020 04:36:36 GMT"
],
"Content-Length": [
"22"
@@ -697,22 +697,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resources?$filter=resourceGroup%20eq%20'aaronnewgroup'%20and%20resourceType%20eq%20'Microsoft.Compute/virtualMachines'%20and%20name%20eq%20'Testing'&api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZjYjc3ZmEtOGIxNy00ZWFiLTk0OTMtYjY1ZGFjZTk5ODEzL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlR3JvdXAlMjBlcSUyMCdhYXJvbm5ld2dyb3VwJyUyMGFuZCUyMHJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcyclMjBhbmQlMjBuYW1lJTIwZXElMjAnVGVzdGluZycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resources?$filter=resourceId%20eq%20'/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Compute/virtualMachines/Testing'&api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZjYjc3ZmEtOGIxNy00ZWFiLTk0OTMtYjY1ZGFjZTk5ODEzL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlSWQlMjBlcSUyMCcvc3Vic2NyaXB0aW9ucy83NmNiNzdmYS04YjE3LTRlYWItOTQ5My1iNjVkYWNlOTk4MTMvcmVzb3VyY2VHcm91cHMvYWFyb25uZXdncm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL1Rlc3RpbmcnJmFwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b85da850-56cd-4175-9b6c-c67e2d916f59"
+ "1bbba44f-136e-4927-8a12-5e4bbc579411"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.28516.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
]
},
"ResponseHeaders": {
@@ -723,16 +723,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11983"
+ "11998"
],
"x-ms-request-id": [
- "b3413004-8581-45a5-9909-2bd6c0d1e2cd"
+ "b32f8359-9fa3-4ab7-a881-90033c83e627"
],
"x-ms-correlation-request-id": [
- "b3413004-8581-45a5-9909-2bd6c0d1e2cd"
+ "b32f8359-9fa3-4ab7-a881-90033c83e627"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200315T071730Z:b3413004-8581-45a5-9909-2bd6c0d1e2cd"
+ "CENTRALUSEUAP:20200327T043636Z:b32f8359-9fa3-4ab7-a881-90033c83e627"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -741,7 +741,7 @@
"nosniff"
],
"Date": [
- "Sun, 15 Mar 2020 07:17:30 GMT"
+ "Fri, 27 Mar 2020 04:36:36 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -757,19 +757,19 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/providers/Microsoft.Support/supportTickets/PowershellScenarioTest404?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZjYjc3ZmEtOGIxNy00ZWFiLTk0OTMtYjY1ZGFjZTk5ODEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3VwcG9ydC9zdXBwb3J0VGlja2V0cy9Qb3dlcnNoZWxsU2NlbmFyaW9UZXN0NDA0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/providers/Microsoft.Support/supportTickets/PowershellScenarioTest4705?api-version=2020-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZjYjc3ZmEtOGIxNy00ZWFiLTk0OTMtYjY1ZGFjZTk5ODEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3VwcG9ydC9zdXBwb3J0VGlja2V0cy9Qb3dlcnNoZWxsU2NlbmFyaW9UZXN0NDcwNT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"test ticket from azure powershell scenario test. please ignore and close\",\r\n \"problemClassificationId\": \"/providers/Microsoft.Support/services/722ccc66-c988-d2ac-1ec6-b7aebc857f2d/problemClassifications/d234fe02-6908-ebff-7fa9-995a81be7e6e\",\r\n \"severity\": \"Minimal\",\r\n \"contactDetails\": {\r\n \"firstName\": \"first\",\r\n \"lastName\": \"last\",\r\n \"preferredContactMethod\": \"Email\",\r\n \"primaryEmailAddress\": \"user@contoso.com\",\r\n \"additionalEmailAddresses\": [\r\n \"user2@contoso.com\"\r\n ],\r\n \"phoneNumber\": \"2222\",\r\n \"preferredTimeZone\": \"Pacific Standard Time\",\r\n \"country\": \"USA\",\r\n \"preferredSupportLanguage\": \"en-US\"\r\n },\r\n \"title\": \"test ticket from azure powershell scenario test. please ignore and close\",\r\n \"serviceId\": \"/providers/Microsoft.Support/services/722ccc66-c988-d2ac-1ec6-b7aebc857f2d\",\r\n \"technicalTicketDetails\": {\r\n \"resourceId\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Compute/virtualMachines/Testing\"\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d9dc8451-82cf-40fc-8402-6a9b9781d0f7"
+ "d34f88cc-c8a7-43f6-827a-881e6895c175"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.28516.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Support.MicrosoftSupportClient/1.0.0.0"
@@ -789,34 +789,34 @@
"no-cache"
],
"Location": [
- "https://centraluseuap.management.azure.com/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/providers/Microsoft.Support/operationResults/4cf70fe3-3cd1-416c-bbed-7764fb7cf87e?api-version=2020-04-01"
+ "https://centraluseuap.management.azure.com/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/providers/Microsoft.Support/operationResults/5ac3c44a-f6c3-4b22-bdf2-a342143d4763?api-version=2020-04-01"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"Azure-AsyncOperation": [
- "https://centraluseuap.management.azure.com/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/providers/Microsoft.Support/operationsStatus/4cf70fe3-3cd1-416c-bbed-7764fb7cf87e?api-version=2020-04-01"
+ "https://centraluseuap.management.azure.com/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/providers/Microsoft.Support/operationsStatus/5ac3c44a-f6c3-4b22-bdf2-a342143d4763?api-version=2020-04-01"
],
"Server": [
"Kestrel"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1199"
],
"x-ms-request-id": [
- "a0bbb4a2-11cc-411b-84b6-13a4b32290c3"
+ "f20d9e5d-1cb4-43d1-b84a-39ecbc6a0490"
],
"x-ms-correlation-request-id": [
- "a0bbb4a2-11cc-411b-84b6-13a4b32290c3"
+ "f20d9e5d-1cb4-43d1-b84a-39ecbc6a0490"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200315T071731Z:a0bbb4a2-11cc-411b-84b6-13a4b32290c3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "CENTRALUSEUAP:20200327T043637Z:f20d9e5d-1cb4-43d1-b84a-39ecbc6a0490"
],
"Date": [
- "Sun, 15 Mar 2020 07:17:31 GMT"
+ "Fri, 27 Mar 2020 04:36:37 GMT"
],
"Expires": [
"-1"
@@ -829,13 +829,13 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/providers/Microsoft.Support/operationsStatus/4cf70fe3-3cd1-416c-bbed-7764fb7cf87e?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZjYjc3ZmEtOGIxNy00ZWFiLTk0OTMtYjY1ZGFjZTk5ODEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3VwcG9ydC9vcGVyYXRpb25zU3RhdHVzLzRjZjcwZmUzLTNjZDEtNDE2Yy1iYmVkLTc3NjRmYjdjZjg3ZT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/providers/Microsoft.Support/operationsStatus/5ac3c44a-f6c3-4b22-bdf2-a342143d4763?api-version=2020-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZjYjc3ZmEtOGIxNy00ZWFiLTk0OTMtYjY1ZGFjZTk5ODEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3VwcG9ydC9vcGVyYXRpb25zU3RhdHVzLzVhYzNjNDRhLWY2YzMtNGIyMi1iZGYyLWEzNDIxNDNkNDc2Mz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.28516.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Support.MicrosoftSupportClient/1.0.0.0"
@@ -849,7 +849,10 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11982"
+ "11997"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -858,19 +861,16 @@
"Kestrel"
],
"x-ms-request-id": [
- "a28e8a21-a2a7-4124-94a3-aad9c46adbea"
+ "163c605f-88d9-4d3a-be40-fbddd4c8c3e0"
],
"x-ms-correlation-request-id": [
- "a28e8a21-a2a7-4124-94a3-aad9c46adbea"
+ "163c605f-88d9-4d3a-be40-fbddd4c8c3e0"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200315T071801Z:a28e8a21-a2a7-4124-94a3-aad9c46adbea"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "CENTRALUSEUAP:20200327T043708Z:163c605f-88d9-4d3a-be40-fbddd4c8c3e0"
],
"Date": [
- "Sun, 15 Mar 2020 07:18:01 GMT"
+ "Fri, 27 Mar 2020 04:37:07 GMT"
],
"Content-Length": [
"212"
@@ -882,17 +882,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/providers/Microsoft.Support/operationsStatus/4cf70fe3-3cd1-416c-bbed-7764fb7cf87e\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"supportTicketCreationWarning\": \"\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/providers/Microsoft.Support/operationsStatus/5ac3c44a-f6c3-4b22-bdf2-a342143d4763\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"supportTicketCreationWarning\": \"\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/providers/Microsoft.Support/supportTickets/PowershellScenarioTest404?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZjYjc3ZmEtOGIxNy00ZWFiLTk0OTMtYjY1ZGFjZTk5ODEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3VwcG9ydC9zdXBwb3J0VGlja2V0cy9Qb3dlcnNoZWxsU2NlbmFyaW9UZXN0NDA0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/providers/Microsoft.Support/supportTickets/PowershellScenarioTest4705?api-version=2020-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZjYjc3ZmEtOGIxNy00ZWFiLTk0OTMtYjY1ZGFjZTk5ODEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3VwcG9ydC9zdXBwb3J0VGlja2V0cy9Qb3dlcnNoZWxsU2NlbmFyaW9UZXN0NDcwNT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.28516.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Support.MicrosoftSupportClient/1.0.0.0"
@@ -906,7 +906,10 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11981"
+ "11996"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -915,22 +918,19 @@
"Kestrel"
],
"x-ms-request-id": [
- "aa992b66-27ae-4f89-9a05-ddb2ec74d4d3"
+ "473c5da7-8f91-49fe-a633-c0c78b8453fc"
],
"x-ms-correlation-request-id": [
- "aa992b66-27ae-4f89-9a05-ddb2ec74d4d3"
+ "473c5da7-8f91-49fe-a633-c0c78b8453fc"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200315T071801Z:aa992b66-27ae-4f89-9a05-ddb2ec74d4d3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "CENTRALUSEUAP:20200327T043709Z:473c5da7-8f91-49fe-a633-c0c78b8453fc"
],
"Date": [
- "Sun, 15 Mar 2020 07:18:01 GMT"
+ "Fri, 27 Mar 2020 04:37:09 GMT"
],
"Content-Length": [
- "1604"
+ "1606"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -939,13 +939,13 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/providers/Microsoft.Support/supportTickets/PowershellScenarioTest404\",\r\n \"name\": \"PowershellScenarioTest404\",\r\n \"type\": \"Microsoft.Support/supportTickets\",\r\n \"properties\": {\r\n \"description\": \"test ticket from azure powershell scenario test. please ignore and close\",\r\n \"problemClassificationId\": \"/providers/Microsoft.Support/services/722ccc66-c988-d2ac-1ec6-b7aebc857f2d/problemClassifications/d234fe02-6908-ebff-7fa9-995a81be7e6e\",\r\n \"problemClassificationDisplayName\": \"Configuration and Setup / NetScaler\",\r\n \"severity\": \"Minimal\",\r\n \"require24X7Response\": false,\r\n \"enrollmentId\": \"\",\r\n \"contactDetails\": {\r\n \"firstName\": \"first\",\r\n \"lastName\": \"last\",\r\n \"preferredContactMethod\": \"Email\",\r\n \"primaryEmailAddress\": \"user@contoso.com\",\r\n \"additionalEmailAddresses\": [\r\n \"user2@contoso.com\"\r\n ],\r\n \"phoneNumber\": \"2222\",\r\n \"preferredTimeZone\": \"Pacific Standard Time\",\r\n \"country\": \"USA\",\r\n \"preferredSupportLanguage\": \"en-US\"\r\n },\r\n \"technicalTicketDetails\": {\r\n \"resourceId\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Compute/virtualMachines/Testing\"\r\n },\r\n \"serviceLevelAgreement\": {\r\n \"startTime\": \"2020-03-16T13:00:00Z\",\r\n \"expirationTime\": \"2020-03-16T17:00:00Z\",\r\n \"slaMinutes\": 240\r\n },\r\n \"supportEngineer\": {},\r\n \"supportPlanType\": \"Premier\",\r\n \"supportTicketId\": \"120031521000096\",\r\n \"title\": \"test ticket from azure powershell scenario test. please ignore and close\",\r\n \"serviceId\": \"/providers/Microsoft.Support/services/722ccc66-c988-d2ac-1ec6-b7aebc857f2d\",\r\n \"serviceDisplayName\": \"Virtual Machine running Citrix\",\r\n \"status\": \"Open\",\r\n \"createdDate\": \"2020-03-15T07:17:37Z\",\r\n \"modifiedDate\": \"2020-03-15T07:17:38Z\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/providers/Microsoft.Support/supportTickets/PowershellScenarioTest4705\",\r\n \"name\": \"PowershellScenarioTest4705\",\r\n \"type\": \"Microsoft.Support/supportTickets\",\r\n \"properties\": {\r\n \"description\": \"test ticket from azure powershell scenario test. please ignore and close\",\r\n \"problemClassificationId\": \"/providers/Microsoft.Support/services/722ccc66-c988-d2ac-1ec6-b7aebc857f2d/problemClassifications/d234fe02-6908-ebff-7fa9-995a81be7e6e\",\r\n \"problemClassificationDisplayName\": \"Configuration and Setup / NetScaler\",\r\n \"severity\": \"Minimal\",\r\n \"require24X7Response\": false,\r\n \"enrollmentId\": \"\",\r\n \"contactDetails\": {\r\n \"firstName\": \"first\",\r\n \"lastName\": \"last\",\r\n \"preferredContactMethod\": \"Email\",\r\n \"primaryEmailAddress\": \"user@contoso.com\",\r\n \"additionalEmailAddresses\": [\r\n \"user2@contoso.com\"\r\n ],\r\n \"phoneNumber\": \"2222\",\r\n \"preferredTimeZone\": \"Pacific Standard Time\",\r\n \"country\": \"USA\",\r\n \"preferredSupportLanguage\": \"en-US\"\r\n },\r\n \"technicalTicketDetails\": {\r\n \"resourceId\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Compute/virtualMachines/Testing\"\r\n },\r\n \"serviceLevelAgreement\": {\r\n \"startTime\": \"2020-03-27T13:00:00Z\",\r\n \"expirationTime\": \"2020-03-27T17:00:00Z\",\r\n \"slaMinutes\": 240\r\n },\r\n \"supportEngineer\": {},\r\n \"supportPlanType\": \"Premier\",\r\n \"supportTicketId\": \"120032721000242\",\r\n \"title\": \"test ticket from azure powershell scenario test. please ignore and close\",\r\n \"serviceId\": \"/providers/Microsoft.Support/services/722ccc66-c988-d2ac-1ec6-b7aebc857f2d\",\r\n \"serviceDisplayName\": \"Virtual Machine running Citrix\",\r\n \"status\": \"Open\",\r\n \"createdDate\": \"2020-03-27T04:36:42Z\",\r\n \"modifiedDate\": \"2020-03-27T04:36:43Z\"\r\n }\r\n}",
"StatusCode": 200
}
],
"Names": {
"": [
- "PowershellScenarioTest404"
+ "PowershellScenarioTest4705"
]
},
"Variables": {
diff --git a/src/Support/Support.Test/SessionRecords/Microsoft.Azure.Commands.Support.Test.ScenarioTests.SupportTicketTests/NewAzSupportTicketTechnicalWithContactObject.json b/src/Support/Support.Test/SessionRecords/Microsoft.Azure.Commands.Support.Test.ScenarioTests.SupportTicketTests/NewAzSupportTicketTechnicalWithContactObject.json
index 0435279eca27..9b67879f0d3f 100644
--- a/src/Support/Support.Test/SessionRecords/Microsoft.Azure.Commands.Support.Test.ScenarioTests.SupportTicketTests/NewAzSupportTicketTechnicalWithContactObject.json
+++ b/src/Support/Support.Test/SessionRecords/Microsoft.Azure.Commands.Support.Test.ScenarioTests.SupportTicketTests/NewAzSupportTicketTechnicalWithContactObject.json
@@ -7,16 +7,16 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3f625780-6168-4b19-85c9-8beb55f7a49a"
+ "c5687b06-2cb0-4e34-b79f-52ad31e0e496"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.28516.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
]
},
"ResponseHeaders": {
@@ -27,16 +27,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11999"
],
"x-ms-request-id": [
- "30c62714-c71c-40b9-b69c-45d15a544a9a"
+ "bc96ee91-5c49-485e-ab72-6e1080635bbc"
],
"x-ms-correlation-request-id": [
- "30c62714-c71c-40b9-b69c-45d15a544a9a"
+ "bc96ee91-5c49-485e-ab72-6e1080635bbc"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200315T071142Z:30c62714-c71c-40b9-b69c-45d15a544a9a"
+ "CENTRALUSEUAP:20200327T043551Z:bc96ee91-5c49-485e-ab72-6e1080635bbc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -45,7 +45,7 @@
"nosniff"
],
"Date": [
- "Sun, 15 Mar 2020 07:11:41 GMT"
+ "Fri, 27 Mar 2020 04:35:51 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -54,10 +54,10 @@
"-1"
],
"Content-Length": [
- "138062"
+ "141080"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/microsoft.alertsManagement/smartDetectorAlertRules/Failure Anomalies - BotHandle_Test22fur434\",\r\n \"name\": \"Failure Anomalies - BotHandle_Test22fur434\",\r\n \"type\": \"microsoft.alertsManagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.AppPlatform/Spring/dfsds\",\r\n \"name\": \"dfsds\",\r\n \"type\": \"Microsoft.AppPlatform/Spring\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.BotService/botServices/BotHandle_Test22\",\r\n \"name\": \"BotHandle_Test22\",\r\n \"type\": \"Microsoft.BotService/botServices\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"sdk\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AARONNEWGROUP/providers/Microsoft.Compute/disks/ibiza-vm_OsDisk_1_108c8b1619e949529c67583013b383a4\",\r\n \"name\": \"ibiza-vm_OsDisk_1_108c8b1619e949529c67583013b383a4\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"location\": \"southindia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AARONNEWGROUP/providers/Microsoft.Compute/disks/Testing_disk1_db14fc3bbb344f169bc8e7aeb41bc081\",\r\n \"name\": \"Testing_disk1_db14fc3bbb344f169bc8e7aeb41bc081\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Compute/virtualMachines/Testing\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AARONNEWGROUP/providers/Microsoft.Compute/disks/VMNotification_OsDisk_1_159ec7beb94a4cc8b0fd42c1dcdfa961\",\r\n \"name\": \"VMNotification_OsDisk_1_159ec7beb94a4cc8b0fd42c1dcdfa961\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Compute/virtualMachines/Testing\",\r\n \"name\": \"Testing\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Compute/virtualMachines/Testing/extensions/BMCCtmAgent\",\r\n \"name\": \"Testing/BMCCtmAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AARONNEWGROUP/providers/Microsoft.Compute/virtualMachines/Testing/extensions/OmsAgentForLinux\",\r\n \"name\": \"Testing/OmsAgentForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/microsoft.insights/components/BotHandle_Test22fur434\",\r\n \"name\": \"BotHandle_Test22fur434\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.BotService/botServices/BotHandle_Test22\": \"Resource\",\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Web/sites/bothandletest22\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Network/networkInterfaces/testing290\",\r\n \"name\": \"testing290\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Network/networkSecurityGroups/Testing-nsg\",\r\n \"name\": \"Testing-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Network/publicIPAddresses/Testing-ip\",\r\n \"name\": \"Testing-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Network/virtualNetworks/aaronnewgroup-vnet\",\r\n \"name\": \"aaronnewgroup-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Sql/servers/qmstesting\",\r\n \"name\": \"qmstesting\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"australiaeast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Sql/servers/qmstesting/databases/master\",\r\n \"name\": \"qmstesting/master\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"sku\": {\r\n \"name\": \"System\",\r\n \"tier\": \"System\",\r\n \"capacity\": 0\r\n },\r\n \"kind\": \"v12.0,system\",\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Sql/servers/qmstesting\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Storage/storageAccounts/aaronnewgroupdiag\",\r\n \"name\": \"aaronnewgroupdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Web/sites/bothandletest22\",\r\n \"name\": \"bothandletest22\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.AppPlatform/Spring/springtest\",\r\n \"name\": \"springtest\",\r\n \"type\": \"Microsoft.AppPlatform/Spring\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.BingMaps/mapApis/BingMapsTest\",\r\n \"name\": \"BingMapsTest\",\r\n \"type\": \"Microsoft.BingMaps/mapApis\",\r\n \"location\": \"westus\",\r\n \"plan\": {\r\n \"name\": \"public1\",\r\n \"promotionCode\": \"\",\r\n \"product\": \"mapapis\",\r\n \"publisher\": \"bingmaps\"\r\n },\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AARONTEST/providers/Microsoft.Compute/disks/TestSubscription_disk1_3be4162706d9460fb7aece2642a719cf\",\r\n \"name\": \"TestSubscription_disk1_3be4162706d9460fb7aece2642a719cf\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Compute/virtualMachines/TestSubscription\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Compute/virtualMachines/TestSubscription\",\r\n \"name\": \"TestSubscription\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AARONTEST/providers/Microsoft.Compute/virtualMachines/TestSubscription/extensions/OmsAgentForLinux\",\r\n \"name\": \"TestSubscription/OmsAgentForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Databricks/workspaces/bricksTest\",\r\n \"name\": \"bricksTest\",\r\n \"type\": \"Microsoft.Databricks/workspaces\",\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Maps/accounts/MapsTestASEP\",\r\n \"name\": \"MapsTestASEP\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"sku\": {\r\n \"name\": \"s1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"global\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Network/networkInterfaces/testsubscription52\",\r\n \"name\": \"testsubscription52\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Network/networkSecurityGroups/TestSubscription-nsg\",\r\n \"name\": \"TestSubscription-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Network/publicIPAddresses/TestSubscription-ip\",\r\n \"name\": \"TestSubscription-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Network/virtualNetworks/AaronTest-vnet\",\r\n \"name\": \"AaronTest-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.PowerBI/workspaceCollections/hcltestpowerbi\",\r\n \"name\": \"hcltestpowerbi\",\r\n \"type\": \"Microsoft.PowerBI/workspaceCollections\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Storage/storageAccounts/aarontestdiag737\",\r\n \"name\": \"aarontestdiag737\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Web/certificates/37E9CED2A6E746C96AE86B921CAF902D8AEA82F4#AaronTest-WestUSwebspace\",\r\n \"name\": \"37E9CED2A6E746C96AE86B921CAF902D8AEA82F4#AaronTest-WestUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Web/certificates/A448339CF032F5FD576825992FD718D167E22D58#AaronTest-CentralUSwebspace\",\r\n \"name\": \"A448339CF032F5FD576825992FD718D167E22D58#AaronTest-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AcisExtensionsResourceGroup/providers/Microsoft.KeyVault/vaults/AllowedAcisExtensions\",\r\n \"name\": \"AllowedAcisExtensions\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AcisExtensionsResourceGroup/providers/Microsoft.KeyVault/vaults/UXAutomationTest\",\r\n \"name\": \"UXAutomationTest\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ACSExtension/providers/Microsoft.DataFactory/factories/FeedbackDataFacv2\",\r\n \"name\": \"FeedbackDataFacv2\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"location\": \"eastus\",\r\n \"identity\": {\r\n \"principalId\": \"a6ee88ee-4b20-4543-853e-323f74c5ff65\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ACSExtension/providers/Microsoft.DBforMySQL/servers/hcltestserver1\",\r\n \"name\": \"hcltestserver1\",\r\n \"type\": \"Microsoft.DBforMySQL/servers\",\r\n \"sku\": {\r\n \"name\": \"MYSQLB50\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 50\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ACSExtension/providers/Microsoft.KeyVault/vaults/AllowedACSExtension\",\r\n \"name\": \"AllowedACSExtension\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ACSExtension/providers/Microsoft.Network/networkInterfaces/hcltestvm294\",\r\n \"name\": \"hcltestvm294\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ACSExtension/providers/Microsoft.Network/networkSecurityGroups/HCLTestVM-nsg\",\r\n \"name\": \"HCLTestVM-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ACSExtension/providers/Microsoft.Network/publicIPAddresses/HCLTestVM-ip\",\r\n \"name\": \"HCLTestVM-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ACSExtension/providers/Microsoft.Network/virtualNetworks/ACSExtension-vnet\",\r\n \"name\": \"ACSExtension-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ACSExtension/providers/Microsoft.Storage/storageAccounts/acsextensiondiag821\",\r\n \"name\": \"acsextensiondiag821\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ACSExtension/providers/Microsoft.Storage/storageAccounts/acsextensiondisks257\",\r\n \"name\": \"acsextensiondisks257\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Akanksha-test/providers/Microsoft.Network/applicationGateways/AppGWTest\",\r\n \"name\": \"AppGWTest\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Akanksha-test/providers/Microsoft.Network/publicIPAddresses/AppGWTest-ip\",\r\n \"name\": \"AppGWTest-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n },\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Akanksha-test/providers/Microsoft.Network/virtualNetworks/Akanksha-test\",\r\n \"name\": \"Akanksha-test\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AKTest/providers/microsoft.cdn/profiles/HCLTestCDN\",\r\n \"name\": \"HCLTestCDN\",\r\n \"type\": \"microsoft.cdn/profiles\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AKTest/providers/microsoft.cdn/profiles/HCLTestCDN/endpoints/HCLTest\",\r\n \"name\": \"HCLTestCDN/HCLTest\",\r\n \"type\": \"microsoft.cdn/profiles/endpoints\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AKTest/providers/Microsoft.ClassicNetwork/virtualNetworks/AKTest\",\r\n \"name\": \"AKTest\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AKTest/providers/Microsoft.Logic/integrationAccounts/HCLTest2\",\r\n \"name\": \"HCLTest2\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AKTest/providers/Microsoft.Logic/integrationAccounts/HCLTestIA2\",\r\n \"name\": \"HCLTestIA2\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AKTest/providers/Microsoft.Logic/integrationAccounts/HCLTestIC\",\r\n \"name\": \"HCLTestIC\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AKTest/providers/Microsoft.Network/dnszones/hcltest.contoso.com\",\r\n \"name\": \"hcltest.contoso.com\",\r\n \"type\": \"Microsoft.Network/dnszones\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AKTest/providers/Microsoft.Storage/storageAccounts/akteststorage\",\r\n \"name\": \"akteststorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/alex-test-ml/providers/Microsoft.Storage/storageAccounts/alextestmlstorage\",\r\n \"name\": \"alextestmlstorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"mlteamAccount\": \"AlexTest\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Alex_test/providers/Microsoft.ClassicStorage/storageAccounts/alexzhangteststorage\",\r\n \"name\": \"alexzhangteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AlexTestVNetRG/providers/Microsoft.Network/privateDnsZones/test-private.com\",\r\n \"name\": \"test-private.com\",\r\n \"type\": \"Microsoft.Network/privateDnsZones\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AlexTestVNetRG/providers/Microsoft.Web/serverFarms/ServicePlan\",\r\n \"name\": \"ServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"P2\",\r\n \"tier\": \"Premium\",\r\n \"size\": \"P2\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/alexzhangtestgroup/providers/Microsoft.KeyVault/vaults/alexzhangTest\",\r\n \"name\": \"alexzhangTest\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/alexzhangtestgroup/providers/Microsoft.KeyVault/vaults/alexzhangtesttwo\",\r\n \"name\": \"alexzhangtesttwo\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/amsheteresourcegroup2/providers/Microsoft.Storage/storageAccounts/amshetestorage2\",\r\n \"name\": \"amshetestorage2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/amshetetestresourcegroup/providers/Microsoft.KeyVault/vaults/amshetetestkv\",\r\n \"name\": \"amshetetestkv\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/amshetetestresourcegroup/providers/Microsoft.Web/serverFarms/myFirstAzureWebappPlan\",\r\n \"name\": \"myFirstAzureWebappPlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"P2\",\r\n \"tier\": \"Premium\",\r\n \"size\": \"P2\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/amshetetestresourcegroup/providers/Microsoft.Web/sites/asmc-ppe-amshete\",\r\n \"name\": \"asmc-ppe-amshete\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/analysisservices/providers/Microsoft.AnalysisServices/servers/analysisservices\",\r\n \"name\": \"analysisservices\",\r\n \"type\": \"Microsoft.AnalysisServices/servers\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Automation/automationAccounts/AshuAutomationAccount\",\r\n \"name\": \"AshuAutomationAccount\",\r\n \"type\": \"Microsoft.Automation/automationAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Automation/automationAccounts/AshuAutomationAccount/runbooks/Get-AzureVMTutorial\",\r\n \"name\": \"AshuAutomationAccount/Get-AzureVMTutorial\",\r\n \"type\": \"Microsoft.Automation/automationAccounts/runbooks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Compute/virtualMachines/GangaTFSVM\",\r\n \"name\": \"GangaTFSVM\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Compute/virtualMachines/GangaTFSVM/extensions/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"name\": \"GangaTFSVM/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-GROUP/providers/Microsoft.Compute/virtualMachines/GangaTFSVM/extensions/MicrosoftMonitoringAgent\",\r\n \"name\": \"GangaTFSVM/MicrosoftMonitoringAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Network/networkInterfaces/demo1linuxvmv230\",\r\n \"name\": \"demo1linuxvmv230\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Network/networkInterfaces/gangatfsvm330\",\r\n \"name\": \"gangatfsvm330\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Network/networkSecurityGroups/ARM-VM-Group-default-NRMS\",\r\n \"name\": \"ARM-VM-Group-default-NRMS\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Creator\": \"Automatically added by NRMS Azure Policy\",\r\n \"NRMS-Info\": \"http://aka.ms/nrms\",\r\n \"NRMS-Version\": \"2019-03-20\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Network/networkSecurityGroups/demo1LinuxVMv2\",\r\n \"name\": \"demo1LinuxVMv2\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Network/networkSecurityGroups/GangaTFSVM\",\r\n \"name\": \"GangaTFSVM\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Network/publicIPAddresses/demo1LinuxVMv2\",\r\n \"name\": \"demo1LinuxVMv2\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Network/publicIPAddresses/GangaTFSVM\",\r\n \"name\": \"GangaTFSVM\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Network/trafficmanagerprofiles/tmtesttast\",\r\n \"name\": \"tmtesttast\",\r\n \"type\": \"Microsoft.Network/trafficmanagerprofiles\",\r\n \"location\": \"global\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Network/virtualNetworks/ARM-VM-Group\",\r\n \"name\": \"ARM-VM-Group\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Storage/storageAccounts/armvmgroup5257\",\r\n \"name\": \"armvmgroup5257\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ashuredhat/providers/microsoft.cdn/profiles/TestCDNStandard\",\r\n \"name\": \"TestCDNStandard\",\r\n \"type\": \"microsoft.cdn/profiles\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ashuredhat/providers/Microsoft.Compute/virtualMachines/AshuRedHat\",\r\n \"name\": \"AshuRedHat\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ashuredhat/providers/Microsoft.Compute/virtualMachines/AshuRedHat/extensions/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"name\": \"AshuRedHat/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ASHUREDHAT/providers/Microsoft.Compute/virtualMachines/AshuRedHat/extensions/OmsAgentForLinux\",\r\n \"name\": \"AshuRedHat/OmsAgentForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ashuredhat/providers/Microsoft.Network/networkInterfaces/ashuredhat792\",\r\n \"name\": \"ashuredhat792\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ashuredhat/providers/Microsoft.Network/networkSecurityGroups/AshuRedHat-nsg\",\r\n \"name\": \"AshuRedHat-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ashuredhat/providers/Microsoft.Network/publicIPAddresses/AshuRedHat-ip\",\r\n \"name\": \"AshuRedHat-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ashuredhat/providers/Microsoft.Network/virtualNetworks/ashuredhat-vnet\",\r\n \"name\": \"ashuredhat-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ashuredhat/providers/Microsoft.Storage/storageAccounts/ashuredhat841\",\r\n \"name\": \"ashuredhat841\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/asmc/providers/Microsoft.KeyVault/vaults/MissionControlKV\",\r\n \"name\": \"MissionControlKV\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/asmc/providers/Microsoft.Storage/storageAccounts/feedback\",\r\n \"name\": \"feedback\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/azalextest/providers/Microsoft.Storage/storageAccounts/azalextest\",\r\n \"name\": \"azalextest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/azsupportrp-vmss-dev/providers/Microsoft.Storage/storageAccounts/azsupportrpvmssdev\",\r\n \"name\": \"azsupportrpvmssdev\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"BlobStorage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AzSupportRPTestAppGateway/providers/Microsoft.Network/publicIPAddresses/AzSupportRPTest-ip\",\r\n \"name\": \"AzSupportRPTest-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/azurecustomerassist/providers/Microsoft.ClassicStorage/storageAccounts/azurecustomerassist\",\r\n \"name\": \"azurecustomerassist\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AzureFunctions-WestUS/providers/Microsoft.Storage/storageAccounts/azurefunctions82331d27\",\r\n \"name\": \"azurefunctions82331d27\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Bernardm_713/providers/Microsoft.Storage/storageAccounts/bernardm7139fa0\",\r\n \"name\": \"bernardm7139fa0\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Bernardmtest2/providers/Microsoft.Storage/storageAccounts/yolkatest\",\r\n \"name\": \"yolkatest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bewon_test/providers/microsoft.media/mediaservices/bewontestmediaservice\",\r\n \"name\": \"bewontestmediaservice\",\r\n \"type\": \"microsoft.media/mediaservices\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bewon_test/providers/Microsoft.Media/mediaservices/bewontestmediaservice/streamingEndpoints/default\",\r\n \"name\": \"bewontestmediaservice/default\",\r\n \"type\": \"Microsoft.Media/mediaservices/streamingEndpoints\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bhavintest/providers/Microsoft.Batch/batchAccounts/casesubmissiontest1\",\r\n \"name\": \"casesubmissiontest1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/BHAVINTEST/providers/Microsoft.Compute/disks/visualstudio_OsDisk_1_11e5480c4f424a02b8d20b53409854d1\",\r\n \"name\": \"visualstudio_OsDisk_1_11e5480c4f424a02b8d20b53409854d1\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bhavintest/providers/Microsoft.Compute/virtualMachines/visualstudio\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bhavintest/providers/Microsoft.Compute/virtualMachines/visualstudio\",\r\n \"name\": \"visualstudio\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bhavintest/providers/Microsoft.Compute/virtualMachines/visualstudio/extensions/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"name\": \"visualstudio/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/BHAVINTEST/providers/Microsoft.Compute/virtualMachines/visualstudio/extensions/MicrosoftMonitoringAgent\",\r\n \"name\": \"visualstudio/MicrosoftMonitoringAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bhavintest/providers/Microsoft.Network/networkInterfaces/visualstudio40\",\r\n \"name\": \"visualstudio40\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bhavintest/providers/Microsoft.Network/networkSecurityGroups/visualstudio-nsg\",\r\n \"name\": \"visualstudio-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bhavintest/providers/Microsoft.Network/publicIPAddresses/visualstudio-ip\",\r\n \"name\": \"visualstudio-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n },\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bhavintest/providers/Microsoft.Network/virtualNetworks/bhavintest-vnet\",\r\n \"name\": \"bhavintest-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bhavintest/providers/Microsoft.Storage/storageAccounts/bhavintestdiag\",\r\n \"name\": \"bhavintestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/buildoutautomation-cosmos/providers/Microsoft.DocumentDB/databaseAccounts/azsupportrp-chat-test\",\r\n \"name\": \"azsupportrp-chat-test\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"defaultExperience\": \"DocumentDB\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/buildoutautomation-dns/providers/Microsoft.Network/dnszones/azsupport-test.msftcloudes.com\",\r\n \"name\": \"azsupport-test.msftcloudes.com\",\r\n \"type\": \"Microsoft.Network/dnszones\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/buildoutautomation-ip/providers/Microsoft.Network/publicIPAddresses/PortalExtAPI-Test\",\r\n \"name\": \"PortalExtAPI-Test\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/buildoutautomation-kv/providers/Microsoft.KeyVault/vaults/AzureSupportRP-Test\",\r\n \"name\": \"AzureSupportRP-Test\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/buildoutautomation-msi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzureSupportRP_Cluster_Test\",\r\n \"name\": \"AzureSupportRP_Cluster_Test\",\r\n \"type\": \"Microsoft.ManagedIdentity/userAssignedIdentities\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/buildoutautomation-sb/providers/Microsoft.ServiceBus/namespaces/AzSupport-Tickets-Test\",\r\n \"name\": \"AzSupport-Tickets-Test\",\r\n \"type\": \"Microsoft.ServiceBus/namespaces\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/buildoutautomation-sb/providers/Microsoft.ServiceBus/namespaces/supportrp-test\",\r\n \"name\": \"supportrp-test\",\r\n \"type\": \"Microsoft.ServiceBus/namespaces\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/buildoutautomation-storage/providers/Microsoft.Storage/storageAccounts/azsupporttempticketstest\",\r\n \"name\": \"azsupporttempticketstest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/buildoutautomation-tm/providers/Microsoft.Network/dnszones/azsupport-test.msftcloudes.com\",\r\n \"name\": \"azsupport-test.msftcloudes.com\",\r\n \"type\": \"Microsoft.Network/dnszones\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/buildoutautomation-tm/providers/Microsoft.Network/trafficmanagerprofiles/azsupportextapi-test\",\r\n \"name\": \"azsupportextapi-test\",\r\n \"type\": \"Microsoft.Network/trafficmanagerprofiles\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CaseSubmissionPwd/providers/Microsoft.KeyVault/vaults/CaseSubmissionPwd\",\r\n \"name\": \"CaseSubmissionPwd\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CaseSubmissionTestContainerRegistry/providers/Microsoft.ContainerRegistry/registries/CaseSubmissionTest\",\r\n \"name\": \"CaseSubmissionTest\",\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"sku\": {\r\n \"name\": \"Managed_Basic\",\r\n \"tier\": \"Managed\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CaseSubmissionUIAutomation/providers/Microsoft.Compute/virtualMachines/CaseSubTestVM\",\r\n \"name\": \"CaseSubTestVM\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CASESUBMISSIONUIAUTOMATION/providers/Microsoft.Compute/virtualMachines/CaseSubTestVM/extensions/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"name\": \"CaseSubTestVM/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CASESUBMISSIONUIAUTOMATION/providers/Microsoft.Compute/virtualMachines/CaseSubTestVM/extensions/MicrosoftMonitoringAgent\",\r\n \"name\": \"CaseSubTestVM/MicrosoftMonitoringAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CaseSubmissionUIAutomation/providers/Microsoft.Network/networkInterfaces/casesubtestvm922\",\r\n \"name\": \"casesubtestvm922\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CaseSubmissionUIAutomation/providers/Microsoft.Network/networkSecurityGroups/CaseSubTestVM-nsg\",\r\n \"name\": \"CaseSubTestVM-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CaseSubmissionUIAutomation/providers/Microsoft.Network/publicIPAddresses/CaseSubTestVM-ip\",\r\n \"name\": \"CaseSubTestVM-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n },\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CaseSubmissionUIAutomation/providers/Microsoft.Network/virtualNetworks/testsupportext-westcentral-vnet\",\r\n \"name\": \"testsupportext-westcentral-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CaseSubmissionUIAutomation/providers/Microsoft.Storage/storageAccounts/testsupportextwestcen405\",\r\n \"name\": \"testsupportextwestcen405\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CaseSubmissionUIAutomation/providers/Microsoft.Storage/storageAccounts/testsupportextwestcen548\",\r\n \"name\": \"testsupportextwestcen548\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CHRIS_DEMO_GROUP/providers/Microsoft.Compute/disks/ChrisCanaryOne_OsDisk_1_bc22f1e44d25435187253753185498ed\",\r\n \"name\": \"ChrisCanaryOne_OsDisk_1_bc22f1e44d25435187253753185498ed\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"sku\": {\r\n \"name\": \"StandardSSD_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Compute/virtualMachines/ChrisCanaryOne\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Demo\": \"Chris\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Compute/virtualMachines/ChrisCanaryOne\",\r\n \"name\": \"ChrisCanaryOne\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Demo\": \"Chris\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Compute/virtualMachines/ChrisCanaryOne/extensions/AzureNetworkWatcherExtension\",\r\n \"name\": \"ChrisCanaryOne/AzureNetworkWatcherExtension\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Compute/virtualMachines/ChrisCanaryOne/extensions/DependencyAgentWindows\",\r\n \"name\": \"ChrisCanaryOne/DependencyAgentWindows\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Demo\": \"Chris\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Compute/virtualMachines/ChrisCanaryOne/extensions/IaaSAntimalware\",\r\n \"name\": \"ChrisCanaryOne/IaaSAntimalware\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Compute/virtualMachines/ChrisCanaryOne/extensions/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"name\": \"ChrisCanaryOne/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Compute/virtualMachines/ChrisCanaryOne/extensions/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"name\": \"ChrisCanaryOne/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Demo\": \"Chris\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Compute/virtualMachines/ChrisCanaryOne/extensions/MMAExtension\",\r\n \"name\": \"ChrisCanaryOne/MMAExtension\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Demo\": \"Chris\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Network/networkInterfaces/chriscanaryone156\",\r\n \"name\": \"chriscanaryone156\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Demo\": \"Chris\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Network/networkSecurityGroups/ChrisCanaryOne-nsg\",\r\n \"name\": \"ChrisCanaryOne-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Demo\": \"Chris\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Network/publicIPAddresses/ChrisCanaryOne-ip\",\r\n \"name\": \"ChrisCanaryOne-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Demo\": \"Chris\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Network/virtualNetworks/Chris_Demo_Group-vnet\",\r\n \"name\": \"Chris_Demo_Group-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Demo\": \"Chris\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Storage/storageAccounts/chrisdemogroupdiag\",\r\n \"name\": \"chrisdemogroupdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Demo\": \"Chris\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CisService-6LZHY5HYMKG7BBUT44RYK6QWHTQHK4X24NC2JQX5TNKLOPECOCQA-West-US/providers/microsoft.storsimple/managers/yanyanTestPhysical\",\r\n \"name\": \"yanyanTestPhysical\",\r\n \"type\": \"microsoft.storsimple/managers\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg\",\r\n \"name\": \"rg-cleanupservice-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg2\",\r\n \"name\": \"rg-cleanupservice-nsg2\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg3\",\r\n \"name\": \"rg-cleanupservice-nsg3\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg4\",\r\n \"name\": \"rg-cleanupservice-nsg4\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southindia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg5\",\r\n \"name\": \"rg-cleanupservice-nsg5\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg6\",\r\n \"name\": \"rg-cleanupservice-nsg6\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg7\",\r\n \"name\": \"rg-cleanupservice-nsg7\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cleanupservice/providers/Microsoft.Web/serverFarms/clnbf53c305-db8a-44fd-bb6c-dd3532fcff01\",\r\n \"name\": \"clnbf53c305-db8a-44fd-bb6c-dd3532fcff01\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cloud-shell-storage-eastus/providers/Microsoft.Storage/storageAccounts/cs276cb77fa8b17x4eabx949\",\r\n \"name\": \"cs276cb77fa8b17x4eabx949\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cloud-shell-storage-southcentralus/providers/Microsoft.Storage/storageAccounts/cs776cb77fa8b17x4eabx949\",\r\n \"name\": \"cs776cb77fa8b17x4eabx949\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs476cb77fa8b17x4eabx949\",\r\n \"name\": \"cs476cb77fa8b17x4eabx949\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CognitiveServiceResourceGroup/providers/Microsoft.CognitiveServices/accounts/Face-ResourceType\",\r\n \"name\": \"Face-ResourceType\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"sku\": {\r\n \"name\": \"F0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CognitiveServiceResourceGroup/providers/Microsoft.CognitiveServices/accounts/LUIS-ResourceType\",\r\n \"name\": \"LUIS-ResourceType\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"sku\": {\r\n \"name\": \"F0\"\r\n },\r\n \"kind\": \"LUIS\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CognitiveServiceResourceGroup/providers/Microsoft.CognitiveServices/accounts/Speech-ResourceType\",\r\n \"name\": \"Speech-ResourceType\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"sku\": {\r\n \"name\": \"F0\"\r\n },\r\n \"kind\": \"SpeechServices\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CONNORTESTRG/providers/Microsoft.Compute/disks/coward-vm_OsDisk_1_ad959705d6e346bd900582e21a44cf98\",\r\n \"name\": \"coward-vm_OsDisk_1_ad959705d6e346bd900582e21a44cf98\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ConnorTestRG/providers/Microsoft.Compute/virtualMachines/coward-vm\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ConnorTestRG/providers/Microsoft.Compute/virtualMachines/coward-vm\",\r\n \"name\": \"coward-vm\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ConnorTestRG/providers/Microsoft.Compute/virtualMachines/coward-vm/extensions/DependencyAgentWindows\",\r\n \"name\": \"coward-vm/DependencyAgentWindows\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CONNORTESTRG/providers/Microsoft.Compute/virtualMachines/coward-vm/extensions/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"name\": \"coward-vm/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CONNORTESTRG/providers/Microsoft.Compute/virtualMachines/coward-vm/extensions/MicrosoftMonitoringAgent\",\r\n \"name\": \"coward-vm/MicrosoftMonitoringAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ConnorTestRG/providers/Microsoft.Network/networkInterfaces/coward-vm384\",\r\n \"name\": \"coward-vm384\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ConnorTestRG/providers/Microsoft.Network/networkSecurityGroups/coward-vm-nsg\",\r\n \"name\": \"coward-vm-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ConnorTestRG/providers/Microsoft.Network/publicIPAddresses/coward-vm-ip\",\r\n \"name\": \"coward-vm-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ConnorTestRG/providers/Microsoft.Network/virtualNetworks/ConnorTestRG-vnet\",\r\n \"name\": \"ConnorTestRG-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ConnorTestRG/providers/Microsoft.Storage/storageAccounts/connortestrgdiag\",\r\n \"name\": \"connortestrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ContosoResourceGroup/providers/Microsoft.KeyVault/vaults/ContosoKVTest\",\r\n \"name\": \"ContosoKVTest\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CSSCEDemo/providers/Microsoft.Network/networkInterfaces/cedemonobootvm724\",\r\n \"name\": \"cedemonobootvm724\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CSSCEDemo/providers/Microsoft.Network/networkSecurityGroups/CEDemoNoBootVM-nsg\",\r\n \"name\": \"CEDemoNoBootVM-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CSSCEDemo/providers/Microsoft.Network/publicIPAddresses/CEDemoNoBootVM-ip\",\r\n \"name\": \"CEDemoNoBootVM-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CSSCEDemo/providers/Microsoft.Network/virtualNetworks/CSSCEDemo-vnet\",\r\n \"name\": \"CSSCEDemo-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CSSCEDemo/providers/Microsoft.Storage/storageAccounts/csscedemo748\",\r\n \"name\": \"csscedemo748\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-MSSolveListener/providers/Microsoft.ClassicNetwork/virtualNetworks/AshuLinux\",\r\n \"name\": \"AshuLinux\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-MSSolveListener/providers/Microsoft.ClassicStorage/storageAccounts/ashulinux\",\r\n \"name\": \"ashulinux\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-MSSolveListener/providers/Microsoft.Compute/virtualMachines/AshuLinuxARM\",\r\n \"name\": \"AshuLinuxARM\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-MSSolveListener/providers/Microsoft.Compute/virtualMachines/AshuLinuxARM/extensions/AzureNetworkWatcherExtension\",\r\n \"name\": \"AshuLinuxARM/AzureNetworkWatcherExtension\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-MSSolveListener/providers/Microsoft.Compute/virtualMachines/AshuLinuxARM/extensions/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"name\": \"AshuLinuxARM/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CURRENT-MSSOLVELISTENER/providers/Microsoft.Compute/virtualMachines/AshuLinuxARM/extensions/OmsAgentForLinux\",\r\n \"name\": \"AshuLinuxARM/OmsAgentForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-MSSolveListener/providers/Microsoft.Network/networkInterfaces/ashulinuxarm736\",\r\n \"name\": \"ashulinuxarm736\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-MSSolveListener/providers/Microsoft.Network/networkSecurityGroups/AshuLinuxARM\",\r\n \"name\": \"AshuLinuxARM\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-MSSolveListener/providers/Microsoft.Network/publicIPAddresses/AshuLinuxARM\",\r\n \"name\": \"AshuLinuxARM\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-MSSolveListener/providers/Microsoft.Network/virtualNetworks/current-MSSolveListener\",\r\n \"name\": \"current-MSSolveListener\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-MSSolveListener/providers/Microsoft.Storage/storageAccounts/currentmssolveliste4191\",\r\n \"name\": \"currentmssolveliste4191\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-support-extension-test/providers/Microsoft.Cache/Redis/secache\",\r\n \"name\": \"secache\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-support-extension-test/providers/Microsoft.RecoveryServices/vaults/test-rsv\",\r\n \"name\": \"test-rsv\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/databricks-rg-bricksTest-xlqwzuzwmmwuu/providers/Microsoft.Network/networkSecurityGroups/workers-sg\",\r\n \"name\": \"workers-sg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"application\": \"databricks\",\r\n \"databricks-environment\": \"true\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/databricks-rg-bricksTest-xlqwzuzwmmwuu/providers/Microsoft.Network/virtualNetworks/workers-vnet\",\r\n \"name\": \"workers-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"application\": \"databricks\",\r\n \"databricks-environment\": \"true\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/databricks-rg-bricksTest-xlqwzuzwmmwuu/providers/Microsoft.Storage/storageAccounts/dbstoragefxjsrm5zj5eby\",\r\n \"name\": \"dbstoragefxjsrm5zj5eby\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"BlobStorage\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"application\": \"databricks\",\r\n \"databricks-environment\": \"true\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/1018group\",\r\n \"name\": \"1018group\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/1020 action group\",\r\n \"name\": \"1020 action group\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/AzSupportChat\",\r\n \"name\": \"AzSupportChat\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/Azure Case Submission\",\r\n \"name\": \"Azure Case Submission\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/Azure Chat Developers\",\r\n \"name\": \"Azure Chat Developers\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/ibiza group\",\r\n \"name\": \"ibiza group\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/ibiza log alert\",\r\n \"name\": \"ibiza log alert\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/Kaitlyn Test\",\r\n \"name\": \"Kaitlyn Test\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/newactiongroup\",\r\n \"name\": \"newactiongroup\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/test2 group\",\r\n \"name\": \"test2 group\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/test3 group\",\r\n \"name\": \"test3 group\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/test4\",\r\n \"name\": \"test4\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/webhookteset\",\r\n \"name\": \"webhookteset\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/activityLogAlerts/demotest\",\r\n \"name\": \"demotest\",\r\n \"type\": \"microsoft.insights/activityLogAlerts\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/activityLogAlerts/jefftest1018\",\r\n \"name\": \"jefftest1018\",\r\n \"type\": \"microsoft.insights/activityLogAlerts\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/activityLogAlerts/test1020new\",\r\n \"name\": \"test1020new\",\r\n \"type\": \"microsoft.insights/activityLogAlerts\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/activityLogAlerts/webhooktest\",\r\n \"name\": \"webhooktest\",\r\n \"type\": \"microsoft.insights/activityLogAlerts\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-EventHub-WestUS/providers/Microsoft.EventHub/namespaces/ibizastoragetesthub\",\r\n \"name\": \"ibizastoragetesthub\",\r\n \"type\": \"Microsoft.EventHub/namespaces\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"EventHub\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ServiceBus-WestEurope/providers/Microsoft.EventHub/namespaces/scopingTestEventHub\",\r\n \"name\": \"scopingTestEventHub\",\r\n \"type\": \"Microsoft.EventHub/namespaces\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"kind\": \"EventHub\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/rtportalvhds8f8pskmnndc8\",\r\n \"name\": \"rtportalvhds8f8pskmnndc8\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/azuresupporttest\",\r\n \"name\": \"azuresupporttest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/currentsupportrp\",\r\n \"name\": \"currentsupportrp\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/dfselfhelpcontent\",\r\n \"name\": \"dfselfhelpcontent\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/dfsesa\",\r\n \"name\": \"dfsesa\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/dfsupportrp\",\r\n \"name\": \"dfsupportrp\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/extensiontest1\",\r\n \"name\": \"extensiontest1\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/mxstore8\",\r\n \"name\": \"mxstore8\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/setest\",\r\n \"name\": \"setest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/supportextension2\",\r\n \"name\": \"supportextension2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dfsupportrpnew\",\r\n \"name\": \"dfsupportrpnew\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Web-WestUS/providers/Microsoft.ClassicNetwork/virtualNetworks/Default-Web-WestUS\",\r\n \"name\": \"Default-Web-WestUS\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultDataFactory/providers/Microsoft.DataFactory/dataFactories/FeedbackDocumentToBlob\",\r\n \"name\": \"FeedbackDocumentToBlob\",\r\n \"type\": \"Microsoft.DataFactory/dataFactories\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-ASE/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-ASE\",\r\n \"name\": \"DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-ASE\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"australiasoutheast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/defaultresourcegroup-ase/providers/Microsoft.OperationsManagement/solutions/SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-ASE)\",\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-ASE)\",\r\n \"type\": \"Microsoft.OperationsManagement/solutions\",\r\n \"location\": \"australiasoutheast\",\r\n \"plan\": {\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-ASE)\",\r\n \"promotionCode\": \"\",\r\n \"product\": \"OMSGallery/SecurityCenterFree\",\r\n \"publisher\": \"Microsoft\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-CIN/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-CIN\",\r\n \"name\": \"DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-CIN\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"centralindia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/defaultresourcegroup-cin/providers/Microsoft.OperationsManagement/solutions/SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-CIN)\",\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-CIN)\",\r\n \"type\": \"Microsoft.OperationsManagement/solutions\",\r\n \"location\": \"centralindia\",\r\n \"plan\": {\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-CIN)\",\r\n \"promotionCode\": \"\",\r\n \"product\": \"OMSGallery/SecurityCenterFree\",\r\n \"publisher\": \"Microsoft\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/defaultresourcegroup-cin/providers/Microsoft.OperationsManagement/solutions/ServiceDesk(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-CIN)\",\r\n \"name\": \"ServiceDesk(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-CIN)\",\r\n \"type\": \"Microsoft.OperationsManagement/solutions\",\r\n \"location\": \"centralindia\",\r\n \"plan\": {\r\n \"name\": \"ServiceDesk(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-CIN)\",\r\n \"promotionCode\": \"\",\r\n \"product\": \"OMSGallery/ServiceDesk\",\r\n \"publisher\": \"Microsoft\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-EUS\",\r\n \"name\": \"DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-EUS\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/defaultresourcegroup-eus/providers/Microsoft.OperationsManagement/solutions/SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-EUS)\",\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-EUS)\",\r\n \"type\": \"Microsoft.OperationsManagement/solutions\",\r\n \"location\": \"eastus\",\r\n \"plan\": {\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-EUS)\",\r\n \"promotionCode\": \"\",\r\n \"product\": \"OMSGallery/SecurityCenterFree\",\r\n \"publisher\": \"Microsoft\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/defaultresourcegroup-eus/providers/Microsoft.OperationsManagement/solutions/ServiceMap(defaultworkspace-76cb77fa-8b17-4eab-9493-b65dace99813-eus)\",\r\n \"name\": \"ServiceMap(defaultworkspace-76cb77fa-8b17-4eab-9493-b65dace99813-eus)\",\r\n \"type\": \"Microsoft.OperationsManagement/solutions\",\r\n \"location\": \"eastus\",\r\n \"plan\": {\r\n \"name\": \"ServiceMap(defaultworkspace-76cb77fa-8b17-4eab-9493-b65dace99813-eus)\",\r\n \"promotionCode\": \"\",\r\n \"product\": \"OMSGallery/ServiceMap\",\r\n \"publisher\": \"Microsoft\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-SCUS/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-SCUS\",\r\n \"name\": \"DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-SCUS\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/defaultresourcegroup-scus/providers/Microsoft.OperationsManagement/solutions/SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-SCUS)\",\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-SCUS)\",\r\n \"type\": \"Microsoft.OperationsManagement/solutions\",\r\n \"location\": \"southcentralus\",\r\n \"plan\": {\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-SCUS)\",\r\n \"promotionCode\": \"\",\r\n \"product\": \"OMSGallery/SecurityCenterFree\",\r\n \"publisher\": \"Microsoft\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DEFAULTRESOURCEGROUP-SEA/providers/Microsoft.Compute/disks/Lavanya-VM1_OsDisk_1_c7f39a99fcbb4a7896a9e2eb0489979a\",\r\n \"name\": \"Lavanya-VM1_OsDisk_1_c7f39a99fcbb4a7896a9e2eb0489979a\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-SEA/providers/Microsoft.Compute/virtualMachines/Lavanya-VM1\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-SEA/providers/Microsoft.Compute/virtualMachines/Lavanya-VM1\",\r\n \"name\": \"Lavanya-VM1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DEFAULTRESOURCEGROUP-SEA/providers/Microsoft.Compute/virtualMachines/Lavanya-VM1/extensions/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"name\": \"Lavanya-VM1/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DEFAULTRESOURCEGROUP-SEA/providers/Microsoft.Compute/virtualMachines/Lavanya-VM1/extensions/MicrosoftMonitoringAgent\",\r\n \"name\": \"Lavanya-VM1/MicrosoftMonitoringAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-SEA/providers/Microsoft.Network/networkInterfaces/lavanya-vm1322\",\r\n \"name\": \"lavanya-vm1322\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-SEA/providers/Microsoft.Network/networkSecurityGroups/Lavanya-VM1-nsg\",\r\n \"name\": \"Lavanya-VM1-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-SEA/providers/Microsoft.Network/publicIPAddresses/Lavanya-VM1-ip\",\r\n \"name\": \"Lavanya-VM1-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-SEA/providers/Microsoft.Network/virtualNetworks/DefaultResourceGroup-SEA-vnet\",\r\n \"name\": \"DefaultResourceGroup-SEA-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-SEA/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-SEA\",\r\n \"name\": \"DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-SEA\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/defaultresourcegroup-sea/providers/Microsoft.OperationsManagement/solutions/SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-SEA)\",\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-SEA)\",\r\n \"type\": \"Microsoft.OperationsManagement/solutions\",\r\n \"location\": \"southeastasia\",\r\n \"plan\": {\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-SEA)\",\r\n \"promotionCode\": \"\",\r\n \"product\": \"OMSGallery/SecurityCenterFree\",\r\n \"publisher\": \"Microsoft\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-SEA/providers/Microsoft.Storage/storageAccounts/defaultresourcegroups235\",\r\n \"name\": \"defaultresourcegroups235\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-WUS2/providers/microsoft.insights/activityLogAlerts/hannahtest\",\r\n \"name\": \"hannahtest\",\r\n \"type\": \"microsoft.insights/activityLogAlerts\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-WUS2/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-WUS2\",\r\n \"name\": \"DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-WUS2\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.OperationsManagement/solutions/SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-WUS2)\",\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-WUS2)\",\r\n \"type\": \"Microsoft.OperationsManagement/solutions\",\r\n \"location\": \"westus2\",\r\n \"plan\": {\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-WUS2)\",\r\n \"promotionCode\": \"\",\r\n \"product\": \"OMSGallery/SecurityCenterFree\",\r\n \"publisher\": \"Microsoft\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/df-deleteagent1/providers/microsoft.insights/autoscalesettings/auto-bf-central\",\r\n \"name\": \"auto-bf-central\",\r\n \"type\": \"microsoft.insights/autoscalesettings\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"$type\": \"Microsoft.WindowsAzure.Management.Common.Storage.CasePreservedDictionary, Microsoft.WindowsAzure.Management.Common.Storage\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/df-SupportRP/providers/microsoft.cdn/profiles/SupportExtensionCdnTest\",\r\n \"name\": \"SupportExtensionCdnTest\",\r\n \"type\": \"microsoft.cdn/profiles\",\r\n \"sku\": {\r\n \"name\": \"Standard_Akamai\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/df-SupportRP/providers/microsoft.cdn/profiles/SupportExtensionCdnTest/endpoints/supportextensioncdn\",\r\n \"name\": \"SupportExtensionCdnTest/supportextensioncdn\",\r\n \"type\": \"microsoft.cdn/profiles/endpoints\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ExtensionHostingGroup/providers/Microsoft.ClassicStorage/storageAccounts/dfexthosting\",\r\n \"name\": \"dfexthosting\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/exthosting/providers/Microsoft.KeyVault/vaults/dfexthostingKeyVault\",\r\n \"name\": \"dfexthostingKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/FlightExpressionTester/providers/Microsoft.Storage/storageAccounts/flightexpressio9030\",\r\n \"name\": \"flightexpressio9030\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/FlightExpressionTester/providers/Microsoft.Web/serverFarms/CentralUSPlan\",\r\n \"name\": \"CentralUSPlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"kind\": \"functionapp\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/microsoft.alertsManagement/smartDetectorAlertRules/Failure Anomalies - xinxintest0572166611\",\r\n \"name\": \"Failure Anomalies - xinxintest0572166611\",\r\n \"type\": \"microsoft.alertsManagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GANESHTEST/providers/Microsoft.Compute/disks/GaneshUbuntu_OsDisk_1_9751be51e2474c1cb9eee8a6f4890fe8\",\r\n \"name\": \"GaneshUbuntu_OsDisk_1_9751be51e2474c1cb9eee8a6f4890fe8\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.Compute/virtualMachines/GaneshUbuntu\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.Compute/virtualMachines/GaneshUbuntu\",\r\n \"name\": \"GaneshUbuntu\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GANESHTEST/providers/Microsoft.Compute/virtualMachines/GaneshUbuntu/extensions/OmsAgentForLinux\",\r\n \"name\": \"GaneshUbuntu/OmsAgentForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.Insights/components/xinxintest0572166611\",\r\n \"name\": \"xinxintest0572166611\",\r\n \"type\": \"Microsoft.Insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.KeyVault/vaults/xinxintest9832480637\",\r\n \"name\": \"xinxintest9832480637\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.MachineLearningServices/workspaces/xinxin-test\",\r\n \"name\": \"xinxin-test\",\r\n \"type\": \"Microsoft.MachineLearningServices/workspaces\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"location\": \"westus\",\r\n \"identity\": {\r\n \"principalId\": \"27c7457b-8fb8-44a8-9221-ca7804440e11\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.Network/networkInterfaces/ganeshubuntu922\",\r\n \"name\": \"ganeshubuntu922\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.Network/networkSecurityGroups/GaneshTest-vnet-default-NRMS\",\r\n \"name\": \"GaneshTest-vnet-default-NRMS\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Creator\": \"Automatically added by NRMS Azure Policy\",\r\n \"NRMS-Info\": \"http://aka.ms/nrms\",\r\n \"NRMS-Version\": \"2019-03-20\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.Network/networkSecurityGroups/GaneshUbuntu-nsg\",\r\n \"name\": \"GaneshUbuntu-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.Network/publicIPAddresses/GaneshUbuntu-ip\",\r\n \"name\": \"GaneshUbuntu-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.Network/virtualNetworks/GaneshTest-vnet\",\r\n \"name\": \"GaneshTest-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.SignalRService/SignalR/bertsignalr\",\r\n \"name\": \"bertsignalr\",\r\n \"type\": \"Microsoft.SignalRService/SignalR\",\r\n \"sku\": {\r\n \"name\": \"Free_F1\",\r\n \"tier\": \"Free\",\r\n \"size\": \"F1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.Storage/storageAccounts/ganeshtestdiag242\",\r\n \"name\": \"ganeshtestdiag242\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.Storage/storageAccounts/xinxintest7688503338\",\r\n \"name\": \"xinxintest7688503338\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/gans-ai-app/providers/microsoft.alertsManagement/smartDetectorAlertRules/Failure Anomalies - Gans-ai-app\",\r\n \"name\": \"Failure Anomalies - Gans-ai-app\",\r\n \"type\": \"microsoft.alertsManagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Gans-ai-app/providers/microsoft.insights/components/chat-ai-app\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Gans-ai-app/providers/microsoft.insights/components/chat-ai-app\",\r\n \"name\": \"chat-ai-app\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Gans-ai-app/providers/Microsoft.Portal/dashboards/baf29335-7647-421d-93d0-f374f565fcbc-dashboard\",\r\n \"name\": \"baf29335-7647-421d-93d0-f374f565fcbc-dashboard\",\r\n \"type\": \"Microsoft.Portal/dashboards\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"hidden-title\": \"chat-ai-app Dashboard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/gans-angular-ai/providers/microsoft.alertsManagement/smartDetectorAlertRules/Failure Anomalies - gans-angular-ai\",\r\n \"name\": \"Failure Anomalies - gans-angular-ai\",\r\n \"type\": \"microsoft.alertsManagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourcegroups/gans-angular-ai/providers/microsoft.insights/components/gans-angular-ai\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/gans-angular-ai/providers/microsoft.insights/components/gans-angular-ai\",\r\n \"name\": \"gans-angular-ai\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GANSUBUNTU/providers/Microsoft.Compute/disks/GansUbuntu_OsDisk_1_9013e7cec0b447a88f471765316f2aab\",\r\n \"name\": \"GansUbuntu_OsDisk_1_9013e7cec0b447a88f471765316f2aab\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/gansubuntu/providers/Microsoft.Compute/virtualMachines/GansUbuntu\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/gansubuntu/providers/Microsoft.Network/networkInterfaces/gansubuntu114\",\r\n \"name\": \"gansubuntu114\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/gansubuntu/providers/Microsoft.Network/networkSecurityGroups/GansUbuntu-nsg\",\r\n \"name\": \"GansUbuntu-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/gansubuntu/providers/Microsoft.Network/publicIPAddresses/GansUbuntu-ip\",\r\n \"name\": \"GansUbuntu-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n },\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/gansubuntu/providers/Microsoft.Network/virtualNetworks/gansubuntu-vnet\",\r\n \"name\": \"gansubuntu-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/gansubuntu/providers/Microsoft.Storage/storageAccounts/gansubuntudiag118\",\r\n \"name\": \"gansubuntudiag118\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/hcltest/providers/Microsoft.ClassicNetwork/virtualNetworks/hcltest\",\r\n \"name\": \"hcltest\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/hcltest/providers/Microsoft.ClassicNetwork/virtualNetworks/hcltest4377\",\r\n \"name\": \"hcltest4377\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/hcltest/providers/Microsoft.ClassicNetwork/virtualNetworks/hcltest5291\",\r\n \"name\": \"hcltest5291\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/hcltest/providers/Microsoft.ClassicStorage/storageAccounts/hcltest2758\",\r\n \"name\": \"hcltest2758\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/HCLTestRG/providers/Microsoft.Sql/servers/testsever\",\r\n \"name\": \"testsever\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/HCLTestRG/providers/Microsoft.Sql/servers/testsever/databases/HCLTestDB\",\r\n \"name\": \"testsever/HCLTestDB\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 50\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/HCLTestRG/providers/Microsoft.Sql/servers/testsever/databases/master\",\r\n \"name\": \"testsever/master\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"sku\": {\r\n \"name\": \"System\",\r\n \"tier\": \"System\",\r\n \"capacity\": 0\r\n },\r\n \"kind\": \"v12.0,system\",\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/HCLTestRG/providers/Microsoft.Sql/servers/testsever\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/hcltestrg/providers/Microsoft.Storage/storageAccounts/sqlvazy6hhakeauluu\",\r\n \"name\": \"sqlvazy6hhakeauluu\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/IbizaKVTestResourceGroup/providers/Microsoft.KeyVault/vaults/SupportExtensionHosting\",\r\n \"name\": \"SupportExtensionHosting\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/IbizaKVTestResourceGroup/providers/Microsoft.KeyVault/vaults/SupportExtensionKV\",\r\n \"name\": \"SupportExtensionKV\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/IoTResourceGroup/providers/Microsoft.Devices/IotHubs/IoTHubNamedTest\",\r\n \"name\": \"IoTHubNamedTest\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/LensCollectorResourceGroup/providers/Microsoft.KeyVault/vaults/cas-azureengsyscasesubmi\",\r\n \"name\": \"cas-azureengsyscasesubmi\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/MachineLearning/providers/Microsoft.MachineLearning/Workspaces/MLWorkspace\",\r\n \"name\": \"MLWorkspace\",\r\n \"type\": \"Microsoft.MachineLearning/Workspaces\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/MachineLearning/providers/Microsoft.Storage/storageAccounts/mlworkspacestorage3\",\r\n \"name\": \"mlworkspacestorage3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Myu-Test/providers/microsoft.alertsmanagement/smartDetectorAlertRules/Failure Anomalies - validationretoolrefactored\",\r\n \"name\": \"Failure Anomalies - validationretoolrefactored\",\r\n \"type\": \"microsoft.alertsmanagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Myu-Test/providers/Microsoft.DocumentDb/databaseAccounts/content-replication-poc\",\r\n \"name\": \"content-replication-poc\",\r\n \"type\": \"Microsoft.DocumentDb/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"defaultExperience\": \"Core (SQL)\",\r\n \"hidden-cosmos-mmspecial\": \"\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Myu-Test/providers/Microsoft.DocumentDb/databaseAccounts/content-replication-poc-airgap\",\r\n \"name\": \"content-replication-poc-airgap\",\r\n \"type\": \"Microsoft.DocumentDb/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"defaultExperience\": \"Core (SQL)\",\r\n \"hidden-cosmos-mmspecial\": \"\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Myu-Test/providers/microsoft.insights/components/validationretoolrefactored\",\r\n \"name\": \"validationretoolrefactored\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Myu-Test/providers/Microsoft.Storage/storageAccounts/contentrepstoragehigh\",\r\n \"name\": \"contentrepstoragehigh\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Myu-Test/providers/Microsoft.Storage/storageAccounts/contentrepstoragelow\",\r\n \"name\": \"contentrepstoragelow\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Myu-Test/providers/Microsoft.Web/sites/validationretoolrefactored\",\r\n \"name\": \"validationretoolrefactored\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/myu-test/providers/Microsoft.Web/sites/validationretoolrefactored/slots/validationretoolrefactored-deployment\",\r\n \"name\": \"validationretoolrefactored/validationretoolrefactored-deployment\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_australiaeast\",\r\n \"name\": \"NetworkWatcher_australiaeast\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_centralus\",\r\n \"name\": \"NetworkWatcher_centralus\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastasia\",\r\n \"name\": \"NetworkWatcher_eastasia\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus\",\r\n \"name\": \"NetworkWatcher_eastus\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_japaneast\",\r\n \"name\": \"NetworkWatcher_japaneast\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"japaneast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southcentralus\",\r\n \"name\": \"NetworkWatcher_southcentralus\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southeastasia\",\r\n \"name\": \"NetworkWatcher_southeastasia\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southindia\",\r\n \"name\": \"NetworkWatcher_southindia\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"southindia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus\",\r\n \"name\": \"NetworkWatcher_westcentralus\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus\",\r\n \"name\": \"NetworkWatcher_westus\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus2\",\r\n \"name\": \"NetworkWatcher_westus2\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/next-support-rp-test/providers/microsoft.insights/autoscalesettings/SupportRPWebRole-Production-next-support-rp-test-next-support-rp-test\",\r\n \"name\": \"SupportRPWebRole-Production-next-support-rp-test-next-support-rp-test\",\r\n \"type\": \"microsoft.insights/autoscalesettings\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/next-support-rp-test/providers/microsoft.classicCompute/domainNames/next-support-rp-test/slots/Production/roles/SupportRPWebRole\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/nikallik/providers/Microsoft.Network/trafficmanagerprofiles/nikalliktest\",\r\n \"name\": \"nikalliktest\",\r\n \"type\": \"Microsoft.Network/trafficmanagerprofiles\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Compute/virtualMachines/OrenRWin2K12VM\",\r\n \"name\": \"OrenRWin2K12VM\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ORENR_DEMO_RG/providers/Microsoft.Compute/virtualMachines/OrenRWin2K12VM/extensions/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"name\": \"OrenRWin2K12VM/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Compute/virtualMachines/OrenRWin2K12VM/extensions/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"name\": \"OrenRWin2K12VM/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ORENR_DEMO_RG/providers/Microsoft.Compute/virtualMachines/OrenRWin2K12VM/extensions/MicrosoftMonitoringAgent\",\r\n \"name\": \"OrenRWin2K12VM/MicrosoftMonitoringAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Network/networkInterfaces/demolinuxjasonz523\",\r\n \"name\": \"demolinuxjasonz523\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Network/networkInterfaces/demowinjasonz510\",\r\n \"name\": \"demowinjasonz510\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Network/networkInterfaces/orenrwin2k12vm74\",\r\n \"name\": \"orenrwin2k12vm74\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Network/networkSecurityGroups/DemoLinuxJasonZ\",\r\n \"name\": \"DemoLinuxJasonZ\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Network/networkSecurityGroups/DemoWinJasonZ\",\r\n \"name\": \"DemoWinJasonZ\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Network/networkSecurityGroups/OrenRWin2K12VM-nsg\",\r\n \"name\": \"OrenRWin2K12VM-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Network/publicIPAddresses/DemoLinuxJasonZ\",\r\n \"name\": \"DemoLinuxJasonZ\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Network/publicIPAddresses/DemoWinJasonZ\",\r\n \"name\": \"DemoWinJasonZ\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Network/publicIPAddresses/OrenRWin2K12VM-ip\",\r\n \"name\": \"OrenRWin2K12VM-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Network/virtualNetworks/OrenR_Demo_RG\",\r\n \"name\": \"OrenR_Demo_RG\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Storage/storageAccounts/orenrdemostg\",\r\n \"name\": \"orenrdemostg\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Storage/storageAccounts/orenrstgwestus\",\r\n \"name\": \"orenrstgwestus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/RoutetableGroup/providers/Microsoft.Network/routeTables/Routetable-v-aarzh\",\r\n \"name\": \"Routetable-v-aarzh\",\r\n \"type\": \"Microsoft.Network/routeTables\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/microsoft.insights/activityLogAlerts/New Advisor recommendations\",\r\n \"name\": \"New Advisor recommendations\",\r\n \"type\": \"microsoft.insights/activityLogAlerts\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/microsoft.insights/alertrules/CPUHigh ServicePlan\",\r\n \"name\": \"CPUHigh ServicePlan\",\r\n \"type\": \"microsoft.insights/alertrules\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourcegroups/scotthit-test/providers/Microsoft.Web/serverfarms/ServicePlan\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/microsoft.insights/alertrules/ForbiddenRequests AshuTestWebApp\",\r\n \"name\": \"ForbiddenRequests AshuTestWebApp\",\r\n \"type\": \"microsoft.insights/alertrules\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Web/sites/AshuTestWebApp\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/microsoft.insights/alertrules/ForbiddenRequests scotthit-test-app\",\r\n \"name\": \"ForbiddenRequests scotthit-test-app\",\r\n \"type\": \"microsoft.insights/alertrules\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Web/sites/scotthit-test-app\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/microsoft.insights/alertrules/LongHttpQueue ServicePlan\",\r\n \"name\": \"LongHttpQueue ServicePlan\",\r\n \"type\": \"microsoft.insights/alertrules\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourcegroups/scotthit-test/providers/Microsoft.Web/serverfarms/ServicePlan\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/microsoft.insights/alertrules/ServerErrors AshuTestWebApp\",\r\n \"name\": \"ServerErrors AshuTestWebApp\",\r\n \"type\": \"microsoft.insights/alertrules\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Web/sites/AshuTestWebApp\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/microsoft.insights/alertrules/ServerErrors scotthit-test-app\",\r\n \"name\": \"ServerErrors scotthit-test-app\",\r\n \"type\": \"microsoft.insights/alertrules\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Web/sites/scotthit-test-app\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/microsoft.insights/autoscalesettings/ServicePlan-scotthit-test\",\r\n \"name\": \"ServicePlan-scotthit-test\",\r\n \"type\": \"microsoft.insights/autoscalesettings\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourcegroups/scotthit-test/providers/Microsoft.Web/serverfarms/ServicePlan\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Sql/servers/scotthit-testdbserver\",\r\n \"name\": \"scotthit-testdbserver\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Sql/servers/scotthit-testdbserver/databases/master\",\r\n \"name\": \"scotthit-testdbserver/master\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 5\r\n },\r\n \"kind\": \"v12.0,system\",\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Sql/servers/scotthit-testdbserver\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Sql/servers/scotthit-testdbserver/databases/scotthit-testdb\",\r\n \"name\": \"scotthit-testdbserver/scotthit-testdb\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 5\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Sql/servers/scotthit-testdbserver/databases/scotthit-testdb_2019-03-02T22-34Z\",\r\n \"name\": \"scotthit-testdbserver/scotthit-testdb_2019-03-02T22-34Z\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 5\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Sql/servers/svenkatserver\",\r\n \"name\": \"svenkatserver\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Sql/servers/svenkatserver/databases/master\",\r\n \"name\": \"svenkatserver/master\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"sku\": {\r\n \"name\": \"System\",\r\n \"tier\": \"System\",\r\n \"capacity\": 0\r\n },\r\n \"kind\": \"v12.0,system\",\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Sql/servers/svenkatserver\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Sql/servers/svenkatserver/databases/stdescriptions\",\r\n \"name\": \"svenkatserver/stdescriptions\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Storage/storageAccounts/sqlvawqan56dvc43wk\",\r\n \"name\": \"sqlvawqan56dvc43wk\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ScottHitScaleset-RG/providers/Microsoft.Compute/virtualMachineScaleSets/scotthith\",\r\n \"name\": \"scotthith\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ScottHitScaleset-RG/providers/Microsoft.Network/loadBalancers/scotthithlb\",\r\n \"name\": \"scotthithlb\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ScottHitScaleset-RG/providers/Microsoft.Network/networkSecurityGroups/SCOTTHITSCALESET-RG-NSG\",\r\n \"name\": \"SCOTTHITSCALESET-RG-NSG\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ScottHitScaleset-RG/providers/Microsoft.Network/publicIPAddresses/scotthithpip\",\r\n \"name\": \"scotthithpip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ScottHitScaleset-RG/providers/Microsoft.Network/virtualNetworks/scotthithvnet\",\r\n \"name\": \"scotthithvnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthitscaleset-rg/providers/Microsoft.Storage/storageAccounts/2pm7ywrqoa5zmscotthithsa\",\r\n \"name\": \"2pm7ywrqoa5zmscotthithsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ScottHitScaleset-RG/providers/Microsoft.Storage/storageAccounts/4ha7jskcn7if2scotthithsa\",\r\n \"name\": \"4ha7jskcn7if2scotthithsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ScottHitScaleset-RG/providers/Microsoft.Storage/storageAccounts/7pru2z2wfyci6scotthithsa\",\r\n \"name\": \"7pru2z2wfyci6scotthithsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ScottHitScaleset-RG/providers/Microsoft.Storage/storageAccounts/kvngadf4zp45cscotthithsa\",\r\n \"name\": \"kvngadf4zp45cscotthithsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ScottHitScaleset-RG/providers/Microsoft.Storage/storageAccounts/wfywgy7r35cycscotthithsa\",\r\n \"name\": \"wfywgy7r35cycscotthithsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/762247eastus\",\r\n \"name\": \"762247eastus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp/providers/Microsoft.Storage/storageAccounts/a5d9685987b1b41c5ab3e5c4\",\r\n \"name\": \"a5d9685987b1b41c5ab3e5c4\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp/providers/Microsoft.Storage/storageAccounts/a9e099bf5ebc64a1ea834931\",\r\n \"name\": \"a9e099bf5ebc64a1ea834931\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp/providers/Microsoft.Storage/storageAccounts/documentdbmover8e62\",\r\n \"name\": \"documentdbmover8e62\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp/providers/Microsoft.Web/serverFarms/CentralUSPlan\",\r\n \"name\": \"CentralUSPlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"kind\": \"functionapp\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp/providers/Microsoft.Web/serverFarms/FunctionApp20180321085841Plan\",\r\n \"name\": \"FunctionApp20180321085841Plan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"Y1\",\r\n \"tier\": \"Dynamic\",\r\n \"size\": \"Y1\",\r\n \"family\": \"Y\",\r\n \"capacity\": 0\r\n },\r\n \"kind\": \"functionapp\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/microsoft.alertsManagement/smartDetectorAlertRules/Failure Anomalies - selfhelpwebtool-dev\",\r\n \"name\": \"Failure Anomalies - selfhelpwebtool-dev\",\r\n \"type\": \"microsoft.alertsManagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/microsoft.insights/components/selfhelpwebtool-dev\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/microsoft.alertsManagement/smartDetectorAlertRules/Failure Anomalies - selfhelpwebtool-elixirstaging\",\r\n \"name\": \"Failure Anomalies - selfhelpwebtool-elixirstaging\",\r\n \"type\": \"microsoft.alertsManagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/Microsoft.ClassicNetwork/virtualNetworks/selfhelp-tool\",\r\n \"name\": \"selfhelp-tool\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/Microsoft.ClassicStorage/storageAccounts/selfhelptool1999\",\r\n \"name\": \"selfhelptool1999\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/Microsoft.CognitiveServices/accounts/Validator-SpellCheck\",\r\n \"name\": \"Validator-SpellCheck\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"Bing.SpellCheck.v7\",\r\n \"location\": \"global\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/microsoft.insights/components/selfhelpwebtool-dev\",\r\n \"name\": \"selfhelpwebtool-dev\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/microsoft.insights/components/selfhelpwebtool-elixirstaging\",\r\n \"name\": \"selfhelpwebtool-elixirstaging\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/Microsoft.Network/trafficmanagerprofiles/selfhelp\",\r\n \"name\": \"selfhelp\",\r\n \"type\": \"Microsoft.Network/trafficmanagerprofiles\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/Microsoft.Storage/storageAccounts/dfexthostingstorage\",\r\n \"name\": \"dfexthostingstorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/Microsoft.Web/sites/selfhelpwebtool-dev\",\r\n \"name\": \"selfhelpwebtool-dev\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/Microsoft.Web/sites/selfhelpwebtool-elixirstaging\",\r\n \"name\": \"selfhelpwebtool-elixirstaging\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool-prod/providers/Microsoft.KeyVault/vaults/selfhelpKeyVault\",\r\n \"name\": \"selfhelpKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool-prod/providers/Microsoft.Web/sites/selfhelp-webtool\",\r\n \"name\": \"selfhelp-webtool\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-related:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AlexTestVNetRG/providers/Microsoft.Web/serverfarms/ServicePlan\": \"empty\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool-prod/providers/Microsoft.Web/sites/selfhelp-webtool/slots/selfhelp-webtool-deploy\",\r\n \"name\": \"selfhelp-webtool/selfhelp-webtool-deploy\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelpcoverage/providers/Microsoft.Storage/storageAccounts/selfhelpcoveragestorage\",\r\n \"name\": \"selfhelpcoveragestorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelpreminderfunction/providers/microsoft.alertsManagement/smartDetectorAlertRules/Failure Anomalies - selfhelpreminderfunction\",\r\n \"name\": \"Failure Anomalies - selfhelpreminderfunction\",\r\n \"type\": \"microsoft.alertsManagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelpreminderfunction/providers/microsoft.insights/components/selfhelpreminderfunction\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelpreminderfunction/providers/microsoft.insights/components/selfhelpreminderfunction\",\r\n \"name\": \"selfhelpreminderfunction\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelpreminderfunction/providers/Microsoft.Web/sites/selfhelpreminderfunction\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelpreminderfunction/providers/Microsoft.Portal/dashboards/15052975-a42b-4da4-919f-f99597d2f8ee-dashboard\",\r\n \"name\": \"15052975-a42b-4da4-919f-f99597d2f8ee-dashboard\",\r\n \"type\": \"Microsoft.Portal/dashboards\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"hidden-title\": \"selfhelpreminderfunction Dashboard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelpreminderfunction/providers/Microsoft.Storage/storageAccounts/selfhelpreminde9ee4\",\r\n \"name\": \"selfhelpreminde9ee4\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelpreminderfunction/providers/Microsoft.Web/serverFarms/CentralUSPlan\",\r\n \"name\": \"CentralUSPlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"kind\": \"functionapp\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/SEStorageKeysGroup/providers/Microsoft.KeyVault/vaults/AKVManagedSA\",\r\n \"name\": \"AKVManagedSA\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/SEStorageKeysGroup/providers/Microsoft.KeyVault/vaults/SEStorageKeysDF\",\r\n \"name\": \"SEStorageKeysDF\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/SEStorageKeysGroup/providers/Microsoft.Storage/storageAccounts/smstoracc\",\r\n \"name\": \"smstoracc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/simon-test-resources/providers/Microsoft.ApiManagement/service/simontestapimanagementservice\",\r\n \"name\": \"simontestapimanagementservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/simon-test-resources/providers/Microsoft.DataBoxEdge/DataBoxEdgeDevices/simon-test-stack-edge\",\r\n \"name\": \"simon-test-stack-edge\",\r\n \"type\": \"Microsoft.DataBoxEdge/DataBoxEdgeDevices\",\r\n \"sku\": {\r\n \"name\": \"Gateway\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/simon-test-resources/providers/Microsoft.DevTestLab/labs/simondevtestlab\",\r\n \"name\": \"simondevtestlab\",\r\n \"type\": \"Microsoft.DevTestLab/labs\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/simon-test-resources/providers/Microsoft.KeyVault/vaults/simondevtestlab6143\",\r\n \"name\": \"simondevtestlab6143\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-DevTestLabs-LabUId\": \"80b8a1a2-c8f5-4d0f-8f46-2708af573aa3\",\r\n \"CreatedBy\": \"DevTestLabs\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/simon-test-resources/providers/Microsoft.Network/virtualNetworks/Dtlsimondevtestlab\",\r\n \"name\": \"Dtlsimondevtestlab\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-DevTestLabs-LabUId\": \"80b8a1a2-c8f5-4d0f-8f46-2708af573aa3\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/simon-test-resources/providers/Microsoft.Storage/storageAccounts/asimondevtestlab4010\",\r\n \"name\": \"asimondevtestlab4010\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-DevTestLabs-LabUId\": \"80b8a1a2-c8f5-4d0f-8f46-2708af573aa3\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/sischleg/providers/microsoft.alertsManagement/smartDetectorAlertRules/Failure Anomalies - simonbottestokobmo\",\r\n \"name\": \"Failure Anomalies - simonbottestokobmo\",\r\n \"type\": \"microsoft.alertsManagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/sischleg/providers/microsoft.insights/components/simonbottestokobmo\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/sischleg/providers/Microsoft.EventHub/namespaces/selfhelpkusto\",\r\n \"name\": \"selfhelpkusto\",\r\n \"type\": \"Microsoft.EventHub/namespaces\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 5\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/sischleg/providers/microsoft.insights/components/simonbottestokobmo\",\r\n \"name\": \"simonbottestokobmo\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/sischleg/providers/Microsoft.BotService/botServices/simonbottest\": \"Resource\",\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/sischleg/providers/Microsoft.Web/sites/simonbottest\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/sischleg/providers/Microsoft.Kusto/clusters/selfhelpkustocluster\",\r\n \"name\": \"selfhelpkustocluster\",\r\n \"type\": \"Microsoft.Kusto/clusters\",\r\n \"sku\": {\r\n \"name\": \"D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/sischleg/providers/Microsoft.Kusto/clusters/testkustotable\",\r\n \"name\": \"testkustotable\",\r\n \"type\": \"Microsoft.Kusto/clusters\",\r\n \"sku\": {\r\n \"name\": \"D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/sischleg/providers/Microsoft.Storage/storageAccounts/simonbottesta1e1\",\r\n \"name\": \"simonbottesta1e1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/smathewTestRG/providers/Microsoft.Logic/workflows/TestLogicApp\",\r\n \"name\": \"TestLogicApp\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/smathewTestRG/providers/Microsoft.Logic/workflows/TestLogicApp-TSG\",\r\n \"name\": \"TestLogicApp-TSG\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/smathewTestRG/providers/Microsoft.Web/connections/dynamicscrmonline\",\r\n \"name\": \"dynamicscrmonline\",\r\n \"type\": \"Microsoft.Web/connections\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/smathewTestRG/providers/Microsoft.Web/connections/kusto\",\r\n \"name\": \"kusto\",\r\n \"type\": \"Microsoft.Web/connections\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/softdeletekeyvault/providers/Microsoft.KeyVault/vaults/softdeletekeyvault\",\r\n \"name\": \"softdeletekeyvault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/SQLVMTest/providers/Microsoft.ClassicNetwork/virtualNetworks/SQLVMTest\",\r\n \"name\": \"SQLVMTest\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/SQLVMTest/providers/Microsoft.Network/networkInterfaces/sqlwindowstest316\",\r\n \"name\": \"sqlwindowstest316\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/SQLVMTest/providers/Microsoft.Network/networkSecurityGroups/SqlWindowsTest\",\r\n \"name\": \"SqlWindowsTest\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/SQLVMTest/providers/Microsoft.Network/publicIPAddresses/SqlWindowsTest\",\r\n \"name\": \"SqlWindowsTest\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/SQLVMTest/providers/Microsoft.Network/virtualNetworks/SQLVMTest\",\r\n \"name\": \"SQLVMTest\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/SQLVMTest/providers/Microsoft.Storage/storageAccounts/sqlvmtest8696\",\r\n \"name\": \"sqlvmtest8696\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/StorageScopingQuestions/providers/Microsoft.Storage/storageAccounts/moderningscopinggeneral\",\r\n \"name\": \"moderningscopinggeneral\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/StorageScopingQuestions/providers/Microsoft.StorSimple/managers/scopingtestStorsimple\",\r\n \"name\": \"scopingtestStorsimple\",\r\n \"type\": \"Microsoft.StorSimple/managers\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/streamanalytics/providers/Microsoft.StreamAnalytics/streamingjobs/streamanalytics\",\r\n \"name\": \"streamanalytics\",\r\n \"type\": \"Microsoft.StreamAnalytics/streamingjobs\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/microsoft.alertsManagement/smartDetectorAlertRules/Failure Anomalies - support-docs\",\r\n \"name\": \"Failure Anomalies - support-docs\",\r\n \"type\": \"microsoft.alertsManagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/microsoft.insights/components/support-docs\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/microsoft.alertsManagement/smartDetectorAlertRules/Failure Anomalies - support-docs-ppe\",\r\n \"name\": \"Failure Anomalies - support-docs-ppe\",\r\n \"type\": \"microsoft.alertsManagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/microsoft.insights/components/support-docs-ppe\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/microsoft.insights/actiongroups/Application Insights Smart Detection\",\r\n \"name\": \"Application Insights Smart Detection\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/microsoft.insights/components/support-docs\",\r\n \"name\": \"support-docs\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/microsoft.insights/components/support-docs-ppe\",\r\n \"name\": \"support-docs-ppe\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/Microsoft.Portal/dashboards/4bd6eb93-14fe-4cb5-addf-e452ea3187a0-dashboard\",\r\n \"name\": \"4bd6eb93-14fe-4cb5-addf-e452ea3187a0-dashboard\",\r\n \"type\": \"Microsoft.Portal/dashboards\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"hidden-title\": \"support-docs Dashboard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/Microsoft.Portal/dashboards/a6516939-e588-4e92-9675-b90c6608ff97-dashboard\",\r\n \"name\": \"a6516939-e588-4e92-9675-b90c6608ff97-dashboard\",\r\n \"type\": \"Microsoft.Portal/dashboards\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"hidden-title\": \"support-docs-ppe Dashboard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/Microsoft.Web/serverFarms/support-docsPlan\",\r\n \"name\": \"support-docsPlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/Microsoft.Web/sites/support-docs\",\r\n \"name\": \"support-docs\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"centralus\",\r\n \"identity\": {\r\n \"principalId\": \"e370fd6e-6932-48b4-a940-2954d4d582d0\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"tags\": {\r\n \"hidden-related:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/Microsoft.Web/serverfarms/support-docsPlan\": \"empty\",\r\n \"hidden-related:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/Microsoft.Web/sites/support-docs/diagnostics/chatRestorationId\": \"b8439da2-964d-4d61-aac9-292bde7c3268\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/Microsoft.Web/sites/support-docs-ppe\",\r\n \"name\": \"support-docs-ppe\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"hidden-related:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/Microsoft.Web/serverfarms/support-docsPlan\": \"empty\",\r\n \"hidden-related:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/Microsoft.Web/sites/support-docs/diagnostics/chatRestorationId\": \"b8439da2-964d-4d61-aac9-292bde7c3268\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/svenkatResourceGroup/providers/Microsoft.Search/searchServices/stpanelsearch\",\r\n \"name\": \"stpanelsearch\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/TestCircuite/providers/Microsoft.Network/expressRouteCircuits/TestCircuite\",\r\n \"name\": \"TestCircuite\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"sku\": {\r\n \"name\": \"Standard_UnlimitedData\",\r\n \"tier\": \"Standard\",\r\n \"family\": \"UnlimitedData\"\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Testing/providers/microsoft.insights/alertrules/ForbiddenRequests AE-TestWebApps-West US\",\r\n \"name\": \"ForbiddenRequests AE-TestWebApps-West US\",\r\n \"type\": \"microsoft.insights/alertrules\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Testing/providers/Microsoft.Web/sites/AE-TestWebApps\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Testing/providers/microsoft.insights/alertrules/ServerErrors AE-TestWebApps-West US\",\r\n \"name\": \"ServerErrors AE-TestWebApps-West US\",\r\n \"type\": \"microsoft.insights/alertrules\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Testing/providers/Microsoft.Web/sites/AE-TestWebApps\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/TestLinuxWebApp1/providers/Microsoft.Web/serverFarms/ServicePlanea4692c1-b80b\",\r\n \"name\": \"ServicePlanea4692c1-b80b\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"linux\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/TestLogicApp/providers/Microsoft.Web/connections/office365\",\r\n \"name\": \"office365\",\r\n \"type\": \"Microsoft.Web/connections\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/TestLogicApp/providers/Microsoft.Web/connections/sql\",\r\n \"name\": \"sql\",\r\n \"type\": \"Microsoft.Web/connections\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/vheshartest/providers/Microsoft.DocumentDb/databaseAccounts/vheshartest\",\r\n \"name\": \"vheshartest\",\r\n \"type\": \"Microsoft.DocumentDb/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"defaultExperience\": \"DocumentDB\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/viclDataLakeTest/providers/Microsoft.DataLakeAnalytics/accounts/vicldatalake\",\r\n \"name\": \"vicldatalake\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/viclDataLakeTest/providers/Microsoft.DataLakeStore/accounts/vicldatalakeadls\",\r\n \"name\": \"vicldatalakeadls\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Compute/virtualMachines/scotthit-vm2\",\r\n \"name\": \"scotthit-vm2\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"DRI\": \"amals@microsoft.com\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTEST/providers/Microsoft.Compute/virtualMachines/scotthit-vm2/extensions/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"name\": \"scotthit-vm2/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Compute/virtualMachines/scotthit-vm2/extensions/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"name\": \"scotthit-vm2/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTEST/providers/Microsoft.Compute/virtualMachines/scotthit-vm2/extensions/MicrosoftMonitoringAgent\",\r\n \"name\": \"scotthit-vm2/MicrosoftMonitoringAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTEST/providers/Microsoft.Compute/virtualMachines/scotthit-vm2/extensions/Monitoring\",\r\n \"name\": \"scotthit-vm2/Monitoring\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Network/networkInterfaces/scotthit-vm284\",\r\n \"name\": \"scotthit-vm284\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Network/networkInterfaces/testvm452\",\r\n \"name\": \"testvm452\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Network/networkSecurityGroups/scotthit-vm2\",\r\n \"name\": \"scotthit-vm2\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Network/networkSecurityGroups/TestVM\",\r\n \"name\": \"TestVM\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Network/networkSecurityGroups/VMTest-default-NRMS\",\r\n \"name\": \"VMTest-default-NRMS\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Creator\": \"Automatically added by NRMS Azure Policy\",\r\n \"NRMS-Info\": \"http://aka.ms/nrms\",\r\n \"NRMS-Version\": \"2019-03-20\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Network/publicIPAddresses/scotthit-vm2\",\r\n \"name\": \"scotthit-vm2\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Network/publicIPAddresses/test_ipaddress\",\r\n \"name\": \"test_ipaddress\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Network/publicIPAddresses/TestVM\",\r\n \"name\": \"TestVM\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Network/virtualNetworks/VMTest\",\r\n \"name\": \"VMTest\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/vmtest/providers/Microsoft.Storage/storageAccounts/vmtest1936\",\r\n \"name\": \"vmtest1936\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/vso-rg-40011d6/providers/Microsoft.VSOnline/plans/vso-plan-westus2\",\r\n \"name\": \"vso-plan-westus2\",\r\n \"type\": \"Microsoft.VSOnline/plans\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/vso-rg-a267084/providers/Microsoft.VSOnline/plans/vso-plan-westus2\",\r\n \"name\": \"vso-plan-westus2\",\r\n \"type\": \"Microsoft.VSOnline/plans\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/wihuatest/providers/Microsoft.KeyVault/vaults/wihua\",\r\n \"name\": \"wihua\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/wihuatest/providers/Microsoft.Storage/storageAccounts/publicreadonlytest\",\r\n \"name\": \"publicreadonlytest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"BlobStorage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/wihuatest/providers/Microsoft.Storage/storageAccounts/storageaccountwihuaa14d\",\r\n \"name\": \"storageaccountwihuaa14d\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/wihuatest/providers/Microsoft.Web/serverFarms/ASP-wihuatest-96fb\",\r\n \"name\": \"ASP-wihuatest-96fb\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"Y1\",\r\n \"tier\": \"Dynamic\",\r\n \"size\": \"Y1\",\r\n \"family\": \"Y\",\r\n \"capacity\": 0\r\n },\r\n \"kind\": \"functionapp\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/wihuatest/providers/Microsoft.Web/sites/cdbtest\",\r\n \"name\": \"cdbtest\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"functionapp\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/WilsonTestGroup/providers/Microsoft.Storage/storageAccounts/test212312test\",\r\n \"name\": \"test212312test\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/WinSQLTest/providers/Microsoft.ClassicNetwork/virtualNetworks/WinSQLTest\",\r\n \"name\": \"WinSQLTest\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/microsoft.alertsManagement/smartDetectorAlertRules/Failure Anomalies - BotHandle_Test22fur434\",\r\n \"name\": \"Failure Anomalies - BotHandle_Test22fur434\",\r\n \"type\": \"microsoft.alertsManagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.AppPlatform/Spring/dfsds\",\r\n \"name\": \"dfsds\",\r\n \"type\": \"Microsoft.AppPlatform/Spring\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.BotService/botServices/BotHandle_Test22\",\r\n \"name\": \"BotHandle_Test22\",\r\n \"type\": \"Microsoft.BotService/botServices\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"sdk\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AARONNEWGROUP/providers/Microsoft.Compute/disks/ibiza-vm_OsDisk_1_108c8b1619e949529c67583013b383a4\",\r\n \"name\": \"ibiza-vm_OsDisk_1_108c8b1619e949529c67583013b383a4\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"location\": \"southindia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AARONNEWGROUP/providers/Microsoft.Compute/disks/Testing_disk1_db14fc3bbb344f169bc8e7aeb41bc081\",\r\n \"name\": \"Testing_disk1_db14fc3bbb344f169bc8e7aeb41bc081\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Compute/virtualMachines/Testing\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AARONNEWGROUP/providers/Microsoft.Compute/disks/VMNotification_OsDisk_1_159ec7beb94a4cc8b0fd42c1dcdfa961\",\r\n \"name\": \"VMNotification_OsDisk_1_159ec7beb94a4cc8b0fd42c1dcdfa961\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Compute/virtualMachines/Testing\",\r\n \"name\": \"Testing\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Compute/virtualMachines/Testing/extensions/BMCCtmAgent\",\r\n \"name\": \"Testing/BMCCtmAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AARONNEWGROUP/providers/Microsoft.Compute/virtualMachines/Testing/extensions/OmsAgentForLinux\",\r\n \"name\": \"Testing/OmsAgentForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/microsoft.insights/components/BotHandle_Test22fur434\",\r\n \"name\": \"BotHandle_Test22fur434\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.BotService/botServices/BotHandle_Test22\": \"Resource\",\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Web/sites/bothandletest22\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Network/networkInterfaces/testing290\",\r\n \"name\": \"testing290\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Network/networkSecurityGroups/Testing-nsg\",\r\n \"name\": \"Testing-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Network/publicIPAddresses/Testing-ip\",\r\n \"name\": \"Testing-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Network/virtualNetworks/aaronnewgroup-vnet\",\r\n \"name\": \"aaronnewgroup-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Sql/servers/qmstesting\",\r\n \"name\": \"qmstesting\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"australiaeast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Sql/servers/qmstesting/databases/master\",\r\n \"name\": \"qmstesting/master\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"sku\": {\r\n \"name\": \"System\",\r\n \"tier\": \"System\",\r\n \"capacity\": 0\r\n },\r\n \"kind\": \"v12.0,system\",\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Sql/servers/qmstesting\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Storage/storageAccounts/aaronnewgroupdiag\",\r\n \"name\": \"aaronnewgroupdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Web/sites/bothandletest22\",\r\n \"name\": \"bothandletest22\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.AppPlatform/Spring/springtest\",\r\n \"name\": \"springtest\",\r\n \"type\": \"Microsoft.AppPlatform/Spring\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.BingMaps/mapApis/BingMapsTest\",\r\n \"name\": \"BingMapsTest\",\r\n \"type\": \"Microsoft.BingMaps/mapApis\",\r\n \"location\": \"westus\",\r\n \"plan\": {\r\n \"name\": \"public1\",\r\n \"promotionCode\": \"\",\r\n \"product\": \"mapapis\",\r\n \"publisher\": \"bingmaps\"\r\n },\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AARONTEST/providers/Microsoft.Compute/disks/TestSubscription_disk1_3be4162706d9460fb7aece2642a719cf\",\r\n \"name\": \"TestSubscription_disk1_3be4162706d9460fb7aece2642a719cf\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Compute/virtualMachines/TestSubscription\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Compute/virtualMachines/TestSubscription\",\r\n \"name\": \"TestSubscription\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AARONTEST/providers/Microsoft.Compute/virtualMachines/TestSubscription/extensions/OmsAgentForLinux\",\r\n \"name\": \"TestSubscription/OmsAgentForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Databricks/workspaces/bricksTest\",\r\n \"name\": \"bricksTest\",\r\n \"type\": \"Microsoft.Databricks/workspaces\",\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Maps/accounts/MapsTestASEP\",\r\n \"name\": \"MapsTestASEP\",\r\n \"type\": \"Microsoft.Maps/accounts\",\r\n \"sku\": {\r\n \"name\": \"s1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"global\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Network/networkInterfaces/testsubscription52\",\r\n \"name\": \"testsubscription52\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Network/networkSecurityGroups/TestSubscription-nsg\",\r\n \"name\": \"TestSubscription-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Network/publicIPAddresses/TestSubscription-ip\",\r\n \"name\": \"TestSubscription-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Network/virtualNetworks/AaronTest-vnet\",\r\n \"name\": \"AaronTest-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.PowerBI/workspaceCollections/hcltestpowerbi\",\r\n \"name\": \"hcltestpowerbi\",\r\n \"type\": \"Microsoft.PowerBI/workspaceCollections\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Storage/storageAccounts/aarontestdiag737\",\r\n \"name\": \"aarontestdiag737\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Web/certificates/37E9CED2A6E746C96AE86B921CAF902D8AEA82F4#AaronTest-WestUSwebspace\",\r\n \"name\": \"37E9CED2A6E746C96AE86B921CAF902D8AEA82F4#AaronTest-WestUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AaronTest/providers/Microsoft.Web/certificates/A448339CF032F5FD576825992FD718D167E22D58#AaronTest-CentralUSwebspace\",\r\n \"name\": \"A448339CF032F5FD576825992FD718D167E22D58#AaronTest-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AcisExtensionsResourceGroup/providers/Microsoft.KeyVault/vaults/AllowedAcisExtensions\",\r\n \"name\": \"AllowedAcisExtensions\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AcisExtensionsResourceGroup/providers/Microsoft.KeyVault/vaults/UXAutomationTest\",\r\n \"name\": \"UXAutomationTest\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ACSExtension/providers/Microsoft.DataFactory/factories/FeedbackDataFacv2\",\r\n \"name\": \"FeedbackDataFacv2\",\r\n \"type\": \"Microsoft.DataFactory/factories\",\r\n \"location\": \"eastus\",\r\n \"identity\": {\r\n \"principalId\": \"a6ee88ee-4b20-4543-853e-323f74c5ff65\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ACSExtension/providers/Microsoft.DBforMySQL/servers/hcltestserver1\",\r\n \"name\": \"hcltestserver1\",\r\n \"type\": \"Microsoft.DBforMySQL/servers\",\r\n \"sku\": {\r\n \"name\": \"MYSQLB50\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 50\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ACSExtension/providers/Microsoft.KeyVault/vaults/AllowedACSExtension\",\r\n \"name\": \"AllowedACSExtension\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ACSExtension/providers/Microsoft.Network/networkInterfaces/hcltestvm294\",\r\n \"name\": \"hcltestvm294\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ACSExtension/providers/Microsoft.Network/networkSecurityGroups/HCLTestVM-nsg\",\r\n \"name\": \"HCLTestVM-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ACSExtension/providers/Microsoft.Network/publicIPAddresses/HCLTestVM-ip\",\r\n \"name\": \"HCLTestVM-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ACSExtension/providers/Microsoft.Network/virtualNetworks/ACSExtension-vnet\",\r\n \"name\": \"ACSExtension-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ACSExtension/providers/Microsoft.Storage/storageAccounts/acsextensiondiag821\",\r\n \"name\": \"acsextensiondiag821\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ACSExtension/providers/Microsoft.Storage/storageAccounts/acsextensiondisks257\",\r\n \"name\": \"acsextensiondisks257\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Akanksha-test/providers/Microsoft.Network/applicationGateways/AppGWTest\",\r\n \"name\": \"AppGWTest\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Akanksha-test/providers/Microsoft.Network/publicIPAddresses/AppGWTest-ip\",\r\n \"name\": \"AppGWTest-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n },\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Akanksha-test/providers/Microsoft.Network/virtualNetworks/Akanksha-test\",\r\n \"name\": \"Akanksha-test\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AKTest/providers/microsoft.cdn/profiles/HCLTestCDN\",\r\n \"name\": \"HCLTestCDN\",\r\n \"type\": \"microsoft.cdn/profiles\",\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AKTest/providers/microsoft.cdn/profiles/HCLTestCDN/endpoints/HCLTest\",\r\n \"name\": \"HCLTestCDN/HCLTest\",\r\n \"type\": \"microsoft.cdn/profiles/endpoints\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AKTest/providers/Microsoft.ClassicNetwork/virtualNetworks/AKTest\",\r\n \"name\": \"AKTest\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AKTest/providers/Microsoft.Logic/integrationAccounts/HCLTest2\",\r\n \"name\": \"HCLTest2\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AKTest/providers/Microsoft.Logic/integrationAccounts/HCLTestIA2\",\r\n \"name\": \"HCLTestIA2\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AKTest/providers/Microsoft.Logic/integrationAccounts/HCLTestIC\",\r\n \"name\": \"HCLTestIC\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AKTest/providers/Microsoft.Network/dnszones/hcltest.contoso.com\",\r\n \"name\": \"hcltest.contoso.com\",\r\n \"type\": \"Microsoft.Network/dnszones\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AKTest/providers/Microsoft.Storage/storageAccounts/akteststorage\",\r\n \"name\": \"akteststorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/alex-test-ml/providers/Microsoft.Storage/storageAccounts/alextestmlstorage\",\r\n \"name\": \"alextestmlstorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"mlteamAccount\": \"AlexTest\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Alex_test/providers/Microsoft.ClassicStorage/storageAccounts/alexzhangteststorage\",\r\n \"name\": \"alexzhangteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AlexTestVNetRG/providers/Microsoft.Network/privateDnsZones/test-private.com\",\r\n \"name\": \"test-private.com\",\r\n \"type\": \"Microsoft.Network/privateDnsZones\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AlexTestVNetRG/providers/Microsoft.Web/serverFarms/ServicePlan\",\r\n \"name\": \"ServicePlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"P2\",\r\n \"tier\": \"Premium\",\r\n \"size\": \"P2\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/alexzhangtestgroup/providers/Microsoft.KeyVault/vaults/alexzhangTest\",\r\n \"name\": \"alexzhangTest\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/alexzhangtestgroup/providers/Microsoft.KeyVault/vaults/alexzhangtesttwo\",\r\n \"name\": \"alexzhangtesttwo\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/amsheteresourcegroup2/providers/Microsoft.Storage/storageAccounts/amshetestorage2\",\r\n \"name\": \"amshetestorage2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/amshetetestresourcegroup/providers/Microsoft.KeyVault/vaults/amshetetestkv\",\r\n \"name\": \"amshetetestkv\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/amshetetestresourcegroup/providers/Microsoft.Web/serverFarms/myFirstAzureWebappPlan\",\r\n \"name\": \"myFirstAzureWebappPlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"P2\",\r\n \"tier\": \"Premium\",\r\n \"size\": \"P2\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/amshetetestresourcegroup/providers/Microsoft.Web/sites/asmc-ppe-amshete\",\r\n \"name\": \"asmc-ppe-amshete\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/analysisservices/providers/Microsoft.AnalysisServices/servers/analysisservices\",\r\n \"name\": \"analysisservices\",\r\n \"type\": \"Microsoft.AnalysisServices/servers\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Automation/automationAccounts/AshuAutomationAccount\",\r\n \"name\": \"AshuAutomationAccount\",\r\n \"type\": \"Microsoft.Automation/automationAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Automation/automationAccounts/AshuAutomationAccount/runbooks/Get-AzureVMTutorial\",\r\n \"name\": \"AshuAutomationAccount/Get-AzureVMTutorial\",\r\n \"type\": \"Microsoft.Automation/automationAccounts/runbooks\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Compute/virtualMachines/GangaTFSVM\",\r\n \"name\": \"GangaTFSVM\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Compute/virtualMachines/GangaTFSVM/extensions/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"name\": \"GangaTFSVM/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-GROUP/providers/Microsoft.Compute/virtualMachines/GangaTFSVM/extensions/MicrosoftMonitoringAgent\",\r\n \"name\": \"GangaTFSVM/MicrosoftMonitoringAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Network/networkInterfaces/demo1linuxvmv230\",\r\n \"name\": \"demo1linuxvmv230\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Network/networkInterfaces/gangatfsvm330\",\r\n \"name\": \"gangatfsvm330\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Network/networkSecurityGroups/ARM-VM-Group-default-NRMS\",\r\n \"name\": \"ARM-VM-Group-default-NRMS\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Creator\": \"Automatically added by NRMS Azure Policy\",\r\n \"NRMS-Info\": \"http://aka.ms/nrms\",\r\n \"NRMS-Version\": \"2019-03-20\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Network/networkSecurityGroups/demo1LinuxVMv2\",\r\n \"name\": \"demo1LinuxVMv2\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Network/networkSecurityGroups/GangaTFSVM\",\r\n \"name\": \"GangaTFSVM\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Network/publicIPAddresses/demo1LinuxVMv2\",\r\n \"name\": \"demo1LinuxVMv2\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Network/publicIPAddresses/GangaTFSVM\",\r\n \"name\": \"GangaTFSVM\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Network/trafficmanagerprofiles/tmtesttast\",\r\n \"name\": \"tmtesttast\",\r\n \"type\": \"Microsoft.Network/trafficmanagerprofiles\",\r\n \"location\": \"global\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Network/virtualNetworks/ARM-VM-Group\",\r\n \"name\": \"ARM-VM-Group\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ARM-VM-Group/providers/Microsoft.Storage/storageAccounts/armvmgroup5257\",\r\n \"name\": \"armvmgroup5257\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ashuredhat/providers/microsoft.cdn/profiles/TestCDNStandard\",\r\n \"name\": \"TestCDNStandard\",\r\n \"type\": \"microsoft.cdn/profiles\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ashuredhat/providers/Microsoft.Compute/virtualMachines/AshuRedHat\",\r\n \"name\": \"AshuRedHat\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ashuredhat/providers/Microsoft.Compute/virtualMachines/AshuRedHat/extensions/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"name\": \"AshuRedHat/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ASHUREDHAT/providers/Microsoft.Compute/virtualMachines/AshuRedHat/extensions/OmsAgentForLinux\",\r\n \"name\": \"AshuRedHat/OmsAgentForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ashuredhat/providers/Microsoft.Network/networkInterfaces/ashuredhat792\",\r\n \"name\": \"ashuredhat792\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ashuredhat/providers/Microsoft.Network/networkSecurityGroups/AshuRedHat-nsg\",\r\n \"name\": \"AshuRedHat-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ashuredhat/providers/Microsoft.Network/publicIPAddresses/AshuRedHat-ip\",\r\n \"name\": \"AshuRedHat-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ashuredhat/providers/Microsoft.Network/virtualNetworks/ashuredhat-vnet\",\r\n \"name\": \"ashuredhat-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ashuredhat/providers/Microsoft.Storage/storageAccounts/ashuredhat841\",\r\n \"name\": \"ashuredhat841\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/asmc/providers/Microsoft.KeyVault/vaults/MissionControlKV\",\r\n \"name\": \"MissionControlKV\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/asmc/providers/Microsoft.Storage/storageAccounts/feedback\",\r\n \"name\": \"feedback\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/azalextest/providers/Microsoft.Storage/storageAccounts/azalextest\",\r\n \"name\": \"azalextest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/azsupportrp-vmss-dev/providers/Microsoft.Storage/storageAccounts/azsupportrpvmssdev\",\r\n \"name\": \"azsupportrpvmssdev\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"BlobStorage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AzSupportRPTestAppGateway/providers/Microsoft.Network/publicIPAddresses/AzSupportRPTest-ip\",\r\n \"name\": \"AzSupportRPTest-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/azurecustomerassist/providers/Microsoft.ClassicStorage/storageAccounts/azurecustomerassist\",\r\n \"name\": \"azurecustomerassist\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AzureFunctions-WestUS/providers/Microsoft.Storage/storageAccounts/azurefunctions82331d27\",\r\n \"name\": \"azurefunctions82331d27\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Bernardm_713/providers/Microsoft.Storage/storageAccounts/bernardm7139fa0\",\r\n \"name\": \"bernardm7139fa0\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Bernardmtest2/providers/Microsoft.Storage/storageAccounts/yolkatest\",\r\n \"name\": \"yolkatest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bewon_test/providers/microsoft.media/mediaservices/bewontestmediaservice\",\r\n \"name\": \"bewontestmediaservice\",\r\n \"type\": \"microsoft.media/mediaservices\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bewon_test/providers/Microsoft.Media/mediaservices/bewontestmediaservice/streamingEndpoints/default\",\r\n \"name\": \"bewontestmediaservice/default\",\r\n \"type\": \"Microsoft.Media/mediaservices/streamingEndpoints\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bhavintest/providers/Microsoft.Batch/batchAccounts/casesubmissiontest1\",\r\n \"name\": \"casesubmissiontest1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/BHAVINTEST/providers/Microsoft.Compute/disks/visualstudio_OsDisk_1_11e5480c4f424a02b8d20b53409854d1\",\r\n \"name\": \"visualstudio_OsDisk_1_11e5480c4f424a02b8d20b53409854d1\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bhavintest/providers/Microsoft.Compute/virtualMachines/visualstudio\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bhavintest/providers/Microsoft.Compute/virtualMachines/visualstudio\",\r\n \"name\": \"visualstudio\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bhavintest/providers/Microsoft.Compute/virtualMachines/visualstudio/extensions/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"name\": \"visualstudio/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/BHAVINTEST/providers/Microsoft.Compute/virtualMachines/visualstudio/extensions/MicrosoftMonitoringAgent\",\r\n \"name\": \"visualstudio/MicrosoftMonitoringAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bhavintest/providers/Microsoft.Network/networkInterfaces/visualstudio40\",\r\n \"name\": \"visualstudio40\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bhavintest/providers/Microsoft.Network/networkSecurityGroups/visualstudio-nsg\",\r\n \"name\": \"visualstudio-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bhavintest/providers/Microsoft.Network/publicIPAddresses/visualstudio-ip\",\r\n \"name\": \"visualstudio-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n },\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bhavintest/providers/Microsoft.Network/virtualNetworks/bhavintest-vnet\",\r\n \"name\": \"bhavintest-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/bhavintest/providers/Microsoft.Storage/storageAccounts/bhavintestdiag\",\r\n \"name\": \"bhavintestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/buildoutautomation-cosmos/providers/Microsoft.DocumentDB/databaseAccounts/azsupportrp-chat-test\",\r\n \"name\": \"azsupportrp-chat-test\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"defaultExperience\": \"DocumentDB\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/buildoutautomation-dns/providers/Microsoft.Network/dnszones/azsupport-test.msftcloudes.com\",\r\n \"name\": \"azsupport-test.msftcloudes.com\",\r\n \"type\": \"Microsoft.Network/dnszones\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/buildoutautomation-ip/providers/Microsoft.Network/publicIPAddresses/PortalExtAPI-Test\",\r\n \"name\": \"PortalExtAPI-Test\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/buildoutautomation-kv/providers/Microsoft.KeyVault/vaults/AzureSupportRP-Test\",\r\n \"name\": \"AzureSupportRP-Test\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/buildoutautomation-msi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzureSupportRP_Cluster_Test\",\r\n \"name\": \"AzureSupportRP_Cluster_Test\",\r\n \"type\": \"Microsoft.ManagedIdentity/userAssignedIdentities\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/buildoutautomation-sb/providers/Microsoft.ServiceBus/namespaces/AzSupport-Tickets-Test\",\r\n \"name\": \"AzSupport-Tickets-Test\",\r\n \"type\": \"Microsoft.ServiceBus/namespaces\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/buildoutautomation-sb/providers/Microsoft.ServiceBus/namespaces/supportrp-test\",\r\n \"name\": \"supportrp-test\",\r\n \"type\": \"Microsoft.ServiceBus/namespaces\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/buildoutautomation-storage/providers/Microsoft.Storage/storageAccounts/azsupporttempticketstest\",\r\n \"name\": \"azsupporttempticketstest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/buildoutautomation-tm/providers/Microsoft.Network/dnszones/azsupport-test.msftcloudes.com\",\r\n \"name\": \"azsupport-test.msftcloudes.com\",\r\n \"type\": \"Microsoft.Network/dnszones\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/buildoutautomation-tm/providers/Microsoft.Network/trafficmanagerprofiles/azsupportextapi-test\",\r\n \"name\": \"azsupportextapi-test\",\r\n \"type\": \"Microsoft.Network/trafficmanagerprofiles\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CaseSubmissionPwd/providers/Microsoft.KeyVault/vaults/CaseSubmissionPwd\",\r\n \"name\": \"CaseSubmissionPwd\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CaseSubmissionTestContainerRegistry/providers/Microsoft.ContainerRegistry/registries/CaseSubmissionTest\",\r\n \"name\": \"CaseSubmissionTest\",\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"sku\": {\r\n \"name\": \"Managed_Basic\",\r\n \"tier\": \"Managed\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CaseSubmissionUIAutomation/providers/Microsoft.Compute/virtualMachines/CaseSubTestVM\",\r\n \"name\": \"CaseSubTestVM\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CASESUBMISSIONUIAUTOMATION/providers/Microsoft.Compute/virtualMachines/CaseSubTestVM/extensions/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"name\": \"CaseSubTestVM/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CASESUBMISSIONUIAUTOMATION/providers/Microsoft.Compute/virtualMachines/CaseSubTestVM/extensions/MicrosoftMonitoringAgent\",\r\n \"name\": \"CaseSubTestVM/MicrosoftMonitoringAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CaseSubmissionUIAutomation/providers/Microsoft.Network/networkInterfaces/casesubtestvm922\",\r\n \"name\": \"casesubtestvm922\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CaseSubmissionUIAutomation/providers/Microsoft.Network/networkSecurityGroups/CaseSubTestVM-nsg\",\r\n \"name\": \"CaseSubTestVM-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CaseSubmissionUIAutomation/providers/Microsoft.Network/publicIPAddresses/CaseSubTestVM-ip\",\r\n \"name\": \"CaseSubTestVM-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n },\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CaseSubmissionUIAutomation/providers/Microsoft.Network/virtualNetworks/testsupportext-westcentral-vnet\",\r\n \"name\": \"testsupportext-westcentral-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CaseSubmissionUIAutomation/providers/Microsoft.Storage/storageAccounts/testsupportextwestcen405\",\r\n \"name\": \"testsupportextwestcen405\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CaseSubmissionUIAutomation/providers/Microsoft.Storage/storageAccounts/testsupportextwestcen548\",\r\n \"name\": \"testsupportextwestcen548\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CHRIS_DEMO_GROUP/providers/Microsoft.Compute/disks/ChrisCanaryOne_OsDisk_1_bc22f1e44d25435187253753185498ed\",\r\n \"name\": \"ChrisCanaryOne_OsDisk_1_bc22f1e44d25435187253753185498ed\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"sku\": {\r\n \"name\": \"StandardSSD_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Compute/virtualMachines/ChrisCanaryOne\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Demo\": \"Chris\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Compute/virtualMachines/ChrisCanaryOne\",\r\n \"name\": \"ChrisCanaryOne\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Demo\": \"Chris\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Compute/virtualMachines/ChrisCanaryOne/extensions/AzureNetworkWatcherExtension\",\r\n \"name\": \"ChrisCanaryOne/AzureNetworkWatcherExtension\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Compute/virtualMachines/ChrisCanaryOne/extensions/DependencyAgentWindows\",\r\n \"name\": \"ChrisCanaryOne/DependencyAgentWindows\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Demo\": \"Chris\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Compute/virtualMachines/ChrisCanaryOne/extensions/IaaSAntimalware\",\r\n \"name\": \"ChrisCanaryOne/IaaSAntimalware\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Compute/virtualMachines/ChrisCanaryOne/extensions/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"name\": \"ChrisCanaryOne/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Compute/virtualMachines/ChrisCanaryOne/extensions/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"name\": \"ChrisCanaryOne/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Demo\": \"Chris\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Compute/virtualMachines/ChrisCanaryOne/extensions/MMAExtension\",\r\n \"name\": \"ChrisCanaryOne/MMAExtension\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Demo\": \"Chris\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Network/networkInterfaces/chriscanaryone156\",\r\n \"name\": \"chriscanaryone156\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Demo\": \"Chris\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Network/networkSecurityGroups/ChrisCanaryOne-nsg\",\r\n \"name\": \"ChrisCanaryOne-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Demo\": \"Chris\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Network/publicIPAddresses/ChrisCanaryOne-ip\",\r\n \"name\": \"ChrisCanaryOne-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Demo\": \"Chris\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Network/virtualNetworks/Chris_Demo_Group-vnet\",\r\n \"name\": \"Chris_Demo_Group-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Demo\": \"Chris\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Chris_Demo_Group/providers/Microsoft.Storage/storageAccounts/chrisdemogroupdiag\",\r\n \"name\": \"chrisdemogroupdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Demo\": \"Chris\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CisService-6LZHY5HYMKG7BBUT44RYK6QWHTQHK4X24NC2JQX5TNKLOPECOCQA-West-US/providers/microsoft.storsimple/managers/yanyanTestPhysical\",\r\n \"name\": \"yanyanTestPhysical\",\r\n \"type\": \"microsoft.storsimple/managers\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg\",\r\n \"name\": \"rg-cleanupservice-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg2\",\r\n \"name\": \"rg-cleanupservice-nsg2\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg3\",\r\n \"name\": \"rg-cleanupservice-nsg3\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg4\",\r\n \"name\": \"rg-cleanupservice-nsg4\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southindia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg5\",\r\n \"name\": \"rg-cleanupservice-nsg5\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg6\",\r\n \"name\": \"rg-cleanupservice-nsg6\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg7\",\r\n \"name\": \"rg-cleanupservice-nsg7\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cleanupservice/providers/Microsoft.Web/serverFarms/clnbf53c305-db8a-44fd-bb6c-dd3532fcff01\",\r\n \"name\": \"clnbf53c305-db8a-44fd-bb6c-dd3532fcff01\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cloud-shell-storage-eastus/providers/Microsoft.Storage/storageAccounts/cs210037ffe93d3617c\",\r\n \"name\": \"cs210037ffe93d3617c\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cloud-shell-storage-eastus/providers/Microsoft.Storage/storageAccounts/cs276cb77fa8b17x4eabx949\",\r\n \"name\": \"cs276cb77fa8b17x4eabx949\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cloud-shell-storage-southcentralus/providers/Microsoft.Storage/storageAccounts/cs7100320004569dd95\",\r\n \"name\": \"cs7100320004569dd95\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cloud-shell-storage-southcentralus/providers/Microsoft.Storage/storageAccounts/cs776cb77fa8b17x4eabx949\",\r\n \"name\": \"cs776cb77fa8b17x4eabx949\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs4100300008f718302\",\r\n \"name\": \"cs4100300008f718302\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs4100320005245dd51\",\r\n \"name\": \"cs4100320005245dd51\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs4100320005c86316a\",\r\n \"name\": \"cs4100320005c86316a\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs4100320006712685e\",\r\n \"name\": \"cs4100320006712685e\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs410037ffead397ef0\",\r\n \"name\": \"cs410037ffead397ef0\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs41003bffda79eede1\",\r\n \"name\": \"cs41003bffda79eede1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs476cb77fa8b17x4eabx949\",\r\n \"name\": \"cs476cb77fa8b17x4eabx949\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CognitiveServiceResourceGroup/providers/Microsoft.CognitiveServices/accounts/Face-ResourceType\",\r\n \"name\": \"Face-ResourceType\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"sku\": {\r\n \"name\": \"F0\"\r\n },\r\n \"kind\": \"Face\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CognitiveServiceResourceGroup/providers/Microsoft.CognitiveServices/accounts/LUIS-ResourceType\",\r\n \"name\": \"LUIS-ResourceType\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"sku\": {\r\n \"name\": \"F0\"\r\n },\r\n \"kind\": \"LUIS\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CognitiveServiceResourceGroup/providers/Microsoft.CognitiveServices/accounts/Speech-ResourceType\",\r\n \"name\": \"Speech-ResourceType\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"sku\": {\r\n \"name\": \"F0\"\r\n },\r\n \"kind\": \"SpeechServices\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CONNORTESTRG/providers/Microsoft.Compute/disks/coward-vm_OsDisk_1_ad959705d6e346bd900582e21a44cf98\",\r\n \"name\": \"coward-vm_OsDisk_1_ad959705d6e346bd900582e21a44cf98\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ConnorTestRG/providers/Microsoft.Compute/virtualMachines/coward-vm\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ConnorTestRG/providers/Microsoft.Compute/virtualMachines/coward-vm\",\r\n \"name\": \"coward-vm\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ConnorTestRG/providers/Microsoft.Compute/virtualMachines/coward-vm/extensions/DependencyAgentWindows\",\r\n \"name\": \"coward-vm/DependencyAgentWindows\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CONNORTESTRG/providers/Microsoft.Compute/virtualMachines/coward-vm/extensions/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"name\": \"coward-vm/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CONNORTESTRG/providers/Microsoft.Compute/virtualMachines/coward-vm/extensions/MicrosoftMonitoringAgent\",\r\n \"name\": \"coward-vm/MicrosoftMonitoringAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ConnorTestRG/providers/Microsoft.Network/networkInterfaces/coward-vm384\",\r\n \"name\": \"coward-vm384\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ConnorTestRG/providers/Microsoft.Network/networkSecurityGroups/coward-vm-nsg\",\r\n \"name\": \"coward-vm-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ConnorTestRG/providers/Microsoft.Network/publicIPAddresses/coward-vm-ip\",\r\n \"name\": \"coward-vm-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ConnorTestRG/providers/Microsoft.Network/virtualNetworks/ConnorTestRG-vnet\",\r\n \"name\": \"ConnorTestRG-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ConnorTestRG/providers/Microsoft.Storage/storageAccounts/connortestrgdiag\",\r\n \"name\": \"connortestrgdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ContosoResourceGroup/providers/Microsoft.KeyVault/vaults/ContosoKVTest\",\r\n \"name\": \"ContosoKVTest\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CSSCEDemo/providers/Microsoft.Network/networkInterfaces/cedemonobootvm724\",\r\n \"name\": \"cedemonobootvm724\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CSSCEDemo/providers/Microsoft.Network/networkSecurityGroups/CEDemoNoBootVM-nsg\",\r\n \"name\": \"CEDemoNoBootVM-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CSSCEDemo/providers/Microsoft.Network/publicIPAddresses/CEDemoNoBootVM-ip\",\r\n \"name\": \"CEDemoNoBootVM-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CSSCEDemo/providers/Microsoft.Network/virtualNetworks/CSSCEDemo-vnet\",\r\n \"name\": \"CSSCEDemo-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CSSCEDemo/providers/Microsoft.Storage/storageAccounts/csscedemo748\",\r\n \"name\": \"csscedemo748\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-MSSolveListener/providers/Microsoft.ClassicNetwork/virtualNetworks/AshuLinux\",\r\n \"name\": \"AshuLinux\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-MSSolveListener/providers/Microsoft.ClassicStorage/storageAccounts/ashulinux\",\r\n \"name\": \"ashulinux\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-MSSolveListener/providers/Microsoft.Compute/virtualMachines/AshuLinuxARM\",\r\n \"name\": \"AshuLinuxARM\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-MSSolveListener/providers/Microsoft.Compute/virtualMachines/AshuLinuxARM/extensions/AzureNetworkWatcherExtension\",\r\n \"name\": \"AshuLinuxARM/AzureNetworkWatcherExtension\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-MSSolveListener/providers/Microsoft.Compute/virtualMachines/AshuLinuxARM/extensions/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"name\": \"AshuLinuxARM/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/CURRENT-MSSOLVELISTENER/providers/Microsoft.Compute/virtualMachines/AshuLinuxARM/extensions/OmsAgentForLinux\",\r\n \"name\": \"AshuLinuxARM/OmsAgentForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-MSSolveListener/providers/Microsoft.Network/networkInterfaces/ashulinuxarm736\",\r\n \"name\": \"ashulinuxarm736\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-MSSolveListener/providers/Microsoft.Network/networkSecurityGroups/AshuLinuxARM\",\r\n \"name\": \"AshuLinuxARM\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-MSSolveListener/providers/Microsoft.Network/publicIPAddresses/AshuLinuxARM\",\r\n \"name\": \"AshuLinuxARM\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-MSSolveListener/providers/Microsoft.Network/virtualNetworks/current-MSSolveListener\",\r\n \"name\": \"current-MSSolveListener\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-MSSolveListener/providers/Microsoft.Storage/storageAccounts/currentmssolveliste4191\",\r\n \"name\": \"currentmssolveliste4191\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-support-extension-test/providers/Microsoft.Cache/Redis/secache\",\r\n \"name\": \"secache\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/current-support-extension-test/providers/Microsoft.RecoveryServices/vaults/test-rsv\",\r\n \"name\": \"test-rsv\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/databricks-rg-bricksTest-xlqwzuzwmmwuu/providers/Microsoft.Network/networkSecurityGroups/workers-sg\",\r\n \"name\": \"workers-sg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"application\": \"databricks\",\r\n \"databricks-environment\": \"true\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/databricks-rg-bricksTest-xlqwzuzwmmwuu/providers/Microsoft.Network/virtualNetworks/workers-vnet\",\r\n \"name\": \"workers-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"application\": \"databricks\",\r\n \"databricks-environment\": \"true\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/databricks-rg-bricksTest-xlqwzuzwmmwuu/providers/Microsoft.Storage/storageAccounts/dbstoragefxjsrm5zj5eby\",\r\n \"name\": \"dbstoragefxjsrm5zj5eby\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"BlobStorage\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"application\": \"databricks\",\r\n \"databricks-environment\": \"true\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/1018group\",\r\n \"name\": \"1018group\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/1020 action group\",\r\n \"name\": \"1020 action group\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/AzSupportChat\",\r\n \"name\": \"AzSupportChat\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/Azure Case Submission\",\r\n \"name\": \"Azure Case Submission\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/Azure Chat Developers\",\r\n \"name\": \"Azure Chat Developers\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/ibiza group\",\r\n \"name\": \"ibiza group\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/ibiza log alert\",\r\n \"name\": \"ibiza log alert\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/Kaitlyn Test\",\r\n \"name\": \"Kaitlyn Test\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/newactiongroup\",\r\n \"name\": \"newactiongroup\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/test2 group\",\r\n \"name\": \"test2 group\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/test3 group\",\r\n \"name\": \"test3 group\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/test4\",\r\n \"name\": \"test4\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/actiongroups/webhookteset\",\r\n \"name\": \"webhookteset\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/activityLogAlerts/demotest\",\r\n \"name\": \"demotest\",\r\n \"type\": \"microsoft.insights/activityLogAlerts\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/activityLogAlerts/jefftest1018\",\r\n \"name\": \"jefftest1018\",\r\n \"type\": \"microsoft.insights/activityLogAlerts\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/activityLogAlerts/test1020new\",\r\n \"name\": \"test1020new\",\r\n \"type\": \"microsoft.insights/activityLogAlerts\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ActivityLogAlerts/providers/microsoft.insights/activityLogAlerts/webhooktest\",\r\n \"name\": \"webhooktest\",\r\n \"type\": \"microsoft.insights/activityLogAlerts\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-EventHub-WestUS/providers/Microsoft.EventHub/namespaces/ibizastoragetesthub\",\r\n \"name\": \"ibizastoragetesthub\",\r\n \"type\": \"Microsoft.EventHub/namespaces\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"EventHub\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-ServiceBus-WestEurope/providers/Microsoft.EventHub/namespaces/scopingTestEventHub\",\r\n \"name\": \"scopingTestEventHub\",\r\n \"type\": \"Microsoft.EventHub/namespaces\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"kind\": \"EventHub\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/rtportalvhds8f8pskmnndc8\",\r\n \"name\": \"rtportalvhds8f8pskmnndc8\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/azuresupporttest\",\r\n \"name\": \"azuresupporttest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/currentsupportrp\",\r\n \"name\": \"currentsupportrp\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/dfselfhelpcontent\",\r\n \"name\": \"dfselfhelpcontent\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/dfsesa\",\r\n \"name\": \"dfsesa\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/dfsupportrp\",\r\n \"name\": \"dfsupportrp\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/extensiontest1\",\r\n \"name\": \"extensiontest1\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/mxstore8\",\r\n \"name\": \"mxstore8\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/setest\",\r\n \"name\": \"setest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/supportextension2\",\r\n \"name\": \"supportextension2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Storage-WestUS/providers/Microsoft.Storage/storageAccounts/dfsupportrpnew\",\r\n \"name\": \"dfsupportrpnew\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Default-Web-WestUS/providers/Microsoft.ClassicNetwork/virtualNetworks/Default-Web-WestUS\",\r\n \"name\": \"Default-Web-WestUS\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultDataFactory/providers/Microsoft.DataFactory/dataFactories/FeedbackDocumentToBlob\",\r\n \"name\": \"FeedbackDocumentToBlob\",\r\n \"type\": \"Microsoft.DataFactory/dataFactories\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-ASE/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-ASE\",\r\n \"name\": \"DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-ASE\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"australiasoutheast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/defaultresourcegroup-ase/providers/Microsoft.OperationsManagement/solutions/SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-ASE)\",\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-ASE)\",\r\n \"type\": \"Microsoft.OperationsManagement/solutions\",\r\n \"location\": \"australiasoutheast\",\r\n \"plan\": {\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-ASE)\",\r\n \"promotionCode\": \"\",\r\n \"product\": \"OMSGallery/SecurityCenterFree\",\r\n \"publisher\": \"Microsoft\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-CIN/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-CIN\",\r\n \"name\": \"DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-CIN\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"centralindia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/defaultresourcegroup-cin/providers/Microsoft.OperationsManagement/solutions/SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-CIN)\",\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-CIN)\",\r\n \"type\": \"Microsoft.OperationsManagement/solutions\",\r\n \"location\": \"centralindia\",\r\n \"plan\": {\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-CIN)\",\r\n \"promotionCode\": \"\",\r\n \"product\": \"OMSGallery/SecurityCenterFree\",\r\n \"publisher\": \"Microsoft\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/defaultresourcegroup-cin/providers/Microsoft.OperationsManagement/solutions/ServiceDesk(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-CIN)\",\r\n \"name\": \"ServiceDesk(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-CIN)\",\r\n \"type\": \"Microsoft.OperationsManagement/solutions\",\r\n \"location\": \"centralindia\",\r\n \"plan\": {\r\n \"name\": \"ServiceDesk(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-CIN)\",\r\n \"promotionCode\": \"\",\r\n \"product\": \"OMSGallery/ServiceDesk\",\r\n \"publisher\": \"Microsoft\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-EUS\",\r\n \"name\": \"DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-EUS\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/defaultresourcegroup-eus/providers/Microsoft.OperationsManagement/solutions/SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-EUS)\",\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-EUS)\",\r\n \"type\": \"Microsoft.OperationsManagement/solutions\",\r\n \"location\": \"eastus\",\r\n \"plan\": {\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-EUS)\",\r\n \"promotionCode\": \"\",\r\n \"product\": \"OMSGallery/SecurityCenterFree\",\r\n \"publisher\": \"Microsoft\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/defaultresourcegroup-eus/providers/Microsoft.OperationsManagement/solutions/ServiceMap(defaultworkspace-76cb77fa-8b17-4eab-9493-b65dace99813-eus)\",\r\n \"name\": \"ServiceMap(defaultworkspace-76cb77fa-8b17-4eab-9493-b65dace99813-eus)\",\r\n \"type\": \"Microsoft.OperationsManagement/solutions\",\r\n \"location\": \"eastus\",\r\n \"plan\": {\r\n \"name\": \"ServiceMap(defaultworkspace-76cb77fa-8b17-4eab-9493-b65dace99813-eus)\",\r\n \"promotionCode\": \"\",\r\n \"product\": \"OMSGallery/ServiceMap\",\r\n \"publisher\": \"Microsoft\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-SCUS/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-SCUS\",\r\n \"name\": \"DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-SCUS\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/defaultresourcegroup-scus/providers/Microsoft.OperationsManagement/solutions/SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-SCUS)\",\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-SCUS)\",\r\n \"type\": \"Microsoft.OperationsManagement/solutions\",\r\n \"location\": \"southcentralus\",\r\n \"plan\": {\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-SCUS)\",\r\n \"promotionCode\": \"\",\r\n \"product\": \"OMSGallery/SecurityCenterFree\",\r\n \"publisher\": \"Microsoft\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DEFAULTRESOURCEGROUP-SEA/providers/Microsoft.Compute/disks/Lavanya-VM1_OsDisk_1_c7f39a99fcbb4a7896a9e2eb0489979a\",\r\n \"name\": \"Lavanya-VM1_OsDisk_1_c7f39a99fcbb4a7896a9e2eb0489979a\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-SEA/providers/Microsoft.Compute/virtualMachines/Lavanya-VM1\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-SEA/providers/Microsoft.Compute/virtualMachines/Lavanya-VM1\",\r\n \"name\": \"Lavanya-VM1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DEFAULTRESOURCEGROUP-SEA/providers/Microsoft.Compute/virtualMachines/Lavanya-VM1/extensions/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"name\": \"Lavanya-VM1/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DEFAULTRESOURCEGROUP-SEA/providers/Microsoft.Compute/virtualMachines/Lavanya-VM1/extensions/MicrosoftMonitoringAgent\",\r\n \"name\": \"Lavanya-VM1/MicrosoftMonitoringAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-SEA/providers/Microsoft.Network/networkInterfaces/lavanya-vm1322\",\r\n \"name\": \"lavanya-vm1322\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-SEA/providers/Microsoft.Network/networkSecurityGroups/Lavanya-VM1-nsg\",\r\n \"name\": \"Lavanya-VM1-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-SEA/providers/Microsoft.Network/publicIPAddresses/Lavanya-VM1-ip\",\r\n \"name\": \"Lavanya-VM1-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-SEA/providers/Microsoft.Network/virtualNetworks/DefaultResourceGroup-SEA-vnet\",\r\n \"name\": \"DefaultResourceGroup-SEA-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-SEA/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-SEA\",\r\n \"name\": \"DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-SEA\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/defaultresourcegroup-sea/providers/Microsoft.OperationsManagement/solutions/SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-SEA)\",\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-SEA)\",\r\n \"type\": \"Microsoft.OperationsManagement/solutions\",\r\n \"location\": \"southeastasia\",\r\n \"plan\": {\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-SEA)\",\r\n \"promotionCode\": \"\",\r\n \"product\": \"OMSGallery/SecurityCenterFree\",\r\n \"publisher\": \"Microsoft\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-SEA/providers/Microsoft.Storage/storageAccounts/defaultresourcegroups235\",\r\n \"name\": \"defaultresourcegroups235\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-WUS2/providers/microsoft.insights/activityLogAlerts/hannahtest\",\r\n \"name\": \"hannahtest\",\r\n \"type\": \"microsoft.insights/activityLogAlerts\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/DefaultResourceGroup-WUS2/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-WUS2\",\r\n \"name\": \"DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-WUS2\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/defaultresourcegroup-wus2/providers/Microsoft.OperationsManagement/solutions/SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-WUS2)\",\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-WUS2)\",\r\n \"type\": \"Microsoft.OperationsManagement/solutions\",\r\n \"location\": \"westus2\",\r\n \"plan\": {\r\n \"name\": \"SecurityCenterFree(DefaultWorkspace-76cb77fa-8b17-4eab-9493-b65dace99813-WUS2)\",\r\n \"promotionCode\": \"\",\r\n \"product\": \"OMSGallery/SecurityCenterFree\",\r\n \"publisher\": \"Microsoft\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/df-deleteagent1/providers/microsoft.insights/autoscalesettings/auto-bf-central\",\r\n \"name\": \"auto-bf-central\",\r\n \"type\": \"microsoft.insights/autoscalesettings\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"$type\": \"Microsoft.WindowsAzure.Management.Common.Storage.CasePreservedDictionary, Microsoft.WindowsAzure.Management.Common.Storage\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/df-SupportRP/providers/microsoft.cdn/profiles/SupportExtensionCdnTest\",\r\n \"name\": \"SupportExtensionCdnTest\",\r\n \"type\": \"microsoft.cdn/profiles\",\r\n \"sku\": {\r\n \"name\": \"Standard_Akamai\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/df-SupportRP/providers/microsoft.cdn/profiles/SupportExtensionCdnTest/endpoints/supportextensioncdn\",\r\n \"name\": \"SupportExtensionCdnTest/supportextensioncdn\",\r\n \"type\": \"microsoft.cdn/profiles/endpoints\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ExtensionHostingGroup/providers/Microsoft.ClassicStorage/storageAccounts/dfexthosting\",\r\n \"name\": \"dfexthosting\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/exthosting/providers/Microsoft.KeyVault/vaults/dfexthostingKeyVault\",\r\n \"name\": \"dfexthostingKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/FlightExpressionTester/providers/Microsoft.Storage/storageAccounts/flightexpressio9030\",\r\n \"name\": \"flightexpressio9030\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/FlightExpressionTester/providers/Microsoft.Web/serverFarms/CentralUSPlan\",\r\n \"name\": \"CentralUSPlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"kind\": \"functionapp\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/microsoft.alertsManagement/smartDetectorAlertRules/Failure Anomalies - xinxintest0572166611\",\r\n \"name\": \"Failure Anomalies - xinxintest0572166611\",\r\n \"type\": \"microsoft.alertsManagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GANESHTEST/providers/Microsoft.Compute/disks/GaneshUbuntu_OsDisk_1_9751be51e2474c1cb9eee8a6f4890fe8\",\r\n \"name\": \"GaneshUbuntu_OsDisk_1_9751be51e2474c1cb9eee8a6f4890fe8\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.Compute/virtualMachines/GaneshUbuntu\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.Compute/virtualMachines/GaneshUbuntu\",\r\n \"name\": \"GaneshUbuntu\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GANESHTEST/providers/Microsoft.Compute/virtualMachines/GaneshUbuntu/extensions/OmsAgentForLinux\",\r\n \"name\": \"GaneshUbuntu/OmsAgentForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.Insights/components/xinxintest0572166611\",\r\n \"name\": \"xinxintest0572166611\",\r\n \"type\": \"Microsoft.Insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.KeyVault/vaults/xinxintest9832480637\",\r\n \"name\": \"xinxintest9832480637\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.MachineLearningServices/workspaces/xinxin-test\",\r\n \"name\": \"xinxin-test\",\r\n \"type\": \"Microsoft.MachineLearningServices/workspaces\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"location\": \"westus\",\r\n \"identity\": {\r\n \"principalId\": \"27c7457b-8fb8-44a8-9221-ca7804440e11\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.Network/networkInterfaces/ganeshubuntu922\",\r\n \"name\": \"ganeshubuntu922\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.Network/networkSecurityGroups/GaneshTest-vnet-default-NRMS\",\r\n \"name\": \"GaneshTest-vnet-default-NRMS\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Creator\": \"Automatically added by NRMS Azure Policy\",\r\n \"NRMS-Info\": \"http://aka.ms/nrms\",\r\n \"NRMS-Version\": \"2019-03-20\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.Network/networkSecurityGroups/GaneshUbuntu-nsg\",\r\n \"name\": \"GaneshUbuntu-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.Network/publicIPAddresses/GaneshUbuntu-ip\",\r\n \"name\": \"GaneshUbuntu-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.Network/virtualNetworks/GaneshTest-vnet\",\r\n \"name\": \"GaneshTest-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.SignalRService/SignalR/bertsignalr\",\r\n \"name\": \"bertsignalr\",\r\n \"type\": \"Microsoft.SignalRService/SignalR\",\r\n \"sku\": {\r\n \"name\": \"Free_F1\",\r\n \"tier\": \"Free\",\r\n \"size\": \"F1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.Storage/storageAccounts/ganeshtestdiag242\",\r\n \"name\": \"ganeshtestdiag242\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GaneshTest/providers/Microsoft.Storage/storageAccounts/xinxintest7688503338\",\r\n \"name\": \"xinxintest7688503338\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/gans-ai-app/providers/microsoft.alertsManagement/smartDetectorAlertRules/Failure Anomalies - Gans-ai-app\",\r\n \"name\": \"Failure Anomalies - Gans-ai-app\",\r\n \"type\": \"microsoft.alertsManagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Gans-ai-app/providers/microsoft.insights/components/chat-ai-app\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Gans-ai-app/providers/microsoft.insights/components/chat-ai-app\",\r\n \"name\": \"chat-ai-app\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Gans-ai-app/providers/Microsoft.Portal/dashboards/baf29335-7647-421d-93d0-f374f565fcbc-dashboard\",\r\n \"name\": \"baf29335-7647-421d-93d0-f374f565fcbc-dashboard\",\r\n \"type\": \"Microsoft.Portal/dashboards\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"hidden-title\": \"chat-ai-app Dashboard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/gans-angular-ai/providers/microsoft.alertsManagement/smartDetectorAlertRules/Failure Anomalies - gans-angular-ai\",\r\n \"name\": \"Failure Anomalies - gans-angular-ai\",\r\n \"type\": \"microsoft.alertsManagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourcegroups/gans-angular-ai/providers/microsoft.insights/components/gans-angular-ai\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/gans-angular-ai/providers/microsoft.insights/components/gans-angular-ai\",\r\n \"name\": \"gans-angular-ai\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/GANSUBUNTU/providers/Microsoft.Compute/disks/GansUbuntu_OsDisk_1_9013e7cec0b447a88f471765316f2aab\",\r\n \"name\": \"GansUbuntu_OsDisk_1_9013e7cec0b447a88f471765316f2aab\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/gansubuntu/providers/Microsoft.Compute/virtualMachines/GansUbuntu\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/gansubuntu/providers/Microsoft.Network/networkInterfaces/gansubuntu114\",\r\n \"name\": \"gansubuntu114\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/gansubuntu/providers/Microsoft.Network/networkSecurityGroups/GansUbuntu-nsg\",\r\n \"name\": \"GansUbuntu-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/gansubuntu/providers/Microsoft.Network/publicIPAddresses/GansUbuntu-ip\",\r\n \"name\": \"GansUbuntu-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n },\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/gansubuntu/providers/Microsoft.Network/virtualNetworks/gansubuntu-vnet\",\r\n \"name\": \"gansubuntu-vnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/gansubuntu/providers/Microsoft.Storage/storageAccounts/gansubuntudiag118\",\r\n \"name\": \"gansubuntudiag118\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/hcltest/providers/Microsoft.ClassicNetwork/virtualNetworks/hcltest\",\r\n \"name\": \"hcltest\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/hcltest/providers/Microsoft.ClassicNetwork/virtualNetworks/hcltest4377\",\r\n \"name\": \"hcltest4377\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/hcltest/providers/Microsoft.ClassicNetwork/virtualNetworks/hcltest5291\",\r\n \"name\": \"hcltest5291\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/hcltest/providers/Microsoft.ClassicStorage/storageAccounts/hcltest2758\",\r\n \"name\": \"hcltest2758\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/HCLTestRG/providers/Microsoft.Sql/servers/testsever\",\r\n \"name\": \"testsever\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/HCLTestRG/providers/Microsoft.Sql/servers/testsever/databases/HCLTestDB\",\r\n \"name\": \"testsever/HCLTestDB\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 50\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/HCLTestRG/providers/Microsoft.Sql/servers/testsever/databases/master\",\r\n \"name\": \"testsever/master\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"sku\": {\r\n \"name\": \"System\",\r\n \"tier\": \"System\",\r\n \"capacity\": 0\r\n },\r\n \"kind\": \"v12.0,system\",\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/HCLTestRG/providers/Microsoft.Sql/servers/testsever\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/hcltestrg/providers/Microsoft.Storage/storageAccounts/sqlvazy6hhakeauluu\",\r\n \"name\": \"sqlvazy6hhakeauluu\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/IbizaKVTestResourceGroup/providers/Microsoft.KeyVault/vaults/SupportExtensionHosting\",\r\n \"name\": \"SupportExtensionHosting\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/IbizaKVTestResourceGroup/providers/Microsoft.KeyVault/vaults/SupportExtensionKV\",\r\n \"name\": \"SupportExtensionKV\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/IoTResourceGroup/providers/Microsoft.Devices/IotHubs/IoTHubNamedTest\",\r\n \"name\": \"IoTHubNamedTest\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/LensCollectorResourceGroup/providers/Microsoft.KeyVault/vaults/cas-azureengsyscasesubmi\",\r\n \"name\": \"cas-azureengsyscasesubmi\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/MachineLearning/providers/Microsoft.MachineLearning/Workspaces/MLWorkspace\",\r\n \"name\": \"MLWorkspace\",\r\n \"type\": \"Microsoft.MachineLearning/Workspaces\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/MachineLearning/providers/Microsoft.Storage/storageAccounts/mlworkspacestorage3\",\r\n \"name\": \"mlworkspacestorage3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Myu-Test/providers/microsoft.alertsmanagement/smartDetectorAlertRules/Failure Anomalies - validationretoolrefactored\",\r\n \"name\": \"Failure Anomalies - validationretoolrefactored\",\r\n \"type\": \"microsoft.alertsmanagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Myu-Test/providers/Microsoft.DocumentDb/databaseAccounts/content-replication-poc\",\r\n \"name\": \"content-replication-poc\",\r\n \"type\": \"Microsoft.DocumentDb/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"defaultExperience\": \"Core (SQL)\",\r\n \"hidden-cosmos-mmspecial\": \"\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Myu-Test/providers/Microsoft.DocumentDb/databaseAccounts/content-replication-poc-airgap\",\r\n \"name\": \"content-replication-poc-airgap\",\r\n \"type\": \"Microsoft.DocumentDb/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"defaultExperience\": \"Core (SQL)\",\r\n \"hidden-cosmos-mmspecial\": \"\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Myu-Test/providers/microsoft.insights/components/validationretoolrefactored\",\r\n \"name\": \"validationretoolrefactored\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Myu-Test/providers/Microsoft.Storage/storageAccounts/contentrepstoragehigh\",\r\n \"name\": \"contentrepstoragehigh\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Myu-Test/providers/Microsoft.Storage/storageAccounts/contentrepstoragelow\",\r\n \"name\": \"contentrepstoragelow\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Myu-Test/providers/Microsoft.Web/sites/validationretoolrefactored\",\r\n \"name\": \"validationretoolrefactored\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/myu-test/providers/Microsoft.Web/sites/validationretoolrefactored/slots/validationretoolrefactored-deployment\",\r\n \"name\": \"validationretoolrefactored/validationretoolrefactored-deployment\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_australiaeast\",\r\n \"name\": \"NetworkWatcher_australiaeast\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_centralus\",\r\n \"name\": \"NetworkWatcher_centralus\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastasia\",\r\n \"name\": \"NetworkWatcher_eastasia\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_eastus\",\r\n \"name\": \"NetworkWatcher_eastus\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_japaneast\",\r\n \"name\": \"NetworkWatcher_japaneast\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"japaneast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southcentralus\",\r\n \"name\": \"NetworkWatcher_southcentralus\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southeastasia\",\r\n \"name\": \"NetworkWatcher_southeastasia\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_southindia\",\r\n \"name\": \"NetworkWatcher_southindia\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"southindia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westcentralus\",\r\n \"name\": \"NetworkWatcher_westcentralus\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus\",\r\n \"name\": \"NetworkWatcher_westus\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_westus2\",\r\n \"name\": \"NetworkWatcher_westus2\",\r\n \"type\": \"Microsoft.Network/networkWatchers\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/next-support-rp-test/providers/microsoft.insights/autoscalesettings/SupportRPWebRole-Production-next-support-rp-test-next-support-rp-test\",\r\n \"name\": \"SupportRPWebRole-Production-next-support-rp-test-next-support-rp-test\",\r\n \"type\": \"microsoft.insights/autoscalesettings\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/next-support-rp-test/providers/microsoft.classicCompute/domainNames/next-support-rp-test/slots/Production/roles/SupportRPWebRole\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/nikallik/providers/Microsoft.Network/trafficmanagerprofiles/nikalliktest\",\r\n \"name\": \"nikalliktest\",\r\n \"type\": \"Microsoft.Network/trafficmanagerprofiles\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Compute/virtualMachines/OrenRWin2K12VM\",\r\n \"name\": \"OrenRWin2K12VM\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ORENR_DEMO_RG/providers/Microsoft.Compute/virtualMachines/OrenRWin2K12VM/extensions/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"name\": \"OrenRWin2K12VM/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Compute/virtualMachines/OrenRWin2K12VM/extensions/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"name\": \"OrenRWin2K12VM/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ORENR_DEMO_RG/providers/Microsoft.Compute/virtualMachines/OrenRWin2K12VM/extensions/MicrosoftMonitoringAgent\",\r\n \"name\": \"OrenRWin2K12VM/MicrosoftMonitoringAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Network/networkInterfaces/demolinuxjasonz523\",\r\n \"name\": \"demolinuxjasonz523\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Network/networkInterfaces/demowinjasonz510\",\r\n \"name\": \"demowinjasonz510\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Network/networkInterfaces/orenrwin2k12vm74\",\r\n \"name\": \"orenrwin2k12vm74\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Network/networkSecurityGroups/DemoLinuxJasonZ\",\r\n \"name\": \"DemoLinuxJasonZ\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Network/networkSecurityGroups/DemoWinJasonZ\",\r\n \"name\": \"DemoWinJasonZ\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Network/networkSecurityGroups/OrenRWin2K12VM-nsg\",\r\n \"name\": \"OrenRWin2K12VM-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Network/publicIPAddresses/DemoLinuxJasonZ\",\r\n \"name\": \"DemoLinuxJasonZ\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Network/publicIPAddresses/DemoWinJasonZ\",\r\n \"name\": \"DemoWinJasonZ\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Network/publicIPAddresses/OrenRWin2K12VM-ip\",\r\n \"name\": \"OrenRWin2K12VM-ip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Network/virtualNetworks/OrenR_Demo_RG\",\r\n \"name\": \"OrenR_Demo_RG\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Storage/storageAccounts/orenrdemostg\",\r\n \"name\": \"orenrdemostg\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/OrenR_Demo_RG/providers/Microsoft.Storage/storageAccounts/orenrstgwestus\",\r\n \"name\": \"orenrstgwestus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/RoutetableGroup/providers/Microsoft.Network/routeTables/Routetable-v-aarzh\",\r\n \"name\": \"Routetable-v-aarzh\",\r\n \"type\": \"Microsoft.Network/routeTables\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/microsoft.insights/activityLogAlerts/New Advisor recommendations\",\r\n \"name\": \"New Advisor recommendations\",\r\n \"type\": \"microsoft.insights/activityLogAlerts\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/microsoft.insights/alertrules/CPUHigh ServicePlan\",\r\n \"name\": \"CPUHigh ServicePlan\",\r\n \"type\": \"microsoft.insights/alertrules\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourcegroups/scotthit-test/providers/Microsoft.Web/serverfarms/ServicePlan\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/microsoft.insights/alertrules/ForbiddenRequests AshuTestWebApp\",\r\n \"name\": \"ForbiddenRequests AshuTestWebApp\",\r\n \"type\": \"microsoft.insights/alertrules\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Web/sites/AshuTestWebApp\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/microsoft.insights/alertrules/ForbiddenRequests scotthit-test-app\",\r\n \"name\": \"ForbiddenRequests scotthit-test-app\",\r\n \"type\": \"microsoft.insights/alertrules\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Web/sites/scotthit-test-app\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/microsoft.insights/alertrules/LongHttpQueue ServicePlan\",\r\n \"name\": \"LongHttpQueue ServicePlan\",\r\n \"type\": \"microsoft.insights/alertrules\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourcegroups/scotthit-test/providers/Microsoft.Web/serverfarms/ServicePlan\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/microsoft.insights/alertrules/ServerErrors AshuTestWebApp\",\r\n \"name\": \"ServerErrors AshuTestWebApp\",\r\n \"type\": \"microsoft.insights/alertrules\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Web/sites/AshuTestWebApp\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/microsoft.insights/alertrules/ServerErrors scotthit-test-app\",\r\n \"name\": \"ServerErrors scotthit-test-app\",\r\n \"type\": \"microsoft.insights/alertrules\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Web/sites/scotthit-test-app\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/microsoft.insights/autoscalesettings/ServicePlan-scotthit-test\",\r\n \"name\": \"ServicePlan-scotthit-test\",\r\n \"type\": \"microsoft.insights/autoscalesettings\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourcegroups/scotthit-test/providers/Microsoft.Web/serverfarms/ServicePlan\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Sql/servers/scotthit-testdbserver\",\r\n \"name\": \"scotthit-testdbserver\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Sql/servers/scotthit-testdbserver/databases/master\",\r\n \"name\": \"scotthit-testdbserver/master\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"sku\": {\r\n \"name\": \"System\",\r\n \"tier\": \"System\",\r\n \"capacity\": 0\r\n },\r\n \"kind\": \"v12.0,system\",\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Sql/servers/scotthit-testdbserver\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Sql/servers/scotthit-testdbserver/databases/scotthit-testdb\",\r\n \"name\": \"scotthit-testdbserver/scotthit-testdb\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 5\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Sql/servers/scotthit-testdbserver/databases/scotthit-testdb_2019-03-02T22-34Z\",\r\n \"name\": \"scotthit-testdbserver/scotthit-testdb_2019-03-02T22-34Z\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 5\r\n },\r\n \"kind\": \"v12.0,user\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Sql/servers/svenkatserver\",\r\n \"name\": \"svenkatserver\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Sql/servers/svenkatserver/databases/master\",\r\n \"name\": \"svenkatserver/master\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"sku\": {\r\n \"name\": \"System\",\r\n \"tier\": \"System\",\r\n \"capacity\": 0\r\n },\r\n \"kind\": \"v12.0,system\",\r\n \"managedBy\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Sql/servers/svenkatserver\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Sql/servers/svenkatserver/databases/stdescriptions\",\r\n \"name\": \"svenkatserver/stdescriptions\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"sku\": {\r\n \"name\": \"GP_Gen5\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen5\",\r\n \"capacity\": 2\r\n },\r\n \"kind\": \"v12.0,user,vcore\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthit-test/providers/Microsoft.Storage/storageAccounts/sqlvawqan56dvc43wk\",\r\n \"name\": \"sqlvawqan56dvc43wk\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ScottHitScaleset-RG/providers/Microsoft.Compute/virtualMachineScaleSets/scotthith\",\r\n \"name\": \"scotthith\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ScottHitScaleset-RG/providers/Microsoft.Network/loadBalancers/scotthithlb\",\r\n \"name\": \"scotthithlb\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ScottHitScaleset-RG/providers/Microsoft.Network/networkSecurityGroups/SCOTTHITSCALESET-RG-NSG\",\r\n \"name\": \"SCOTTHITSCALESET-RG-NSG\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ScottHitScaleset-RG/providers/Microsoft.Network/publicIPAddresses/scotthithpip\",\r\n \"name\": \"scotthithpip\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ScottHitScaleset-RG/providers/Microsoft.Network/virtualNetworks/scotthithvnet\",\r\n \"name\": \"scotthithvnet\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/scotthitscaleset-rg/providers/Microsoft.Storage/storageAccounts/2pm7ywrqoa5zmscotthithsa\",\r\n \"name\": \"2pm7ywrqoa5zmscotthithsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ScottHitScaleset-RG/providers/Microsoft.Storage/storageAccounts/4ha7jskcn7if2scotthithsa\",\r\n \"name\": \"4ha7jskcn7if2scotthithsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ScottHitScaleset-RG/providers/Microsoft.Storage/storageAccounts/7pru2z2wfyci6scotthithsa\",\r\n \"name\": \"7pru2z2wfyci6scotthithsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ScottHitScaleset-RG/providers/Microsoft.Storage/storageAccounts/kvngadf4zp45cscotthithsa\",\r\n \"name\": \"kvngadf4zp45cscotthithsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/ScottHitScaleset-RG/providers/Microsoft.Storage/storageAccounts/wfywgy7r35cycscotthithsa\",\r\n \"name\": \"wfywgy7r35cycscotthithsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/762247eastus\",\r\n \"name\": \"762247eastus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp/providers/Microsoft.Storage/storageAccounts/a5d9685987b1b41c5ab3e5c4\",\r\n \"name\": \"a5d9685987b1b41c5ab3e5c4\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp/providers/Microsoft.Storage/storageAccounts/a9e099bf5ebc64a1ea834931\",\r\n \"name\": \"a9e099bf5ebc64a1ea834931\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp/providers/Microsoft.Storage/storageAccounts/documentdbmover8e62\",\r\n \"name\": \"documentdbmover8e62\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp/providers/Microsoft.Web/serverFarms/CentralUSPlan\",\r\n \"name\": \"CentralUSPlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"kind\": \"functionapp\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp/providers/Microsoft.Web/serverFarms/FunctionApp20180321085841Plan\",\r\n \"name\": \"FunctionApp20180321085841Plan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"Y1\",\r\n \"tier\": \"Dynamic\",\r\n \"size\": \"Y1\",\r\n \"family\": \"Y\",\r\n \"capacity\": 0\r\n },\r\n \"kind\": \"functionapp\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/microsoft.alertsManagement/smartDetectorAlertRules/Failure Anomalies - selfhelpwebtool-dev\",\r\n \"name\": \"Failure Anomalies - selfhelpwebtool-dev\",\r\n \"type\": \"microsoft.alertsManagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/microsoft.insights/components/selfhelpwebtool-dev\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/microsoft.alertsManagement/smartDetectorAlertRules/Failure Anomalies - selfhelpwebtool-elixirstaging\",\r\n \"name\": \"Failure Anomalies - selfhelpwebtool-elixirstaging\",\r\n \"type\": \"microsoft.alertsManagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/Microsoft.ClassicNetwork/virtualNetworks/selfhelp-tool\",\r\n \"name\": \"selfhelp-tool\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/Microsoft.ClassicStorage/storageAccounts/selfhelptool1999\",\r\n \"name\": \"selfhelptool1999\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/Microsoft.CognitiveServices/accounts/Validator-SpellCheck\",\r\n \"name\": \"Validator-SpellCheck\",\r\n \"type\": \"Microsoft.CognitiveServices/accounts\",\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"kind\": \"Bing.SpellCheck.v7\",\r\n \"location\": \"global\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/microsoft.insights/components/selfhelpwebtool-dev\",\r\n \"name\": \"selfhelpwebtool-dev\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/microsoft.insights/components/selfhelpwebtool-elixirstaging\",\r\n \"name\": \"selfhelpwebtool-elixirstaging\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/Microsoft.Network/trafficmanagerprofiles/selfhelp\",\r\n \"name\": \"selfhelp\",\r\n \"type\": \"Microsoft.Network/trafficmanagerprofiles\",\r\n \"location\": \"global\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/Microsoft.Storage/storageAccounts/dfexthostingstorage\",\r\n \"name\": \"dfexthostingstorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/Microsoft.Web/sites/selfhelpwebtool-dev\",\r\n \"name\": \"selfhelpwebtool-dev\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool/providers/Microsoft.Web/sites/selfhelpwebtool-elixirstaging\",\r\n \"name\": \"selfhelpwebtool-elixirstaging\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool-prod/providers/Microsoft.KeyVault/vaults/selfhelpKeyVault\",\r\n \"name\": \"selfhelpKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool-prod/providers/Microsoft.Web/sites/selfhelp-webtool\",\r\n \"name\": \"selfhelp-webtool\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-related:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/AlexTestVNetRG/providers/Microsoft.Web/serverfarms/ServicePlan\": \"empty\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelp-tool-prod/providers/Microsoft.Web/sites/selfhelp-webtool/slots/selfhelp-webtool-deploy\",\r\n \"name\": \"selfhelp-webtool/selfhelp-webtool-deploy\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelpcoverage/providers/Microsoft.Storage/storageAccounts/selfhelpcoveragestorage\",\r\n \"name\": \"selfhelpcoveragestorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelpreminderfunction/providers/microsoft.alertsManagement/smartDetectorAlertRules/Failure Anomalies - selfhelpreminderfunction\",\r\n \"name\": \"Failure Anomalies - selfhelpreminderfunction\",\r\n \"type\": \"microsoft.alertsManagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelpreminderfunction/providers/microsoft.insights/components/selfhelpreminderfunction\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelpreminderfunction/providers/microsoft.insights/components/selfhelpreminderfunction\",\r\n \"name\": \"selfhelpreminderfunction\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelpreminderfunction/providers/Microsoft.Web/sites/selfhelpreminderfunction\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelpreminderfunction/providers/Microsoft.Portal/dashboards/15052975-a42b-4da4-919f-f99597d2f8ee-dashboard\",\r\n \"name\": \"15052975-a42b-4da4-919f-f99597d2f8ee-dashboard\",\r\n \"type\": \"Microsoft.Portal/dashboards\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"hidden-title\": \"selfhelpreminderfunction Dashboard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelpreminderfunction/providers/Microsoft.Storage/storageAccounts/selfhelpreminde9ee4\",\r\n \"name\": \"selfhelpreminde9ee4\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/selfhelpreminderfunction/providers/Microsoft.Web/serverFarms/CentralUSPlan\",\r\n \"name\": \"CentralUSPlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"kind\": \"functionapp\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/SEStorageKeysGroup/providers/Microsoft.KeyVault/vaults/AKVManagedSA\",\r\n \"name\": \"AKVManagedSA\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/SEStorageKeysGroup/providers/Microsoft.KeyVault/vaults/SEStorageKeysDF\",\r\n \"name\": \"SEStorageKeysDF\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/SEStorageKeysGroup/providers/Microsoft.Storage/storageAccounts/smstoracc\",\r\n \"name\": \"smstoracc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/simon-test-resources/providers/Microsoft.ApiManagement/service/simontestapimanagementservice\",\r\n \"name\": \"simontestapimanagementservice\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/simon-test-resources/providers/Microsoft.DataBoxEdge/DataBoxEdgeDevices/simon-test-stack-edge\",\r\n \"name\": \"simon-test-stack-edge\",\r\n \"type\": \"Microsoft.DataBoxEdge/DataBoxEdgeDevices\",\r\n \"sku\": {\r\n \"name\": \"Gateway\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/simon-test-resources/providers/Microsoft.DevTestLab/labs/simondevtestlab\",\r\n \"name\": \"simondevtestlab\",\r\n \"type\": \"Microsoft.DevTestLab/labs\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/simon-test-resources/providers/Microsoft.KeyVault/vaults/simondevtestlab6143\",\r\n \"name\": \"simondevtestlab6143\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-DevTestLabs-LabUId\": \"80b8a1a2-c8f5-4d0f-8f46-2708af573aa3\",\r\n \"CreatedBy\": \"DevTestLabs\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/simon-test-resources/providers/Microsoft.Network/virtualNetworks/Dtlsimondevtestlab\",\r\n \"name\": \"Dtlsimondevtestlab\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-DevTestLabs-LabUId\": \"80b8a1a2-c8f5-4d0f-8f46-2708af573aa3\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/simon-test-resources/providers/Microsoft.Storage/storageAccounts/asimondevtestlab4010\",\r\n \"name\": \"asimondevtestlab4010\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-DevTestLabs-LabUId\": \"80b8a1a2-c8f5-4d0f-8f46-2708af573aa3\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/sischleg/providers/microsoft.alertsManagement/smartDetectorAlertRules/Failure Anomalies - simonbottestokobmo\",\r\n \"name\": \"Failure Anomalies - simonbottestokobmo\",\r\n \"type\": \"microsoft.alertsManagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/sischleg/providers/microsoft.insights/components/simonbottestokobmo\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/sischleg/providers/Microsoft.EventHub/namespaces/selfhelpkusto\",\r\n \"name\": \"selfhelpkusto\",\r\n \"type\": \"Microsoft.EventHub/namespaces\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 5\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/sischleg/providers/microsoft.insights/components/simonbottestokobmo\",\r\n \"name\": \"simonbottestokobmo\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/sischleg/providers/Microsoft.BotService/botServices/simonbottest\": \"Resource\",\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/sischleg/providers/Microsoft.Web/sites/simonbottest\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/sischleg/providers/Microsoft.Kusto/clusters/selfhelpkustocluster\",\r\n \"name\": \"selfhelpkustocluster\",\r\n \"type\": \"Microsoft.Kusto/clusters\",\r\n \"sku\": {\r\n \"name\": \"D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/sischleg/providers/Microsoft.Kusto/clusters/testkustotable\",\r\n \"name\": \"testkustotable\",\r\n \"type\": \"Microsoft.Kusto/clusters\",\r\n \"sku\": {\r\n \"name\": \"D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/sischleg/providers/Microsoft.Storage/storageAccounts/simonbottesta1e1\",\r\n \"name\": \"simonbottesta1e1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/smathewTestRG/providers/Microsoft.Logic/workflows/TestLogicApp\",\r\n \"name\": \"TestLogicApp\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/smathewTestRG/providers/Microsoft.Logic/workflows/TestLogicApp-TSG\",\r\n \"name\": \"TestLogicApp-TSG\",\r\n \"type\": \"Microsoft.Logic/workflows\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/smathewTestRG/providers/Microsoft.Web/connections/dynamicscrmonline\",\r\n \"name\": \"dynamicscrmonline\",\r\n \"type\": \"Microsoft.Web/connections\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/smathewTestRG/providers/Microsoft.Web/connections/kusto\",\r\n \"name\": \"kusto\",\r\n \"type\": \"Microsoft.Web/connections\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/softdeletekeyvault/providers/Microsoft.KeyVault/vaults/softdeletekeyvault\",\r\n \"name\": \"softdeletekeyvault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/SQLVMTest/providers/Microsoft.ClassicNetwork/virtualNetworks/SQLVMTest\",\r\n \"name\": \"SQLVMTest\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/SQLVMTest/providers/Microsoft.Network/networkInterfaces/sqlwindowstest316\",\r\n \"name\": \"sqlwindowstest316\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/SQLVMTest/providers/Microsoft.Network/networkSecurityGroups/SqlWindowsTest\",\r\n \"name\": \"SqlWindowsTest\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/SQLVMTest/providers/Microsoft.Network/publicIPAddresses/SqlWindowsTest\",\r\n \"name\": \"SqlWindowsTest\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/SQLVMTest/providers/Microsoft.Network/virtualNetworks/SQLVMTest\",\r\n \"name\": \"SQLVMTest\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/SQLVMTest/providers/Microsoft.Storage/storageAccounts/sqlvmtest8696\",\r\n \"name\": \"sqlvmtest8696\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/StorageScopingQuestions/providers/Microsoft.Storage/storageAccounts/moderningscopinggeneral\",\r\n \"name\": \"moderningscopinggeneral\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/StorageScopingQuestions/providers/Microsoft.StorSimple/managers/scopingtestStorsimple\",\r\n \"name\": \"scopingtestStorsimple\",\r\n \"type\": \"Microsoft.StorSimple/managers\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/streamanalytics/providers/Microsoft.StreamAnalytics/streamingjobs/streamanalytics\",\r\n \"name\": \"streamanalytics\",\r\n \"type\": \"Microsoft.StreamAnalytics/streamingjobs\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/microsoft.alertsManagement/smartDetectorAlertRules/Failure Anomalies - support-docs\",\r\n \"name\": \"Failure Anomalies - support-docs\",\r\n \"type\": \"microsoft.alertsManagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/microsoft.insights/components/support-docs\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/microsoft.alertsManagement/smartDetectorAlertRules/Failure Anomalies - support-docs-ppe\",\r\n \"name\": \"Failure Anomalies - support-docs-ppe\",\r\n \"type\": \"microsoft.alertsManagement/smartDetectorAlertRules\",\r\n \"location\": \"global\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/microsoft.insights/components/support-docs-ppe\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/microsoft.insights/actiongroups/Application Insights Smart Detection\",\r\n \"name\": \"Application Insights Smart Detection\",\r\n \"type\": \"microsoft.insights/actiongroups\",\r\n \"location\": \"global\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/microsoft.insights/components/support-docs\",\r\n \"name\": \"support-docs\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/microsoft.insights/components/support-docs-ppe\",\r\n \"name\": \"support-docs-ppe\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"kind\": \"web\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/Microsoft.Portal/dashboards/4bd6eb93-14fe-4cb5-addf-e452ea3187a0-dashboard\",\r\n \"name\": \"4bd6eb93-14fe-4cb5-addf-e452ea3187a0-dashboard\",\r\n \"type\": \"Microsoft.Portal/dashboards\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"hidden-title\": \"support-docs Dashboard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/Microsoft.Portal/dashboards/a6516939-e588-4e92-9675-b90c6608ff97-dashboard\",\r\n \"name\": \"a6516939-e588-4e92-9675-b90c6608ff97-dashboard\",\r\n \"type\": \"Microsoft.Portal/dashboards\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"hidden-title\": \"support-docs-ppe Dashboard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/Microsoft.Web/serverFarms/support-docsPlan\",\r\n \"name\": \"support-docsPlan\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"app\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/Microsoft.Web/sites/support-docs\",\r\n \"name\": \"support-docs\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"centralus\",\r\n \"identity\": {\r\n \"principalId\": \"e370fd6e-6932-48b4-a940-2954d4d582d0\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"tags\": {\r\n \"hidden-related:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/Microsoft.Web/serverfarms/support-docsPlan\": \"empty\",\r\n \"hidden-related:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/Microsoft.Web/sites/support-docs/diagnostics/chatRestorationId\": \"b8439da2-964d-4d61-aac9-292bde7c3268\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/Microsoft.Web/sites/support-docs-ppe\",\r\n \"name\": \"support-docs-ppe\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"hidden-related:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/Microsoft.Web/serverfarms/support-docsPlan\": \"empty\",\r\n \"hidden-related:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/support-docs/providers/Microsoft.Web/sites/support-docs/diagnostics/chatRestorationId\": \"b8439da2-964d-4d61-aac9-292bde7c3268\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/svenkatResourceGroup/providers/Microsoft.Search/searchServices/stpanelsearch\",\r\n \"name\": \"stpanelsearch\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/TestCircuite/providers/Microsoft.Network/expressRouteCircuits/TestCircuite\",\r\n \"name\": \"TestCircuite\",\r\n \"type\": \"Microsoft.Network/expressRouteCircuits\",\r\n \"sku\": {\r\n \"name\": \"Standard_UnlimitedData\",\r\n \"tier\": \"Standard\",\r\n \"family\": \"UnlimitedData\"\r\n },\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Testing/providers/microsoft.insights/alertrules/ForbiddenRequests AE-TestWebApps-West US\",\r\n \"name\": \"ForbiddenRequests AE-TestWebApps-West US\",\r\n \"type\": \"microsoft.insights/alertrules\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Testing/providers/Microsoft.Web/sites/AE-TestWebApps\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Testing/providers/microsoft.insights/alertrules/ServerErrors AE-TestWebApps-West US\",\r\n \"name\": \"ServerErrors AE-TestWebApps-West US\",\r\n \"type\": \"microsoft.insights/alertrules\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"hidden-link:/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/Testing/providers/Microsoft.Web/sites/AE-TestWebApps\": \"Resource\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/TestLinuxWebApp1/providers/Microsoft.Web/serverFarms/ServicePlanea4692c1-b80b\",\r\n \"name\": \"ServicePlanea4692c1-b80b\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n },\r\n \"kind\": \"linux\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/TestLogicApp/providers/Microsoft.Web/connections/office365\",\r\n \"name\": \"office365\",\r\n \"type\": \"Microsoft.Web/connections\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/TestLogicApp/providers/Microsoft.Web/connections/sql\",\r\n \"name\": \"sql\",\r\n \"type\": \"Microsoft.Web/connections\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/vheshartest/providers/Microsoft.DocumentDb/databaseAccounts/vheshartest\",\r\n \"name\": \"vheshartest\",\r\n \"type\": \"Microsoft.DocumentDb/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"defaultExperience\": \"DocumentDB\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/viclDataLakeTest/providers/Microsoft.DataLakeAnalytics/accounts/vicldatalake\",\r\n \"name\": \"vicldatalake\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/viclDataLakeTest/providers/Microsoft.DataLakeStore/accounts/vicldatalakeadls\",\r\n \"name\": \"vicldatalakeadls\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Compute/virtualMachines/scotthit-vm2\",\r\n \"name\": \"scotthit-vm2\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"DRI\": \"amals@microsoft.com\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTEST/providers/Microsoft.Compute/virtualMachines/scotthit-vm2/extensions/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"name\": \"scotthit-vm2/Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Compute/virtualMachines/scotthit-vm2/extensions/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"name\": \"scotthit-vm2/Microsoft.Insights.VMDiagnosticsSettings\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTEST/providers/Microsoft.Compute/virtualMachines/scotthit-vm2/extensions/MicrosoftMonitoringAgent\",\r\n \"name\": \"scotthit-vm2/MicrosoftMonitoringAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTEST/providers/Microsoft.Compute/virtualMachines/scotthit-vm2/extensions/Monitoring\",\r\n \"name\": \"scotthit-vm2/Monitoring\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Network/networkInterfaces/scotthit-vm284\",\r\n \"name\": \"scotthit-vm284\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Network/networkInterfaces/testvm452\",\r\n \"name\": \"testvm452\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Network/networkSecurityGroups/scotthit-vm2\",\r\n \"name\": \"scotthit-vm2\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Network/networkSecurityGroups/TestVM\",\r\n \"name\": \"TestVM\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Network/networkSecurityGroups/VMTest-default-NRMS\",\r\n \"name\": \"VMTest-default-NRMS\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"Creator\": \"Automatically added by NRMS Azure Policy\",\r\n \"NRMS-Info\": \"http://aka.ms/nrms\",\r\n \"NRMS-Version\": \"2019-03-20\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Network/publicIPAddresses/scotthit-vm2\",\r\n \"name\": \"scotthit-vm2\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Network/publicIPAddresses/test_ipaddress\",\r\n \"name\": \"test_ipaddress\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Network/publicIPAddresses/TestVM\",\r\n \"name\": \"TestVM\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/VMTest/providers/Microsoft.Network/virtualNetworks/VMTest\",\r\n \"name\": \"VMTest\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/vmtest/providers/Microsoft.Storage/storageAccounts/vmtest1936\",\r\n \"name\": \"vmtest1936\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/vso-rg-40011d6/providers/Microsoft.VSOnline/plans/vso-plan-westus2\",\r\n \"name\": \"vso-plan-westus2\",\r\n \"type\": \"Microsoft.VSOnline/plans\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/vso-rg-a267084/providers/Microsoft.VSOnline/plans/vso-plan-westus2\",\r\n \"name\": \"vso-plan-westus2\",\r\n \"type\": \"Microsoft.VSOnline/plans\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/wihuatest/providers/Microsoft.KeyVault/vaults/wihua\",\r\n \"name\": \"wihua\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/wihuatest/providers/Microsoft.Storage/storageAccounts/publicreadonlytest\",\r\n \"name\": \"publicreadonlytest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"BlobStorage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/wihuatest/providers/Microsoft.Storage/storageAccounts/storageaccountwihuaa14d\",\r\n \"name\": \"storageaccountwihuaa14d\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/wihuatest/providers/Microsoft.Web/serverFarms/ASP-wihuatest-96fb\",\r\n \"name\": \"ASP-wihuatest-96fb\",\r\n \"type\": \"Microsoft.Web/serverFarms\",\r\n \"sku\": {\r\n \"name\": \"Y1\",\r\n \"tier\": \"Dynamic\",\r\n \"size\": \"Y1\",\r\n \"family\": \"Y\",\r\n \"capacity\": 0\r\n },\r\n \"kind\": \"functionapp\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/wihuatest/providers/Microsoft.Web/sites/cdbtest\",\r\n \"name\": \"cdbtest\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"functionapp\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/WilsonTestGroup/providers/Microsoft.Storage/storageAccounts/test212312test\",\r\n \"name\": \"test212312test\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/WinSQLTest/providers/Microsoft.ClassicNetwork/virtualNetworks/WinSQLTest\",\r\n \"name\": \"WinSQLTest\",\r\n \"type\": \"Microsoft.ClassicNetwork/virtualNetworks\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
@@ -67,13 +67,13 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "48e43139-dccb-45f9-b1a3-ad4ee6697bbd"
+ "aa57ef4e-0507-44b3-bb73-623a2829464e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.28516.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Support.MicrosoftSupportClient/1.0.0.0"
@@ -87,7 +87,10 @@
"no-cache"
],
"x-ms-ratelimit-remaining-tenant-reads": [
- "11920"
+ "11998"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -96,22 +99,19 @@
"Kestrel"
],
"x-ms-request-id": [
- "ab430daa-0921-45f5-8c0c-e620bed621d0"
+ "00bd11f1-8d10-4665-8012-8e38ab6f35cd"
],
"x-ms-correlation-request-id": [
- "ab430daa-0921-45f5-8c0c-e620bed621d0"
+ "00bd11f1-8d10-4665-8012-8e38ab6f35cd"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200315T071143Z:ab430daa-0921-45f5-8c0c-e620bed621d0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "CENTRALUSEUAP:20200327T043553Z:00bd11f1-8d10-4665-8012-8e38ab6f35cd"
],
"Date": [
- "Sun, 15 Mar 2020 07:11:43 GMT"
+ "Fri, 27 Mar 2020 04:35:53 GMT"
],
"Content-Length": [
- "53685"
+ "53980"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -120,7 +120,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/484e2236-bc6d-b1bb-76d2-7d09278cf9ea\",\r\n \"name\": \"484e2236-bc6d-b1bb-76d2-7d09278cf9ea\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Activity Logs\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/809e8afe-489e-08b0-95f2-08f835a383e8\",\r\n \"name\": \"809e8afe-489e-08b0-95f2-08f835a383e8\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Advanced Threat Protection - Azure\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6859f4e8-4a1d-13e4-f276-6d055007e83d\",\r\n \"name\": \"6859f4e8-4a1d-13e4-f276-6d055007e83d\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Advanced Threat Protection - Microsoft Defender\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/94332e54-73b0-b8e3-306e-db3ad13d950b\",\r\n \"name\": \"94332e54-73b0-b8e3-306e-db3ad13d950b\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Advanced Threat Protection - O365\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/26d8424b-0a41-4443-cbc6-0309ea8708d0\",\r\n \"name\": \"26d8424b-0a41-4443-cbc6-0309ea8708d0\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Advisor\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/8f1ddc5f-0c5e-50c7-9810-e01a8d1da925\",\r\n \"name\": \"8f1ddc5f-0c5e-50c7-9810-e01a8d1da925\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"AKS Engine on Azure Stack Hub\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/c1840ac9-309f-f235-c0ae-4782f283b698\",\r\n \"name\": \"c1840ac9-309f-f235-c0ae-4782f283b698\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Alerts and Action Groups\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.INSIGHTS/ALERTRULES\",\r\n \"MICROSOFT.INSIGHTS/ACTIVITYLOGALERTS\",\r\n \"MICROSOFT.INSIGHTS/METRICALERTS\",\r\n \"MICROSOFT.INSIGHTS/SCHEDULEDQUERYRULES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/e8fe7c6f-d883-c57f-6576-cf801ca30653\",\r\n \"name\": \"e8fe7c6f-d883-c57f-6576-cf801ca30653\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Analysis Services\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.ANALYSISSERVICES/SERVERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/07651e65-958a-0877-36f3-61bbba85d783\",\r\n \"name\": \"07651e65-958a-0877-36f3-61bbba85d783\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"API for FHIR\",\r\n \"resourceTypes\": [\r\n \"Microsoft.HealthcareApis\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b4d0e877-0166-0474-9a76-b5be30ba40e4\",\r\n \"name\": \"b4d0e877-0166-0474-9a76-b5be30ba40e4\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"API Management Service\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.APIMANAGEMENT/SERVICE\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/e14f616b-42c5-4515-3d7c-67935eece51a\",\r\n \"name\": \"e14f616b-42c5-4515-3d7c-67935eece51a\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"App Configuration\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Azconfig\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/445c0905-55e2-4f42-d853-ec9e17a5180e\",\r\n \"name\": \"445c0905-55e2-4f42-d853-ec9e17a5180e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"App Service Certificates\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CERTIFICATEREGISTRATION/CERTIFICATEORDERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b7d2f8b7-7d20-cf2f-ddd5-5543ada54bd2\",\r\n \"name\": \"b7d2f8b7-7d20-cf2f-ddd5-5543ada54bd2\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"App Service Domains\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DOMAINREGISTRATION/DOMAINS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/101732bb-31af-ee61-7c16-d4ad77c86a50\",\r\n \"name\": \"101732bb-31af-ee61-7c16-d4ad77c86a50\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Application Gateway\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NETWORK/APPLICATIONGATEWAYS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/63df7848-ce1c-06d4-517f-2a62983372c6\",\r\n \"name\": \"63df7848-ce1c-06d4-517f-2a62983372c6\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Application Insights\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.INSIGHTS/COMPONENTS\",\r\n \"MICROSOFT.INSIGHTS/ACTIVITYLOGALERTS\",\r\n \"MICROSOFT.INSIGHTS/METRICALERTS\",\r\n \"MICROSOFT.INSIGHTS/SCHEDULEDQUERYRULES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2fd37acf-7616-eae7-546b-1a78a16d11b5\",\r\n \"name\": \"2fd37acf-7616-eae7-546b-1a78a16d11b5\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"ASE\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.WEB/HOSTINGENVIRONMENTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/90426252-f966-63ea-cbda-cab5ceaa865d\",\r\n \"name\": \"90426252-f966-63ea-cbda-cab5ceaa865d\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Automation\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.AUTOMATION/AUTOMATIONACCOUNTS\",\r\n \"MICROSOFT.AUTOMATION/AUTOMATIONACCOUNTS/RUNBOOKS\",\r\n \"MICROSOFT.AUTOMATION/AUTOMATIONACCOUNTS/JOBS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/82881226-e06c-2b57-3365-38437e84059e\",\r\n \"name\": \"82881226-e06c-2b57-3365-38437e84059e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Autoscale\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.INSIGHTS/AUTOSCALESETTINGS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/500d88b2-c24c-0d5d-3b76-acfde7d6ee20\",\r\n \"name\": \"500d88b2-c24c-0d5d-3b76-acfde7d6ee20\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Avere vFXT\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/7505036e-a364-8354-e894-56d394dd4a61\",\r\n \"name\": \"7505036e-a364-8354-e894-56d394dd4a61\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Active Directory App Integration and Development\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b16f3aa1-e798-0090-9159-5dc3bae17c5b\",\r\n \"name\": \"b16f3aa1-e798-0090-9159-5dc3bae17c5b\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Active Directory Business To Consumer (B2C)\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/3a36c1ba-f910-91c3-9f17-075d63c9488a\",\r\n \"name\": \"3a36c1ba-f910-91c3-9f17-075d63c9488a\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Active Directory Directories, Domains, and Objects\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/a69d6bc1-d1db-61e6-2668-451ae3784f86\",\r\n \"name\": \"a69d6bc1-d1db-61e6-2668-451ae3784f86\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Active Directory Domain Services (VM – Domain Controllers)\",\r\n \"resourceTypes\": [\r\n \"Microsoft.AAD/DomainServices\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b98631b1-d53a-3ac4-3181-aef136ec703d\",\r\n \"name\": \"b98631b1-d53a-3ac4-3181-aef136ec703d\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Active Directory Governance, Compliance and Reporting\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/516fe906-3a1a-2878-02fd-8dd37ea207de\",\r\n \"name\": \"516fe906-3a1a-2878-02fd-8dd37ea207de\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Active Directory Sign-In and Multi-Factor Authentication\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/38a234dd-6baf-d93b-2c48-5a735a3550ed\",\r\n \"name\": \"38a234dd-6baf-d93b-2c48-5a735a3550ed\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Active Directory User Provisioning and Synchronization\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/17318db1-cfda-52da-b65f-68e53ba89e64\",\r\n \"name\": \"17318db1-cfda-52da-b65f-68e53ba89e64\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Arc for servers\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/17d72dfc-8f48-94cb-05e6-5f88efdf72d7\",\r\n \"name\": \"17d72dfc-8f48-94cb-05e6-5f88efdf72d7\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Backup\",\r\n \"resourceTypes\": [\r\n \"Microsoft.RecoveryServices/vaults\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/76b41038-ae2e-0cb8-32f8-a575b98d07ae\",\r\n \"name\": \"76b41038-ae2e-0cb8-32f8-a575b98d07ae\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Blockchain Service - Preview\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Blockchain\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\",\r\n \"name\": \"58cf91d7-3a04-37d3-9818-9bd5c979d9a9\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure CDN\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/3f14906b-a48e-b51a-d700-b3eb7784bce8\",\r\n \"name\": \"3f14906b-a48e-b51a-d700-b3eb7784bce8\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Database for MariaDB\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DBFORMARIADB/SERVERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/17c72f78-cb09-bc5b-9b99-f3d618e1f057\",\r\n \"name\": \"17c72f78-cb09-bc5b-9b99-f3d618e1f057\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Database for MySQL\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DBFORMYSQL/SERVERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/d4d4e6ba-73e5-a166-549b-4643b78f4d6f\",\r\n \"name\": \"d4d4e6ba-73e5-a166-549b-4643b78f4d6f\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Database for PostgreSQL\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DBFORPOSTGRESQL/SERVERS\",\r\n \"MICROSOFT.DBFORPOSTGRESQL/SERVERSV2\",\r\n \"MICROSOFT.DBFORPOSTGRESQL/SERVERGROUPS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/197bc2a0-4681-2302-f03f-ba9abbcdaddb\",\r\n \"name\": \"197bc2a0-4681-2302-f03f-ba9abbcdaddb\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Dev Spaces\",\r\n \"resourceTypes\": [\r\n \"DevTools\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cd9d74ec-8333-b326-f42f-303e223e04eb\",\r\n \"name\": \"cd9d74ec-8333-b326-f42f-303e223e04eb\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure DevOps Services\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Visualstudio\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/f0269138-eb6e-a81a-10e9-17965b5683d4\",\r\n \"name\": \"f0269138-eb6e-a81a-10e9-17965b5683d4\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure DNS\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NETWORK/DNSZONES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/3b799b70-420a-6397-e69c-853341d0eab5\",\r\n \"name\": \"3b799b70-420a-6397-e69c-853341d0eab5\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Firewall\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Network/azureFirewalls\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/f1e803c0-d4aa-156d-8507-3f9e5e4e1504\",\r\n \"name\": \"f1e803c0-d4aa-156d-8507-3f9e5e4e1504\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Firewall Manager - Preview\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Network/firewallPolicies\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/3d598a6c-5432-adab-e87a-1dfdbb562302\",\r\n \"name\": \"3d598a6c-5432-adab-e87a-1dfdbb562302\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure FXT Edge Filer\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/8168c456-2014-a581-dde8-d25e47d964c8\",\r\n \"name\": \"8168c456-2014-a581-dde8-d25e47d964c8\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Information Protection\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/e29406fa-af70-5215-e29b-9c9b7f5204d3\",\r\n \"name\": \"e29406fa-af70-5215-e29b-9c9b7f5204d3\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Kinect Dev Kit\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/ef44dd7b-4344-edcf-2eb1-f6f094fd46a3\",\r\n \"name\": \"ef44dd7b-4344-edcf-2eb1-f6f094fd46a3\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Migrate\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Migrate/migrateProjects\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/06d6dec8-469a-b652-f8e8-61e47c34efef\",\r\n \"name\": \"06d6dec8-469a-b652-f8e8-61e47c34efef\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure mobile app (for Android & iOS)\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/00743e6b-ddfd-e1cb-b90e-2a9f8d1c2a52\",\r\n \"name\": \"00743e6b-ddfd-e1cb-b90e-2a9f8d1c2a52\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure NetApp Files\",\r\n \"resourceTypes\": [\r\n \"Microsoft.NetApp/netAppAccounts\",\r\n \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/50cb0c81-4dee-0e4e-d7bd-caa5560e76af\",\r\n \"name\": \"50cb0c81-4dee-0e4e-d7bd-caa5560e76af\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Private Link\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Network/privateLinkServices\",\r\n \"Microsoft.Network/privateEndpoints\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b701b8d6-fc99-aba8-bab9-bc2e171fa89c\",\r\n \"name\": \"b701b8d6-fc99-aba8-bab9-bc2e171fa89c\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure RedHat OpenShift\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cb6b214b-fbeb-8fd1-a055-3d60bbe81c28\",\r\n \"name\": \"cb6b214b-fbeb-8fd1-a055-3d60bbe81c28\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Resource Graph\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/9cd60433-a646-8748-7e7f-fd0781fea78e\",\r\n \"name\": \"9cd60433-a646-8748-7e7f-fd0781fea78e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Sentinel\",\r\n \"resourceTypes\": [\r\n \"Microsoft.SecurityInsights\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b1d432df-e9cc-ff08-d261-32586b843bc1\",\r\n \"name\": \"b1d432df-e9cc-ff08-d261-32586b843bc1\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Site Recovery\",\r\n \"resourceTypes\": [\r\n \"Microsoft.RecoveryServices/vaults\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/a6475480-6048-1d77-76fc-3118551f24c1\",\r\n \"name\": \"a6475480-6048-1d77-76fc-3118551f24c1\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Sphere\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2950380d-f11a-136b-1b95-017b71f25ef8\",\r\n \"name\": \"2950380d-f11a-136b-1b95-017b71f25ef8\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Stack Edge and Data Box Gateway\",\r\n \"resourceTypes\": [\r\n \"Microsoft.DataBoxEdge/DataBoxEdgeDevices\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/32d322a8-acae-202d-e9a9-7371dccf381b\",\r\n \"name\": \"32d322a8-acae-202d-e9a9-7371dccf381b\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Stack Hub\",\r\n \"resourceTypes\": [\r\n \"Microsoft.AzureStack/registrations\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/1dcbb98a-fbff-9e2a-08c6-0f1fbe934906\",\r\n \"name\": \"1dcbb98a-fbff-9e2a-08c6-0f1fbe934906\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure StorSimple 1200 Series\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.STORSIMPLE/MANAGERS\",\r\n \"MICROSOFT.STORSIMPLEBVTD2/MANAGERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/9fccedfd-3d56-635e-e377-c72e2cdb402f\",\r\n \"name\": \"9fccedfd-3d56-635e-e377-c72e2cdb402f\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure StorSimple 8000 Series\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.STORSIMPLE/MANAGERS\",\r\n \"MICROSOFT.STORSIMPLEBVTD2/MANAGERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/20c0b7e3-3084-2fc5-5530-1ff0cc21e885\",\r\n \"name\": \"20c0b7e3-3084-2fc5-5530-1ff0cc21e885\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Synapse Analytics\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.SQL/SERVERS\",\r\n \"MICROSOFT.SQL/SERVERS/DATABASES\",\r\n \"Microsoft.Synapse\",\r\n \"MICROSOFT.SYNAPSE/WORKSPACES\",\r\n \"MICROSOFT.SYNAPSE/WORKSPACES/BIGDATAPOOLS\",\r\n \"MICROSOFT.SYNAPSE/WORKSPACES/SQLPOOLS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/440fc530-a802-3276-f67b-7c39d1c8e972\",\r\n \"name\": \"440fc530-a802-3276-f67b-7c39d1c8e972\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure VMware Solution by CloudSimple\",\r\n \"resourceTypes\": [\r\n \"Microsoft.VMwareCloudSimple\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/ffc9bb42-93e4-eb40-5421-ba3537f3a012\",\r\n \"name\": \"ffc9bb42-93e4-eb40-5421-ba3537f3a012\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Bastion\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Network/bastionHosts\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2bcd736d-e519-397d-e595-396f4e0cce88\",\r\n \"name\": \"2bcd736d-e519-397d-e595-396f4e0cce88\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Batch AI - Preview\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/3f33d852-e61f-d835-8217-a9a677d96914\",\r\n \"name\": \"3f33d852-e61f-d835-8217-a9a677d96914\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Batch Service\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.BATCH/BATCHACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc\",\r\n \"name\": \"517f2da6-78fd-0498-4e22-ad26996b1dfc\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Billing\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/a2c69e6c-34b6-fc5d-0f35-b496a071c28d\",\r\n \"name\": \"a2c69e6c-34b6-fc5d-0f35-b496a071c28d\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Blob Storage\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICSTORAGE/STORAGEACCOUNTS\",\r\n \"MICROSOFT.STORAGE/STORAGEACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/f26f06d5-c3b1-0372-8c5b-93a371ec434c\",\r\n \"name\": \"f26f06d5-c3b1-0372-8c5b-93a371ec434c\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Blueprint - Preview\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Blueprint/BLUEPRINTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98134488-9bd9-db12-619c-06636d1ee55e\",\r\n \"name\": \"98134488-9bd9-db12-619c-06636d1ee55e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Bot Service\",\r\n \"resourceTypes\": [\r\n \"Microsoft.BotService/botServices\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/275635f1-6a9b-cca1-af9e-c379b30890ff\",\r\n \"name\": \"275635f1-6a9b-cca1-af9e-c379b30890ff\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cache for Redis\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CACHE/REDIS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/7dc03991-4dcf-cf5a-904f-35a243ca5551\",\r\n \"name\": \"7dc03991-4dcf-cf5a-904f-35a243ca5551\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cloud App Security\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/e79dcabe-5f77-3326-2112-74487e1e5f78\",\r\n \"name\": \"e79dcabe-5f77-3326-2112-74487e1e5f78\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cloud Services (Web roles/Worker roles)\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICCOMPUTE/DOMAINNAMES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/70a6ce77-640d-fb3b-d2e2-942c479a929b\",\r\n \"name\": \"70a6ce77-640d-fb3b-d2e2-942c479a929b\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cloud Shell\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/87112f97-cf14-d714-03cb-28af2e422e31\",\r\n \"name\": \"87112f97-cf14-d714-03cb-28af2e422e31\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cognitive Services\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/00677266-37a0-73ba-d7c4-ad3c814b2b11\",\r\n \"name\": \"00677266-37a0-73ba-d7c4-ad3c814b2b11\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cognitive Services-Computer Vision\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6dfefaed-7312-8350-bbe6-c452fe5749c7\",\r\n \"name\": \"6dfefaed-7312-8350-bbe6-c452fe5749c7\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cognitive Services-Custom Vision\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/01cde781-0618-be89-60ce-14ca8e939c7d\",\r\n \"name\": \"01cde781-0618-be89-60ce-14ca8e939c7d\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cognitive Services-Face API\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/7faf083e-7dd5-a35b-ba18-52eeac29d9a1\",\r\n \"name\": \"7faf083e-7dd5-a35b-ba18-52eeac29d9a1\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cognitive Services-LUIS\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/9a2cd2eb-f793-9717-a145-3497086f40b4\",\r\n \"name\": \"9a2cd2eb-f793-9717-a145-3497086f40b4\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cognitive Services-QnA Maker\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/8d2d990b-173c-fbee-3913-05e3f338b67b\",\r\n \"name\": \"8d2d990b-173c-fbee-3913-05e3f338b67b\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cognitive Services-Speech Services\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b1bfd43f-f4f6-7e3c-4a01-ed74b71b6dd7\",\r\n \"name\": \"b1bfd43f-f4f6-7e3c-4a01-ed74b71b6dd7\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cognitive Services-Text Analytics\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/4bc4301f-b40e-080d-9252-a523f88a16e7\",\r\n \"name\": \"4bc4301f-b40e-080d-9252-a523f88a16e7\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cognitive Services-Translator Text\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/fd718335-8143-4759-bb14-cf7cff4f585e\",\r\n \"name\": \"fd718335-8143-4759-bb14-cf7cff4f585e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Container Instances\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CONTAINERINSTANCE/CONTAINERGROUPS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/f100a6d5-17df-c517-a2bc-ecc2a5bfb975\",\r\n \"name\": \"f100a6d5-17df-c517-a2bc-ecc2a5bfb975\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Container Registry\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CONTAINERREGISTRY/REGISTRIES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/d9516a10-74b5-45f4-943d-a5281d7cf1bb\",\r\n \"name\": \"d9516a10-74b5-45f4-943d-a5281d7cf1bb\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cosmos DB\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/53cdda84-33c0-81db-6a25-adaac64419d6\",\r\n \"name\": \"53cdda84-33c0-81db-6a25-adaac64419d6\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"CycleCloud\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/a091fbc6-3624-42e8-4b3c-654a29d6958e\",\r\n \"name\": \"a091fbc6-3624-42e8-4b3c-654a29d6958e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Data Box\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DATABOX/JOBS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/9a7df480-f592-a980-906c-bd1fd3060aa8\",\r\n \"name\": \"9a7df480-f592-a980-906c-bd1fd3060aa8\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Data Catalog\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DATACATALOG/CATALOGS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/0d06686e-fac3-fde3-a8c1-6dfbc8bd3865\",\r\n \"name\": \"0d06686e-fac3-fde3-a8c1-6dfbc8bd3865\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Data Explorer\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Kusto/Clusters\",\r\n \"Microsoft.Kusto/Databases\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/113715b9-70c6-3019-fa70-5d9f0c15c610\",\r\n \"name\": \"113715b9-70c6-3019-fa70-5d9f0c15c610\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Data Factory\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DATAFACTORY/DATAFACTORIES\",\r\n \"MICROSOFT.DATAFACTORY/FACTORIES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/eea96939-cf20-792a-ed0a-f11eb11336df\",\r\n \"name\": \"eea96939-cf20-792a-ed0a-f11eb11336df\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Data Lake Analytics\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DATALAKEANALYTICS/ACCOUNTS\",\r\n \"MICROSOFT.DATALAKEANALYTICS/ACCOUNTS/STORAGEACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/7ecbaeae-c1bc-285f-a3bd-b5a3ba00b294\",\r\n \"name\": \"7ecbaeae-c1bc-285f-a3bd-b5a3ba00b294\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Data Lake Storage Gen1\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DATALAKESTORE/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/a95c4ceb-9637-4484-2205-d1162a7d2249\",\r\n \"name\": \"a95c4ceb-9637-4484-2205-d1162a7d2249\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Data Lake Storage Gen2\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.STORAGE/STORAGEACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/0c1a625e-85d1-f83b-7248-2367293c9d85\",\r\n \"name\": \"0c1a625e-85d1-f83b-7248-2367293c9d85\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Data Share\",\r\n \"resourceTypes\": [\r\n \"Microsoft.DataShare/accounts\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/8c615be4-9081-f10c-5866-afa4fab9666d\",\r\n \"name\": \"8c615be4-9081-f10c-5866-afa4fab9666d\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Database Migration Service\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DATAMIGRATION/SERVICES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/3461f86b-df79-07f2-aad9-34a81b2d9023\",\r\n \"name\": \"3461f86b-df79-07f2-aad9-34a81b2d9023\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Databricks\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DATABRICKS/WORKSPACES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/d22650a0-c129-647b-967c-fb18c83584c6\",\r\n \"name\": \"d22650a0-c129-647b-967c-fb18c83584c6\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"DDOS Protection\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NETWORK/DDOSPROTECTIONPLANS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b9c52334-7da1-7360-b396-0406b0c9d3b7\",\r\n \"name\": \"b9c52334-7da1-7360-b396-0406b0c9d3b7\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Dedicated Host\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Compute\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/7d1ce754-b825-74b6-8022-87193cd96b6e\",\r\n \"name\": \"7d1ce754-b825-74b6-8022-87193cd96b6e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Dedicated HSM\",\r\n \"resourceTypes\": [\r\n \"Microsoft.HardwareSecurityModules/DedicatedHSM\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/1977ac05-0469-1162-4947-d733fb83040e\",\r\n \"name\": \"1977ac05-0469-1162-4947-d733fb83040e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Deployment Manager Service Topology - Preview\",\r\n \"resourceTypes\": [\r\n \"Microsoft.DeploymentManager\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/39dc26f0-c1b1-2323-c39f-3ae3860e0c37\",\r\n \"name\": \"39dc26f0-c1b1-2323-c39f-3ae3860e0c37\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Diagnostic Logs and Diagnostic Settings\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/f17737cc-a073-8ec8-04a9-a3f19c631dea\",\r\n \"name\": \"f17737cc-a073-8ec8-04a9-a3f19c631dea\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Digital Twins - Preview\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.IOTCENTRAL/IOTAPPS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/a79c6645-e39b-3410-6e3c-24c6b96b616b\",\r\n \"name\": \"a79c6645-e39b-3410-6e3c-24c6b96b616b\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Enrollment administration\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/bfe4c4f0-96eb-41a9-a9aa-23a3b5ed9974\",\r\n \"name\": \"bfe4c4f0-96eb-41a9-a9aa-23a3b5ed9974\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Event Grid\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.EVENTGRID/TOPICS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/4fa35c58-016c-a25b-4105-bd667c24ab1f\",\r\n \"name\": \"4fa35c58-016c-a25b-4105-bd667c24ab1f\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Event Hubs\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.EVENTHUB/NAMESPACES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/48ffed53-baf4-c26a-c7a1-4bea807be2a0\",\r\n \"name\": \"48ffed53-baf4-c26a-c7a1-4bea807be2a0\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Event Hubs on Azure Stack Hub - Preview\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/759b4975-eee7-178d-6996-31047d078bf2\",\r\n \"name\": \"759b4975-eee7-178d-6996-31047d078bf2\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"ExpressRoute\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NETWORK/EXPRESSROUTECIRCUITS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/ce989245-7b7b-ab4f-ac5a-a4ca2ee9d2a2\",\r\n \"name\": \"ce989245-7b7b-ab4f-ac5a-a4ca2ee9d2a2\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"ExpressRoute Service Provider\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/30dfd88b-b455-1748-a4a0-e4c5aa795663\",\r\n \"name\": \"30dfd88b-b455-1748-a4a0-e4c5aa795663\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Files Storage\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICSTORAGE/STORAGEACCOUNTS\",\r\n \"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\r\n \"MICROSOFT.STORAGESYNC/STORAGESYNCSERVICES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/fafcf178-45ee-85df-ef14-982729bf2f82\",\r\n \"name\": \"fafcf178-45ee-85df-ef14-982729bf2f82\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Front Door Service\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NETWORK/FRONTDOORS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/5ce8de69-abba-65a0-e0e4-a684bcbc7931\",\r\n \"name\": \"5ce8de69-abba-65a0-e0e4-a684bcbc7931\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Function App\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.WEB/SITES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/5ffad63a-3267-d6b7-2fa1-6d9134c1fa62\",\r\n \"name\": \"5ffad63a-3267-d6b7-2fa1-6d9134c1fa62\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"HDInsight Service\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/e00b1ed8-fc24-fef4-6f4c-36d963708ae1\",\r\n \"name\": \"e00b1ed8-fc24-fef4-6f4c-36d963708ae1\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"High Performance Computing (HPC)\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6b415938-2927-0d9d-6c3c-fbacea64e42d\",\r\n \"name\": \"6b415938-2927-0d9d-6c3c-fbacea64e42d\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"HPC Cache\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/602a2167-4975-c8c4-6db6-5bf1081d80ec\",\r\n \"name\": \"602a2167-4975-c8c4-6db6-5bf1081d80ec\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Insights for Storage Accounts\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICSTORAGE/STORAGEACCOUNTS\",\r\n \"MICROSOFT.STORAGE/STORAGEACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/65e73690-23aa-be68-83be-a6b9bd188345\",\r\n \"name\": \"65e73690-23aa-be68-83be-a6b9bd188345\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Integration Service Environment (ISE)\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.LOGIC/WORKFLOWS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/fb35bf64-b744-16ba-68d1-e1853af0816e\",\r\n \"name\": \"fb35bf64-b744-16ba-68d1-e1853af0816e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"IoT Central\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.IOTCENTRAL/IOTAPPS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/ea37799f-166b-c702-e4d1-e17fa52b2984\",\r\n \"name\": \"ea37799f-166b-c702-e4d1-e17fa52b2984\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"IoT Device Provisioning Service\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DEVICES/PROVISIONINGSERVICES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/0ebfa061-1e74-5f8f-ed46-5a46e13e5d33\",\r\n \"name\": \"0ebfa061-1e74-5f8f-ed46-5a46e13e5d33\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"IoT Edge\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DEVICES/IOTHUBS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b8b1c1dd-dfe1-63e8-cc06-e6a1a1c5a853\",\r\n \"name\": \"b8b1c1dd-dfe1-63e8-cc06-e6a1a1c5a853\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"IoT Hub\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DEVICES/IOTHUBS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/4ba83714-c274-28d6-af7f-43c12863bf2f\",\r\n \"name\": \"4ba83714-c274-28d6-af7f-43c12863bf2f\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"IoT SDKs\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DEVICES/IOTHUBS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/00850ac8-e19a-8756-3969-3c1d5ef60c84\",\r\n \"name\": \"00850ac8-e19a-8756-3969-3c1d5ef60c84\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"IoT Solution Accelerators\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/0283d26b-bad8-f0e2-37f4-86dc0328c710\",\r\n \"name\": \"0283d26b-bad8-f0e2-37f4-86dc0328c710\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Key Vault\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.KEYVAULT/VAULTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/5a3a423f-8667-9095-1770-0a554a934512\",\r\n \"name\": \"5a3a423f-8667-9095-1770-0a554a934512\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Kubernetes Service (AKS)\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CONTAINERSERVICE/MANAGEDCLUSTERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b8925cb6-338d-9b0c-2655-1ef611982fc4\",\r\n \"name\": \"b8925cb6-338d-9b0c-2655-1ef611982fc4\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Lab Services and DevTest Labs\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DEVTESTLAB/LABS\",\r\n \"MICROSOFT.LABSERVICES/LABACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b0882e3d-d09c-ca61-725b-b5d318365454\",\r\n \"name\": \"b0882e3d-d09c-ca61-725b-b5d318365454\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Lighthouse\",\r\n \"resourceTypes\": [\r\n \"Microsoft.ManagedServices\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/7b29574f-b855-9dec-9b08-fe4aeaa3bbc0\",\r\n \"name\": \"7b29574f-b855-9dec-9b08-fe4aeaa3bbc0\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Load Balancer\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NETWORK/LOADBALANCERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/1bfb8072-ed96-9acc-b57c-34d716b5f674\",\r\n \"name\": \"1bfb8072-ed96-9acc-b57c-34d716b5f674\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Log Analytics\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.OPERATIONALINSIGHTS/WORKSPACES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/9239daee-9951-e495-0aee-bf6b73708882\",\r\n \"name\": \"9239daee-9951-e495-0aee-bf6b73708882\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Logic App\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.LOGIC/WORKFLOWS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/a1799293-1194-133d-4407-156c57152643\",\r\n \"name\": \"a1799293-1194-133d-4407-156c57152643\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Machine Learning\",\r\n \"resourceTypes\": [\r\n \"Microsoft.MachineLearningServices/workspaces\",\r\n \"Microsoft.MachineLearningServices\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/afd16b5d-3a02-dd9d-8f7f-9768a7345f81\",\r\n \"name\": \"afd16b5d-3a02-dd9d-8f7f-9768a7345f81\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Machine Learning Studio\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.MACHINELEARNING/WORKSPACES\",\r\n \"MICROSOFT.MACHINELEARNING/COMMITMENTPLANS\",\r\n \"MICROSOFT.MACHINELEARNING/WEBSERVICES\",\r\n \"MICROSOFT.MACHINELEARNINGEXPERIMENTATION/ACCOUNTS\",\r\n \"MICROSOFT.MACHINELEARNINGMODELMANAGEMENT/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/4600d245-9a8d-be9c-b0b7-945467c24186\",\r\n \"name\": \"4600d245-9a8d-be9c-b0b7-945467c24186\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Managed Identities for Azure Resources\",\r\n \"resourceTypes\": [\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2c32f727-0b95-8324-22c8-b953c938833c\",\r\n \"name\": \"2c32f727-0b95-8324-22c8-b953c938833c\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Management Groups\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/c52a04cc-be90-03ef-d76e-80cd1b338fb3\",\r\n \"name\": \"c52a04cc-be90-03ef-d76e-80cd1b338fb3\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Maps\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.MAPS/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/efa0fcb8-3325-6eb7-b451-8e3a853aaead\",\r\n \"name\": \"efa0fcb8-3325-6eb7-b451-8e3a853aaead\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Media Service\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.MEDIA/MEDIASERVICES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/9636b9f4-3013-b4d0-1dbe-8b202575f592\",\r\n \"name\": \"9636b9f4-3013-b4d0-1dbe-8b202575f592\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Metrics\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/a96cb196-59fe-00a7-5ff7-889765d10494\",\r\n \"name\": \"a96cb196-59fe-00a7-5ff7-889765d10494\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Antimalware for Azure\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/3f816e19-cbf7-f192-a725-63c0ebe7d07d\",\r\n \"name\": \"3f816e19-cbf7-f192-a725-63c0ebe7d07d\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Genomics\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/e76cbe81-8c12-1f2f-85c7-6064644116a4\",\r\n \"name\": \"e76cbe81-8c12-1f2f-85c7-6064644116a4\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Graph Authentication and Authorization (Azure AD)\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/437e7d94-a4b3-68bd-a23a-087f528d47dd\",\r\n \"name\": \"437e7d94-a4b3-68bd-a23a-087f528d47dd\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Graph Files, Sites and Lists APIs\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/af52d398-4ddb-1e1d-2c6c-6767634b015e\",\r\n \"name\": \"af52d398-4ddb-1e1d-2c6c-6767634b015e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Graph Messages, Calendar and Contacts APIs\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/c9a40005-5758-83c0-32b8-9e7910c21595\",\r\n \"name\": \"c9a40005-5758-83c0-32b8-9e7910c21595\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Graph Other Microsoft Graph APIs\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/46c9bb77-3f94-f481-375c-911d8f0f9a0e\",\r\n \"name\": \"46c9bb77-3f94-f481-375c-911d8f0f9a0e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Graph Teamwork APIs (Teams)\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/53aa5987-de52-9110-f612-9fe34980e53a\",\r\n \"name\": \"53aa5987-de52-9110-f612-9fe34980e53a\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Graph Users, Groups, and Identity and Access APIs\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/8ab9233e-aa65-ab0a-cf6f-7e4ec528556a\",\r\n \"name\": \"8ab9233e-aa65-ab0a-cf6f-7e4ec528556a\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Healthcare Bot Service\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/389d15a1-c6fa-bbb6-f3fd-523a62a2b3c5\",\r\n \"name\": \"389d15a1-c6fa-bbb6-f3fd-523a62a2b3c5\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Intune\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/ec9779ed-b811-79e3-38ab-534ce832bfa5\",\r\n \"name\": \"ec9779ed-b811-79e3-38ab-534ce832bfa5\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Machine Learning Server (R Server)\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/004289a5-11b0-8289-47ea-f2b4c62c4a47\",\r\n \"name\": \"004289a5-11b0-8289-47ea-f2b4c62c4a47\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Mobile App\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.WEB/SITES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b7743438-942e-ef29-9abc-589fd697fb9e\",\r\n \"name\": \"b7743438-942e-ef29-9abc-589fd697fb9e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Network Performance Monitor (NPM)\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/01c5defa-028b-c44f-cefa-e5d836887f2e\",\r\n \"name\": \"01c5defa-028b-c44f-cefa-e5d836887f2e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Network Virtual Appliance\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/29297681-a8c0-eaa9-341f-f72630a5b9c3\",\r\n \"name\": \"29297681-a8c0-eaa9-341f-f72630a5b9c3\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Network Watcher\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b9710604-e660-5d57-1b18-3aef73bd21d3\",\r\n \"name\": \"b9710604-e660-5d57-1b18-3aef73bd21d3\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Notification Hub\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NOTIFICATIONHUBS/NAMESPACES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/176fac6b-1982-68b4-6f2e-3e5d3a0c99a4\",\r\n \"name\": \"176fac6b-1982-68b4-6f2e-3e5d3a0c99a4\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Open Datasets\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/fae15df4-4549-8074-e6ab-11ca2b5a1645\",\r\n \"name\": \"fae15df4-4549-8074-e6ab-11ca2b5a1645\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Peering Service - Preview\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Network\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/10b4ca52-06e3-3064-3788-5b396ae8ff45\",\r\n \"name\": \"10b4ca52-06e3-3064-3788-5b396ae8ff45\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Policy\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6d3f465f-843e-e142-40aa-fd1eda4c80c8\",\r\n \"name\": \"6d3f465f-843e-e142-40aa-fd1eda4c80c8\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Portal\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/3faebc17-db7f-212f-8536-9a5048474831\",\r\n \"name\": \"3faebc17-db7f-212f-8536-9a5048474831\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Power BI Embedded\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.POWERBIDEDICATED/CAPACITIES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/5d4f816f-f02c-f8f8-a8f4-423509f8b036\",\r\n \"name\": \"5d4f816f-f02c-f8f8-a8f4-423509f8b036\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Queue Storage\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICSTORAGE/STORAGEACCOUNTS\",\r\n \"MICROSOFT.STORAGE/STORAGEACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/351dadd2-b167-7960-06bc-be843b705826\",\r\n \"name\": \"351dadd2-b167-7960-06bc-be843b705826\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Relay\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.RELAY/NAMESPACES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/c2804d27-8e0a-f2a3-8540-f4318f539ff6\",\r\n \"name\": \"c2804d27-8e0a-f2a3-8540-f4318f539ff6\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Role Based Access Control (RBAC) for Azure Resources (IAM)\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/4b42e182-ce1c-ee75-e32b-e85fe73d6fbb\",\r\n \"name\": \"4b42e182-ce1c-ee75-e32b-e85fe73d6fbb\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"SAP Cloud Platform\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/dd1ed832-cfdd-b06b-d11b-77b590a10d4c\",\r\n \"name\": \"dd1ed832-cfdd-b06b-d11b-77b590a10d4c\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"SAP HANA Large Instance\",\r\n \"resourceTypes\": [\r\n \"Microsoft.HanaonAzure/hanaInstances\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/1b9679f1-9cb9-a8db-549e-2fcdfbb89e7c\",\r\n \"name\": \"1b9679f1-9cb9-a8db-549e-2fcdfbb89e7c\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Search\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.SEARCH/SEARCHSERVICES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/fb1b37f8-2716-86c2-c2e1-684b5292d401\",\r\n \"name\": \"fb1b37f8-2716-86c2-c2e1-684b5292d401\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Security Center\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/06bfd9d3-516b-d5c6-5802-169c800dec89\",\r\n \"name\": \"06bfd9d3-516b-d5c6-5802-169c800dec89\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Service and subscription limits (quotas)\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/23e2c469-4b37-ebf5-0a3f-72e8b1407301\",\r\n \"name\": \"23e2c469-4b37-ebf5-0a3f-72e8b1407301\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Service Bus\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.SERVICEBUS/NAMESPACES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/7fa9504c-364e-66b7-830e-f1333a2e4fe4\",\r\n \"name\": \"7fa9504c-364e-66b7-830e-f1333a2e4fe4\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Service Catalog\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Solutions/applicationDefinitions\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/a730ab7a-33ae-c83a-bca5-4935433e38ff\",\r\n \"name\": \"a730ab7a-33ae-c83a-bca5-4935433e38ff\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Service Fabric\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.SERVICEFABRIC/CLUSTERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/a76b7230-2d2f-b294-8189-319db5e5d116\",\r\n \"name\": \"a76b7230-2d2f-b294-8189-319db5e5d116\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Service Fabric on Linux\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/bfd77156-870d-17ee-c9d1-5450f390f63f\",\r\n \"name\": \"bfd77156-870d-17ee-c9d1-5450f390f63f\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"SignalR Service\",\r\n \"resourceTypes\": [\r\n \"Microsoft.SignalRService/SignalR\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/e4ddc3b0-1e6d-aaa2-4279-8e5027351d76\",\r\n \"name\": \"e4ddc3b0-1e6d-aaa2-4279-8e5027351d76\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Spatial Anchors – Preview\",\r\n \"resourceTypes\": [\r\n \"Microsoft.MixedReality\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/bbc183d4-df10-8580-d10b-4123c10ae34d\",\r\n \"name\": \"bbc183d4-df10-8580-d10b-4123c10ae34d\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Spring Cloud - Preview\",\r\n \"resourceTypes\": [\r\n \"Microsoft.AppPlatform/Spring\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/95412dd5-f222-a91f-98a6-144a84418c66\",\r\n \"name\": \"95412dd5-f222-a91f-98a6-144a84418c66\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"SQL Database\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.SQL/SERVERS\",\r\n \"MICROSOFT.SQL/SERVERS/DATABASES\",\r\n \"MICROSOFT.SQL/SERVERS/ELASTICPOOLS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/9b629e89-4ea0-53ec-9409-1579b8c41453\",\r\n \"name\": \"9b629e89-4ea0-53ec-9409-1579b8c41453\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"SQL Database Managed Instance\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.SQL/MANAGEDINSTANCES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/40ef020e-8ae7-8d57-b538-9153c47cee69\",\r\n \"name\": \"40ef020e-8ae7-8d57-b538-9153c47cee69\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"SQL Server in VM - Linux\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/53b14ef9-9b69-4d8c-a458-b8e4c132a815\",\r\n \"name\": \"53b14ef9-9b69-4d8c-a458-b8e4c132a815\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"SQL Server in VM - Windows\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICCOMPUTE/VIRTUALMACHINES\",\r\n \"MICROSOFT.COMPUTE/VIRTUALMACHINES\",\r\n \"Microsoft.SqlVirtualMachine/sqlVirtualMachines\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/4046cf79-84e4-c890-4fdb-73137d6506a5\",\r\n \"name\": \"4046cf79-84e4-c890-4fdb-73137d6506a5\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"SQL Server Registry\",\r\n \"resourceTypes\": [\r\n \"Microsoft.AzureData/sqlServerRegistrations\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/effcf656-f62f-92f2-8cef-2b28aea2da1f\",\r\n \"name\": \"effcf656-f62f-92f2-8cef-2b28aea2da1f\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"SQL Server Stretch Database\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6a9c20ed-85c7-c289-d5e2-560da8f2a7c8\",\r\n \"name\": \"6a9c20ed-85c7-c289-d5e2-560da8f2a7c8\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Storage Account Management\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICSTORAGE/STORAGEACCOUNTS\",\r\n \"MICROSOFT.STORAGE/STORAGEACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/94c5f326-7ab1-6ef3-c3c0-8e0b5a584085\",\r\n \"name\": \"94c5f326-7ab1-6ef3-c3c0-8e0b5a584085\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Storage Explorer\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/ffe1bb13-3bb2-e99d-35fa-d0c165557f88\",\r\n \"name\": \"ffe1bb13-3bb2-e99d-35fa-d0c165557f88\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"StorSimple Data Manager\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.HYBRIDDATA/DATAMANAGERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/30e73728-5d13-cbf4-5c57-3036ed1067fd\",\r\n \"name\": \"30e73728-5d13-cbf4-5c57-3036ed1067fd\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Stream Analytics\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.STREAMANALYTICS/STREAMINGJOBS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/f3dc5421-79ef-1efa-41a5-42bf3cbb52c6\",\r\n \"name\": \"f3dc5421-79ef-1efa-41a5-42bf3cbb52c6\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Subscription management\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/8418caaf-4634-b4c0-d9b6-27c266b6b67b\",\r\n \"name\": \"8418caaf-4634-b4c0-d9b6-27c266b6b67b\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Table Storage\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICSTORAGE/STORAGEACCOUNTS\",\r\n \"MICROSOFT.STORAGE/STORAGEACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/e4d6b9b0-79d5-3133-c4db-460a39e8a622\",\r\n \"name\": \"e4d6b9b0-79d5-3133-c4db-460a39e8a622\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Time Series Insights\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.TIMESERIESINSIGHTS/ENVIRONMENTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/66fff2d6-c34e-ac9b-d1ba-6631ab20989e\",\r\n \"name\": \"66fff2d6-c34e-ac9b-d1ba-6631ab20989e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Traffic Manager – DNS based load balancing\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NETWORK/TRAFFICMANAGERPROFILES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/99dd2657-2a74-8c5a-951f-23abdd7851c6\",\r\n \"name\": \"99dd2657-2a74-8c5a-951f-23abdd7851c6\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Universal Print - Preview\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/393f9162-a29a-1e9f-1972-d524c7bc7026\",\r\n \"name\": \"393f9162-a29a-1e9f-1972-d524c7bc7026\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Video Indexer\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/722ccc66-c988-d2ac-1ec6-b7aebc857f2d\",\r\n \"name\": \"722ccc66-c988-d2ac-1ec6-b7aebc857f2d\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Machine running Citrix\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b6492139-637a-c445-ee02-5dc6749337c3\",\r\n \"name\": \"b6492139-637a-c445-ee02-5dc6749337c3\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Machine running Cloud Foundry\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc\",\r\n \"name\": \"cddd3eb5-1830-b494-44fd-782f691479dc\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Machine running Linux\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICCOMPUTE/VIRTUALMACHINES\",\r\n \"MICROSOFT.COMPUTE/VIRTUALMACHINES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87\",\r\n \"name\": \"de8937fc-74cc-daa7-2639-e1fe433dcb87\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Machine running RedHat\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICCOMPUTE/VIRTUALMACHINES\",\r\n \"MICROSOFT.COMPUTE/VIRTUALMACHINES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0\",\r\n \"name\": \"98e5cec8-2650-28c1-92e8-0ecaa232eec0\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Machine running SUSE\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Compute/virtualmachines\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7\",\r\n \"name\": \"2340ae8b-c745-572f-6ea8-661d68c08bd7\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Machine running Ubuntu\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICCOMPUTE/VIRTUALMACHINES\",\r\n \"MICROSOFT.COMPUTE/VIRTUALMACHINES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396\",\r\n \"name\": \"6f16735c-b0ae-b275-ad3a-03479cfa1396\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Machine running Windows\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICCOMPUTE/VIRTUALMACHINES\",\r\n \"MICROSOFT.COMPUTE/VIRTUALMACHINES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/e9e31931-21fa-d50a-e6e7-e37d5d784591\",\r\n \"name\": \"e9e31931-21fa-d50a-e6e7-e37d5d784591\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Machine Scale Sets\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.COMPUTE/VIRTUALMACHINESCALESETS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b25271d3-6431-dfbc-5f12-5693326809b3\",\r\n \"name\": \"b25271d3-6431-dfbc-5f12-5693326809b3\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Network\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NETWORK/VIRTUALNETWORKS\",\r\n \"MICROSOFT.CLASSICNETWORK/VIRTUALNETWORKS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/e980d0ab-c6c3-894b-8a1d-74564e159e3b\",\r\n \"name\": \"e980d0ab-c6c3-894b-8a1d-74564e159e3b\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Network NAT - Preview\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Network/NATGateways\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/d3b69052-33aa-55e7-6d30-ebb7040f9766\",\r\n \"name\": \"d3b69052-33aa-55e7-6d30-ebb7040f9766\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual WAN\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NETWORK/VIRTUALWANS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/5a813df8-0060-7015-892d-9f17015a6706\",\r\n \"name\": \"5a813df8-0060-7015-892d-9f17015a6706\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"VPN Gateway\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NETWORK/VIRTUALNETWORKGATEWAYS\",\r\n \"MICROSOFT.NETWORK/CONNECTIONS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b452a42b-3779-64de-532c-8a32738357a6\",\r\n \"name\": \"b452a42b-3779-64de-532c-8a32738357a6\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Web App (Linux)\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.WEB/SITES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/1890289e-747c-7ef6-b4f5-b1dbb0bead28\",\r\n \"name\": \"1890289e-747c-7ef6-b4f5-b1dbb0bead28\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Web App (Windows)\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.WEB/SITES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/d40f17bb-8b19-117c-f69a-d1be4187f657\",\r\n \"name\": \"d40f17bb-8b19-117c-f69a-d1be4187f657\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Web App for Containers\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.WEB/SITES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/63cefc01-98f2-7ef4-2b5f-0c4b268a7dad\",\r\n \"name\": \"63cefc01-98f2-7ef4-2b5f-0c4b268a7dad\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Windows Virtual Desktop\",\r\n \"resourceTypes\": []\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/484e2236-bc6d-b1bb-76d2-7d09278cf9ea\",\r\n \"name\": \"484e2236-bc6d-b1bb-76d2-7d09278cf9ea\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Activity Logs\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/809e8afe-489e-08b0-95f2-08f835a383e8\",\r\n \"name\": \"809e8afe-489e-08b0-95f2-08f835a383e8\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Advanced Threat Protection - Azure\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6859f4e8-4a1d-13e4-f276-6d055007e83d\",\r\n \"name\": \"6859f4e8-4a1d-13e4-f276-6d055007e83d\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Advanced Threat Protection - Microsoft Defender\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/94332e54-73b0-b8e3-306e-db3ad13d950b\",\r\n \"name\": \"94332e54-73b0-b8e3-306e-db3ad13d950b\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Advanced Threat Protection - O365\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/26d8424b-0a41-4443-cbc6-0309ea8708d0\",\r\n \"name\": \"26d8424b-0a41-4443-cbc6-0309ea8708d0\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Advisor\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/8f1ddc5f-0c5e-50c7-9810-e01a8d1da925\",\r\n \"name\": \"8f1ddc5f-0c5e-50c7-9810-e01a8d1da925\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"AKS Engine on Azure Stack Hub\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/c1840ac9-309f-f235-c0ae-4782f283b698\",\r\n \"name\": \"c1840ac9-309f-f235-c0ae-4782f283b698\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Alerts and Action Groups\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.INSIGHTS/ALERTRULES\",\r\n \"MICROSOFT.INSIGHTS/ACTIVITYLOGALERTS\",\r\n \"MICROSOFT.INSIGHTS/METRICALERTS\",\r\n \"MICROSOFT.INSIGHTS/SCHEDULEDQUERYRULES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/e8fe7c6f-d883-c57f-6576-cf801ca30653\",\r\n \"name\": \"e8fe7c6f-d883-c57f-6576-cf801ca30653\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Analysis Services\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.ANALYSISSERVICES/SERVERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/07651e65-958a-0877-36f3-61bbba85d783\",\r\n \"name\": \"07651e65-958a-0877-36f3-61bbba85d783\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"API for FHIR\",\r\n \"resourceTypes\": [\r\n \"Microsoft.HealthcareApis\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b4d0e877-0166-0474-9a76-b5be30ba40e4\",\r\n \"name\": \"b4d0e877-0166-0474-9a76-b5be30ba40e4\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"API Management Service\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.APIMANAGEMENT/SERVICE\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/e14f616b-42c5-4515-3d7c-67935eece51a\",\r\n \"name\": \"e14f616b-42c5-4515-3d7c-67935eece51a\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"App Configuration\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Azconfig\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/445c0905-55e2-4f42-d853-ec9e17a5180e\",\r\n \"name\": \"445c0905-55e2-4f42-d853-ec9e17a5180e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"App Service Certificates\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CERTIFICATEREGISTRATION/CERTIFICATEORDERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b7d2f8b7-7d20-cf2f-ddd5-5543ada54bd2\",\r\n \"name\": \"b7d2f8b7-7d20-cf2f-ddd5-5543ada54bd2\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"App Service Domains\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DOMAINREGISTRATION/DOMAINS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/101732bb-31af-ee61-7c16-d4ad77c86a50\",\r\n \"name\": \"101732bb-31af-ee61-7c16-d4ad77c86a50\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Application Gateway\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NETWORK/APPLICATIONGATEWAYS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/63df7848-ce1c-06d4-517f-2a62983372c6\",\r\n \"name\": \"63df7848-ce1c-06d4-517f-2a62983372c6\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Application Insights\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.INSIGHTS/COMPONENTS\",\r\n \"MICROSOFT.INSIGHTS/ACTIVITYLOGALERTS\",\r\n \"MICROSOFT.INSIGHTS/METRICALERTS\",\r\n \"MICROSOFT.INSIGHTS/SCHEDULEDQUERYRULES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2fd37acf-7616-eae7-546b-1a78a16d11b5\",\r\n \"name\": \"2fd37acf-7616-eae7-546b-1a78a16d11b5\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"ASE\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.WEB/HOSTINGENVIRONMENTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/90426252-f966-63ea-cbda-cab5ceaa865d\",\r\n \"name\": \"90426252-f966-63ea-cbda-cab5ceaa865d\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Automation\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.AUTOMATION/AUTOMATIONACCOUNTS\",\r\n \"MICROSOFT.AUTOMATION/AUTOMATIONACCOUNTS/RUNBOOKS\",\r\n \"MICROSOFT.AUTOMATION/AUTOMATIONACCOUNTS/JOBS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/82881226-e06c-2b57-3365-38437e84059e\",\r\n \"name\": \"82881226-e06c-2b57-3365-38437e84059e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Autoscale\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.INSIGHTS/AUTOSCALESETTINGS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/500d88b2-c24c-0d5d-3b76-acfde7d6ee20\",\r\n \"name\": \"500d88b2-c24c-0d5d-3b76-acfde7d6ee20\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Avere vFXT\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/7505036e-a364-8354-e894-56d394dd4a61\",\r\n \"name\": \"7505036e-a364-8354-e894-56d394dd4a61\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Active Directory App Integration and Development\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b16f3aa1-e798-0090-9159-5dc3bae17c5b\",\r\n \"name\": \"b16f3aa1-e798-0090-9159-5dc3bae17c5b\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Active Directory Business To Consumer (B2C)\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/3a36c1ba-f910-91c3-9f17-075d63c9488a\",\r\n \"name\": \"3a36c1ba-f910-91c3-9f17-075d63c9488a\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Active Directory Directories, Domains, and Objects\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/a69d6bc1-d1db-61e6-2668-451ae3784f86\",\r\n \"name\": \"a69d6bc1-d1db-61e6-2668-451ae3784f86\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Active Directory Domain Services (VM – Domain Controllers)\",\r\n \"resourceTypes\": [\r\n \"Microsoft.AAD/DomainServices\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b98631b1-d53a-3ac4-3181-aef136ec703d\",\r\n \"name\": \"b98631b1-d53a-3ac4-3181-aef136ec703d\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Active Directory Governance, Compliance and Reporting\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/516fe906-3a1a-2878-02fd-8dd37ea207de\",\r\n \"name\": \"516fe906-3a1a-2878-02fd-8dd37ea207de\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Active Directory Sign-In and Multi-Factor Authentication\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/38a234dd-6baf-d93b-2c48-5a735a3550ed\",\r\n \"name\": \"38a234dd-6baf-d93b-2c48-5a735a3550ed\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Active Directory User Provisioning and Synchronization\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/17318db1-cfda-52da-b65f-68e53ba89e64\",\r\n \"name\": \"17318db1-cfda-52da-b65f-68e53ba89e64\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Arc for servers\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/17d72dfc-8f48-94cb-05e6-5f88efdf72d7\",\r\n \"name\": \"17d72dfc-8f48-94cb-05e6-5f88efdf72d7\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Backup\",\r\n \"resourceTypes\": [\r\n \"Microsoft.RecoveryServices/vaults\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/76b41038-ae2e-0cb8-32f8-a575b98d07ae\",\r\n \"name\": \"76b41038-ae2e-0cb8-32f8-a575b98d07ae\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Blockchain Service - Preview\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Blockchain\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/58cf91d7-3a04-37d3-9818-9bd5c979d9a9\",\r\n \"name\": \"58cf91d7-3a04-37d3-9818-9bd5c979d9a9\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure CDN\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/3f14906b-a48e-b51a-d700-b3eb7784bce8\",\r\n \"name\": \"3f14906b-a48e-b51a-d700-b3eb7784bce8\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Database for MariaDB\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DBFORMARIADB/SERVERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/17c72f78-cb09-bc5b-9b99-f3d618e1f057\",\r\n \"name\": \"17c72f78-cb09-bc5b-9b99-f3d618e1f057\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Database for MySQL\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DBFORMYSQL/SERVERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/d4d4e6ba-73e5-a166-549b-4643b78f4d6f\",\r\n \"name\": \"d4d4e6ba-73e5-a166-549b-4643b78f4d6f\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Database for PostgreSQL\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DBFORPOSTGRESQL/SERVERS\",\r\n \"MICROSOFT.DBFORPOSTGRESQL/SERVERSV2\",\r\n \"MICROSOFT.DBFORPOSTGRESQL/SERVERGROUPS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/197bc2a0-4681-2302-f03f-ba9abbcdaddb\",\r\n \"name\": \"197bc2a0-4681-2302-f03f-ba9abbcdaddb\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Dev Spaces\",\r\n \"resourceTypes\": [\r\n \"DevTools\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cd9d74ec-8333-b326-f42f-303e223e04eb\",\r\n \"name\": \"cd9d74ec-8333-b326-f42f-303e223e04eb\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure DevOps Services\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Visualstudio\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/f0269138-eb6e-a81a-10e9-17965b5683d4\",\r\n \"name\": \"f0269138-eb6e-a81a-10e9-17965b5683d4\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure DNS\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NETWORK/DNSZONES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/3b799b70-420a-6397-e69c-853341d0eab5\",\r\n \"name\": \"3b799b70-420a-6397-e69c-853341d0eab5\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Firewall\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Network/azureFirewalls\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/f1e803c0-d4aa-156d-8507-3f9e5e4e1504\",\r\n \"name\": \"f1e803c0-d4aa-156d-8507-3f9e5e4e1504\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Firewall Manager - Preview\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Network/firewallPolicies\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/3d598a6c-5432-adab-e87a-1dfdbb562302\",\r\n \"name\": \"3d598a6c-5432-adab-e87a-1dfdbb562302\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure FXT Edge Filer\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/8168c456-2014-a581-dde8-d25e47d964c8\",\r\n \"name\": \"8168c456-2014-a581-dde8-d25e47d964c8\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Information Protection\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/e29406fa-af70-5215-e29b-9c9b7f5204d3\",\r\n \"name\": \"e29406fa-af70-5215-e29b-9c9b7f5204d3\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Kinect Dev Kit\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/ef44dd7b-4344-edcf-2eb1-f6f094fd46a3\",\r\n \"name\": \"ef44dd7b-4344-edcf-2eb1-f6f094fd46a3\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Migrate\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Migrate/migrateProjects\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/06d6dec8-469a-b652-f8e8-61e47c34efef\",\r\n \"name\": \"06d6dec8-469a-b652-f8e8-61e47c34efef\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure mobile app (for Android & iOS)\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/00743e6b-ddfd-e1cb-b90e-2a9f8d1c2a52\",\r\n \"name\": \"00743e6b-ddfd-e1cb-b90e-2a9f8d1c2a52\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure NetApp Files\",\r\n \"resourceTypes\": [\r\n \"Microsoft.NetApp/netAppAccounts\",\r\n \"Microsoft.NetApp/netAppAccounts/capacityPools\",\r\n \"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/50cb0c81-4dee-0e4e-d7bd-caa5560e76af\",\r\n \"name\": \"50cb0c81-4dee-0e4e-d7bd-caa5560e76af\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Private Link\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Network/privateLinkServices\",\r\n \"Microsoft.Network/privateEndpoints\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b701b8d6-fc99-aba8-bab9-bc2e171fa89c\",\r\n \"name\": \"b701b8d6-fc99-aba8-bab9-bc2e171fa89c\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure RedHat OpenShift\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cb6b214b-fbeb-8fd1-a055-3d60bbe81c28\",\r\n \"name\": \"cb6b214b-fbeb-8fd1-a055-3d60bbe81c28\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Resource Graph\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/9cd60433-a646-8748-7e7f-fd0781fea78e\",\r\n \"name\": \"9cd60433-a646-8748-7e7f-fd0781fea78e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Sentinel\",\r\n \"resourceTypes\": [\r\n \"Microsoft.SecurityInsights\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b1d432df-e9cc-ff08-d261-32586b843bc1\",\r\n \"name\": \"b1d432df-e9cc-ff08-d261-32586b843bc1\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Site Recovery\",\r\n \"resourceTypes\": [\r\n \"Microsoft.RecoveryServices/vaults\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/a6475480-6048-1d77-76fc-3118551f24c1\",\r\n \"name\": \"a6475480-6048-1d77-76fc-3118551f24c1\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Sphere\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2950380d-f11a-136b-1b95-017b71f25ef8\",\r\n \"name\": \"2950380d-f11a-136b-1b95-017b71f25ef8\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Stack Edge and Data Box Gateway\",\r\n \"resourceTypes\": [\r\n \"Microsoft.DataBoxEdge/DataBoxEdgeDevices\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/32d322a8-acae-202d-e9a9-7371dccf381b\",\r\n \"name\": \"32d322a8-acae-202d-e9a9-7371dccf381b\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Stack Hub\",\r\n \"resourceTypes\": [\r\n \"Microsoft.AzureStack/registrations\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/1dcbb98a-fbff-9e2a-08c6-0f1fbe934906\",\r\n \"name\": \"1dcbb98a-fbff-9e2a-08c6-0f1fbe934906\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure StorSimple 1200 Series\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.STORSIMPLE/MANAGERS\",\r\n \"MICROSOFT.STORSIMPLEBVTD2/MANAGERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/9fccedfd-3d56-635e-e377-c72e2cdb402f\",\r\n \"name\": \"9fccedfd-3d56-635e-e377-c72e2cdb402f\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure StorSimple 8000 Series\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.STORSIMPLE/MANAGERS\",\r\n \"MICROSOFT.STORSIMPLEBVTD2/MANAGERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/20c0b7e3-3084-2fc5-5530-1ff0cc21e885\",\r\n \"name\": \"20c0b7e3-3084-2fc5-5530-1ff0cc21e885\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Synapse Analytics\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.SQL/SERVERS\",\r\n \"MICROSOFT.SQL/SERVERS/DATABASES\",\r\n \"Microsoft.Synapse\",\r\n \"MICROSOFT.SYNAPSE/WORKSPACES\",\r\n \"MICROSOFT.SYNAPSE/WORKSPACES/BIGDATAPOOLS\",\r\n \"MICROSOFT.SYNAPSE/WORKSPACES/SQLPOOLS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/440fc530-a802-3276-f67b-7c39d1c8e972\",\r\n \"name\": \"440fc530-a802-3276-f67b-7c39d1c8e972\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Azure VMware Solution by CloudSimple\",\r\n \"resourceTypes\": [\r\n \"Microsoft.VMwareCloudSimple\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/ffc9bb42-93e4-eb40-5421-ba3537f3a012\",\r\n \"name\": \"ffc9bb42-93e4-eb40-5421-ba3537f3a012\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Bastion\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Network/bastionHosts\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2bcd736d-e519-397d-e595-396f4e0cce88\",\r\n \"name\": \"2bcd736d-e519-397d-e595-396f4e0cce88\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Batch AI - Preview\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/3f33d852-e61f-d835-8217-a9a677d96914\",\r\n \"name\": \"3f33d852-e61f-d835-8217-a9a677d96914\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Batch Service\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.BATCH/BATCHACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc\",\r\n \"name\": \"517f2da6-78fd-0498-4e22-ad26996b1dfc\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Billing\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/a2c69e6c-34b6-fc5d-0f35-b496a071c28d\",\r\n \"name\": \"a2c69e6c-34b6-fc5d-0f35-b496a071c28d\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Blob Storage\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICSTORAGE/STORAGEACCOUNTS\",\r\n \"MICROSOFT.STORAGE/STORAGEACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/f26f06d5-c3b1-0372-8c5b-93a371ec434c\",\r\n \"name\": \"f26f06d5-c3b1-0372-8c5b-93a371ec434c\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Blueprint - Preview\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Blueprint/BLUEPRINTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98134488-9bd9-db12-619c-06636d1ee55e\",\r\n \"name\": \"98134488-9bd9-db12-619c-06636d1ee55e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Bot Service\",\r\n \"resourceTypes\": [\r\n \"Microsoft.BotService/botServices\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/275635f1-6a9b-cca1-af9e-c379b30890ff\",\r\n \"name\": \"275635f1-6a9b-cca1-af9e-c379b30890ff\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cache for Redis\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CACHE/REDIS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/7dc03991-4dcf-cf5a-904f-35a243ca5551\",\r\n \"name\": \"7dc03991-4dcf-cf5a-904f-35a243ca5551\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cloud App Security\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/e79dcabe-5f77-3326-2112-74487e1e5f78\",\r\n \"name\": \"e79dcabe-5f77-3326-2112-74487e1e5f78\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cloud Services (Web roles/Worker roles)\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICCOMPUTE/DOMAINNAMES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/70a6ce77-640d-fb3b-d2e2-942c479a929b\",\r\n \"name\": \"70a6ce77-640d-fb3b-d2e2-942c479a929b\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cloud Shell\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/87112f97-cf14-d714-03cb-28af2e422e31\",\r\n \"name\": \"87112f97-cf14-d714-03cb-28af2e422e31\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cognitive Services\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/00677266-37a0-73ba-d7c4-ad3c814b2b11\",\r\n \"name\": \"00677266-37a0-73ba-d7c4-ad3c814b2b11\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cognitive Services-Computer Vision\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6dfefaed-7312-8350-bbe6-c452fe5749c7\",\r\n \"name\": \"6dfefaed-7312-8350-bbe6-c452fe5749c7\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cognitive Services-Custom Vision\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/01cde781-0618-be89-60ce-14ca8e939c7d\",\r\n \"name\": \"01cde781-0618-be89-60ce-14ca8e939c7d\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cognitive Services-Face API\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/7faf083e-7dd5-a35b-ba18-52eeac29d9a1\",\r\n \"name\": \"7faf083e-7dd5-a35b-ba18-52eeac29d9a1\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cognitive Services-LUIS\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/9a2cd2eb-f793-9717-a145-3497086f40b4\",\r\n \"name\": \"9a2cd2eb-f793-9717-a145-3497086f40b4\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cognitive Services-QnA Maker\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/8d2d990b-173c-fbee-3913-05e3f338b67b\",\r\n \"name\": \"8d2d990b-173c-fbee-3913-05e3f338b67b\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cognitive Services-Speech Services\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b1bfd43f-f4f6-7e3c-4a01-ed74b71b6dd7\",\r\n \"name\": \"b1bfd43f-f4f6-7e3c-4a01-ed74b71b6dd7\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cognitive Services-Text Analytics\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/4bc4301f-b40e-080d-9252-a523f88a16e7\",\r\n \"name\": \"4bc4301f-b40e-080d-9252-a523f88a16e7\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cognitive Services-Translator Text\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.COGNITIVESERVICES/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/fd718335-8143-4759-bb14-cf7cff4f585e\",\r\n \"name\": \"fd718335-8143-4759-bb14-cf7cff4f585e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Container Instances\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CONTAINERINSTANCE/CONTAINERGROUPS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/f100a6d5-17df-c517-a2bc-ecc2a5bfb975\",\r\n \"name\": \"f100a6d5-17df-c517-a2bc-ecc2a5bfb975\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Container Registry\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CONTAINERREGISTRY/REGISTRIES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/d9516a10-74b5-45f4-943d-a5281d7cf1bb\",\r\n \"name\": \"d9516a10-74b5-45f4-943d-a5281d7cf1bb\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Cosmos DB\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/53cdda84-33c0-81db-6a25-adaac64419d6\",\r\n \"name\": \"53cdda84-33c0-81db-6a25-adaac64419d6\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"CycleCloud\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/a091fbc6-3624-42e8-4b3c-654a29d6958e\",\r\n \"name\": \"a091fbc6-3624-42e8-4b3c-654a29d6958e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Data Box\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DATABOX/JOBS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/9a7df480-f592-a980-906c-bd1fd3060aa8\",\r\n \"name\": \"9a7df480-f592-a980-906c-bd1fd3060aa8\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Data Catalog\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DATACATALOG/CATALOGS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/0d06686e-fac3-fde3-a8c1-6dfbc8bd3865\",\r\n \"name\": \"0d06686e-fac3-fde3-a8c1-6dfbc8bd3865\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Data Explorer\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Kusto/Clusters\",\r\n \"Microsoft.Kusto/Databases\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/113715b9-70c6-3019-fa70-5d9f0c15c610\",\r\n \"name\": \"113715b9-70c6-3019-fa70-5d9f0c15c610\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Data Factory\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DATAFACTORY/DATAFACTORIES\",\r\n \"MICROSOFT.DATAFACTORY/FACTORIES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/eea96939-cf20-792a-ed0a-f11eb11336df\",\r\n \"name\": \"eea96939-cf20-792a-ed0a-f11eb11336df\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Data Lake Analytics\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DATALAKEANALYTICS/ACCOUNTS\",\r\n \"MICROSOFT.DATALAKEANALYTICS/ACCOUNTS/STORAGEACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/7ecbaeae-c1bc-285f-a3bd-b5a3ba00b294\",\r\n \"name\": \"7ecbaeae-c1bc-285f-a3bd-b5a3ba00b294\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Data Lake Storage Gen1\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DATALAKESTORE/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/a95c4ceb-9637-4484-2205-d1162a7d2249\",\r\n \"name\": \"a95c4ceb-9637-4484-2205-d1162a7d2249\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Data Lake Storage Gen2\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.STORAGE/STORAGEACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/0c1a625e-85d1-f83b-7248-2367293c9d85\",\r\n \"name\": \"0c1a625e-85d1-f83b-7248-2367293c9d85\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Data Share\",\r\n \"resourceTypes\": [\r\n \"Microsoft.DataShare/accounts\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/8c615be4-9081-f10c-5866-afa4fab9666d\",\r\n \"name\": \"8c615be4-9081-f10c-5866-afa4fab9666d\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Database Migration Service\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DATAMIGRATION/SERVICES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/3461f86b-df79-07f2-aad9-34a81b2d9023\",\r\n \"name\": \"3461f86b-df79-07f2-aad9-34a81b2d9023\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Databricks\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DATABRICKS/WORKSPACES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/d22650a0-c129-647b-967c-fb18c83584c6\",\r\n \"name\": \"d22650a0-c129-647b-967c-fb18c83584c6\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"DDOS Protection\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NETWORK/DDOSPROTECTIONPLANS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b9c52334-7da1-7360-b396-0406b0c9d3b7\",\r\n \"name\": \"b9c52334-7da1-7360-b396-0406b0c9d3b7\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Dedicated Host\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Compute\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/7d1ce754-b825-74b6-8022-87193cd96b6e\",\r\n \"name\": \"7d1ce754-b825-74b6-8022-87193cd96b6e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Dedicated HSM\",\r\n \"resourceTypes\": [\r\n \"Microsoft.HardwareSecurityModules/DedicatedHSM\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/1977ac05-0469-1162-4947-d733fb83040e\",\r\n \"name\": \"1977ac05-0469-1162-4947-d733fb83040e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Deployment Manager Service Topology - Preview\",\r\n \"resourceTypes\": [\r\n \"Microsoft.DeploymentManager\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/39dc26f0-c1b1-2323-c39f-3ae3860e0c37\",\r\n \"name\": \"39dc26f0-c1b1-2323-c39f-3ae3860e0c37\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Diagnostic Logs and Diagnostic Settings\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/f17737cc-a073-8ec8-04a9-a3f19c631dea\",\r\n \"name\": \"f17737cc-a073-8ec8-04a9-a3f19c631dea\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Digital Twins - Preview\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.IOTCENTRAL/IOTAPPS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/a79c6645-e39b-3410-6e3c-24c6b96b616b\",\r\n \"name\": \"a79c6645-e39b-3410-6e3c-24c6b96b616b\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Enrollment administration\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/bfe4c4f0-96eb-41a9-a9aa-23a3b5ed9974\",\r\n \"name\": \"bfe4c4f0-96eb-41a9-a9aa-23a3b5ed9974\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Event Grid\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.EVENTGRID/TOPICS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/4fa35c58-016c-a25b-4105-bd667c24ab1f\",\r\n \"name\": \"4fa35c58-016c-a25b-4105-bd667c24ab1f\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Event Hubs\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.EVENTHUB/NAMESPACES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/48ffed53-baf4-c26a-c7a1-4bea807be2a0\",\r\n \"name\": \"48ffed53-baf4-c26a-c7a1-4bea807be2a0\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Event Hubs on Azure Stack Hub - Preview\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/759b4975-eee7-178d-6996-31047d078bf2\",\r\n \"name\": \"759b4975-eee7-178d-6996-31047d078bf2\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"ExpressRoute\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NETWORK/EXPRESSROUTECIRCUITS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/ce989245-7b7b-ab4f-ac5a-a4ca2ee9d2a2\",\r\n \"name\": \"ce989245-7b7b-ab4f-ac5a-a4ca2ee9d2a2\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"ExpressRoute Service Provider\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/30dfd88b-b455-1748-a4a0-e4c5aa795663\",\r\n \"name\": \"30dfd88b-b455-1748-a4a0-e4c5aa795663\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Files Storage\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICSTORAGE/STORAGEACCOUNTS\",\r\n \"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\r\n \"MICROSOFT.STORAGESYNC/STORAGESYNCSERVICES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/fafcf178-45ee-85df-ef14-982729bf2f82\",\r\n \"name\": \"fafcf178-45ee-85df-ef14-982729bf2f82\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Front Door Service\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NETWORK/FRONTDOORS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/5ce8de69-abba-65a0-e0e4-a684bcbc7931\",\r\n \"name\": \"5ce8de69-abba-65a0-e0e4-a684bcbc7931\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Function App\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.WEB/SITES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/5ffad63a-3267-d6b7-2fa1-6d9134c1fa62\",\r\n \"name\": \"5ffad63a-3267-d6b7-2fa1-6d9134c1fa62\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"HDInsight Service\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.HDINSIGHT/CLUSTERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/e00b1ed8-fc24-fef4-6f4c-36d963708ae1\",\r\n \"name\": \"e00b1ed8-fc24-fef4-6f4c-36d963708ae1\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"High Performance Computing (HPC)\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6b415938-2927-0d9d-6c3c-fbacea64e42d\",\r\n \"name\": \"6b415938-2927-0d9d-6c3c-fbacea64e42d\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"HPC Cache\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/602a2167-4975-c8c4-6db6-5bf1081d80ec\",\r\n \"name\": \"602a2167-4975-c8c4-6db6-5bf1081d80ec\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Insights for Storage Accounts\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICSTORAGE/STORAGEACCOUNTS\",\r\n \"MICROSOFT.STORAGE/STORAGEACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/65e73690-23aa-be68-83be-a6b9bd188345\",\r\n \"name\": \"65e73690-23aa-be68-83be-a6b9bd188345\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Integration Service Environment (ISE)\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.LOGIC/WORKFLOWS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/fb35bf64-b744-16ba-68d1-e1853af0816e\",\r\n \"name\": \"fb35bf64-b744-16ba-68d1-e1853af0816e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"IoT Central\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.IOTCENTRAL/IOTAPPS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/ea37799f-166b-c702-e4d1-e17fa52b2984\",\r\n \"name\": \"ea37799f-166b-c702-e4d1-e17fa52b2984\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"IoT Device Provisioning Service\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DEVICES/PROVISIONINGSERVICES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/0ebfa061-1e74-5f8f-ed46-5a46e13e5d33\",\r\n \"name\": \"0ebfa061-1e74-5f8f-ed46-5a46e13e5d33\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"IoT Edge\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DEVICES/IOTHUBS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b8b1c1dd-dfe1-63e8-cc06-e6a1a1c5a853\",\r\n \"name\": \"b8b1c1dd-dfe1-63e8-cc06-e6a1a1c5a853\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"IoT Hub\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DEVICES/IOTHUBS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/4ba83714-c274-28d6-af7f-43c12863bf2f\",\r\n \"name\": \"4ba83714-c274-28d6-af7f-43c12863bf2f\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"IoT SDKs\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DEVICES/IOTHUBS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/00850ac8-e19a-8756-3969-3c1d5ef60c84\",\r\n \"name\": \"00850ac8-e19a-8756-3969-3c1d5ef60c84\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"IoT Solution Accelerators\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/0283d26b-bad8-f0e2-37f4-86dc0328c710\",\r\n \"name\": \"0283d26b-bad8-f0e2-37f4-86dc0328c710\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Key Vault\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.KEYVAULT/VAULTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/5a3a423f-8667-9095-1770-0a554a934512\",\r\n \"name\": \"5a3a423f-8667-9095-1770-0a554a934512\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Kubernetes Service (AKS)\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CONTAINERSERVICE/MANAGEDCLUSTERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b8925cb6-338d-9b0c-2655-1ef611982fc4\",\r\n \"name\": \"b8925cb6-338d-9b0c-2655-1ef611982fc4\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Lab Services and DevTest Labs\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.DEVTESTLAB/LABS\",\r\n \"MICROSOFT.LABSERVICES/LABACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b0882e3d-d09c-ca61-725b-b5d318365454\",\r\n \"name\": \"b0882e3d-d09c-ca61-725b-b5d318365454\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Lighthouse\",\r\n \"resourceTypes\": [\r\n \"Microsoft.ManagedServices\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/7b29574f-b855-9dec-9b08-fe4aeaa3bbc0\",\r\n \"name\": \"7b29574f-b855-9dec-9b08-fe4aeaa3bbc0\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Load Balancer\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NETWORK/LOADBALANCERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/1bfb8072-ed96-9acc-b57c-34d716b5f674\",\r\n \"name\": \"1bfb8072-ed96-9acc-b57c-34d716b5f674\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Log Analytics\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.OPERATIONALINSIGHTS/WORKSPACES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/9239daee-9951-e495-0aee-bf6b73708882\",\r\n \"name\": \"9239daee-9951-e495-0aee-bf6b73708882\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Logic App\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.LOGIC/WORKFLOWS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/a1799293-1194-133d-4407-156c57152643\",\r\n \"name\": \"a1799293-1194-133d-4407-156c57152643\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Machine Learning\",\r\n \"resourceTypes\": [\r\n \"Microsoft.MachineLearningServices/workspaces\",\r\n \"Microsoft.MachineLearningServices\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/afd16b5d-3a02-dd9d-8f7f-9768a7345f81\",\r\n \"name\": \"afd16b5d-3a02-dd9d-8f7f-9768a7345f81\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Machine Learning Studio\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.MACHINELEARNING/WORKSPACES\",\r\n \"MICROSOFT.MACHINELEARNING/COMMITMENTPLANS\",\r\n \"MICROSOFT.MACHINELEARNING/WEBSERVICES\",\r\n \"MICROSOFT.MACHINELEARNINGEXPERIMENTATION/ACCOUNTS\",\r\n \"MICROSOFT.MACHINELEARNINGMODELMANAGEMENT/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/4600d245-9a8d-be9c-b0b7-945467c24186\",\r\n \"name\": \"4600d245-9a8d-be9c-b0b7-945467c24186\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Managed Identities for Azure Resources\",\r\n \"resourceTypes\": [\r\n \"Microsoft.ManagedIdentity/userAssignedIdentities\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2c32f727-0b95-8324-22c8-b953c938833c\",\r\n \"name\": \"2c32f727-0b95-8324-22c8-b953c938833c\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Management Groups\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/c52a04cc-be90-03ef-d76e-80cd1b338fb3\",\r\n \"name\": \"c52a04cc-be90-03ef-d76e-80cd1b338fb3\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Maps\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.MAPS/ACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/efa0fcb8-3325-6eb7-b451-8e3a853aaead\",\r\n \"name\": \"efa0fcb8-3325-6eb7-b451-8e3a853aaead\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Media Service\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.MEDIA/MEDIASERVICES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/9636b9f4-3013-b4d0-1dbe-8b202575f592\",\r\n \"name\": \"9636b9f4-3013-b4d0-1dbe-8b202575f592\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Metrics\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/a96cb196-59fe-00a7-5ff7-889765d10494\",\r\n \"name\": \"a96cb196-59fe-00a7-5ff7-889765d10494\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Antimalware for Azure\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/3f816e19-cbf7-f192-a725-63c0ebe7d07d\",\r\n \"name\": \"3f816e19-cbf7-f192-a725-63c0ebe7d07d\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Genomics\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/e76cbe81-8c12-1f2f-85c7-6064644116a4\",\r\n \"name\": \"e76cbe81-8c12-1f2f-85c7-6064644116a4\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Graph Authentication and Authorization (Azure AD)\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/437e7d94-a4b3-68bd-a23a-087f528d47dd\",\r\n \"name\": \"437e7d94-a4b3-68bd-a23a-087f528d47dd\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Graph Files, Sites and Lists APIs\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/af52d398-4ddb-1e1d-2c6c-6767634b015e\",\r\n \"name\": \"af52d398-4ddb-1e1d-2c6c-6767634b015e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Graph Messages, Calendar and Contacts APIs\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/c9a40005-5758-83c0-32b8-9e7910c21595\",\r\n \"name\": \"c9a40005-5758-83c0-32b8-9e7910c21595\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Graph Other Microsoft Graph APIs\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/46c9bb77-3f94-f481-375c-911d8f0f9a0e\",\r\n \"name\": \"46c9bb77-3f94-f481-375c-911d8f0f9a0e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Graph Teamwork APIs (Teams)\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/53aa5987-de52-9110-f612-9fe34980e53a\",\r\n \"name\": \"53aa5987-de52-9110-f612-9fe34980e53a\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Graph Users, Groups, and Identity and Access APIs\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/8ab9233e-aa65-ab0a-cf6f-7e4ec528556a\",\r\n \"name\": \"8ab9233e-aa65-ab0a-cf6f-7e4ec528556a\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Healthcare Bot Service\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/389d15a1-c6fa-bbb6-f3fd-523a62a2b3c5\",\r\n \"name\": \"389d15a1-c6fa-bbb6-f3fd-523a62a2b3c5\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Intune\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/ec9779ed-b811-79e3-38ab-534ce832bfa5\",\r\n \"name\": \"ec9779ed-b811-79e3-38ab-534ce832bfa5\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Microsoft Machine Learning Server (R Server)\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/004289a5-11b0-8289-47ea-f2b4c62c4a47\",\r\n \"name\": \"004289a5-11b0-8289-47ea-f2b4c62c4a47\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Mobile App\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.WEB/SITES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b7743438-942e-ef29-9abc-589fd697fb9e\",\r\n \"name\": \"b7743438-942e-ef29-9abc-589fd697fb9e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Network Performance Monitor (NPM)\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/01c5defa-028b-c44f-cefa-e5d836887f2e\",\r\n \"name\": \"01c5defa-028b-c44f-cefa-e5d836887f2e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Network Virtual Appliance\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/29297681-a8c0-eaa9-341f-f72630a5b9c3\",\r\n \"name\": \"29297681-a8c0-eaa9-341f-f72630a5b9c3\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Network Watcher\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b9710604-e660-5d57-1b18-3aef73bd21d3\",\r\n \"name\": \"b9710604-e660-5d57-1b18-3aef73bd21d3\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Notification Hub\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NOTIFICATIONHUBS/NAMESPACES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/176fac6b-1982-68b4-6f2e-3e5d3a0c99a4\",\r\n \"name\": \"176fac6b-1982-68b4-6f2e-3e5d3a0c99a4\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Open Datasets\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/fae15df4-4549-8074-e6ab-11ca2b5a1645\",\r\n \"name\": \"fae15df4-4549-8074-e6ab-11ca2b5a1645\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Peering Service - Preview\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Network\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/10b4ca52-06e3-3064-3788-5b396ae8ff45\",\r\n \"name\": \"10b4ca52-06e3-3064-3788-5b396ae8ff45\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Policy\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6d3f465f-843e-e142-40aa-fd1eda4c80c8\",\r\n \"name\": \"6d3f465f-843e-e142-40aa-fd1eda4c80c8\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Portal\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/3faebc17-db7f-212f-8536-9a5048474831\",\r\n \"name\": \"3faebc17-db7f-212f-8536-9a5048474831\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Power BI Embedded\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.POWERBIDEDICATED/CAPACITIES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/5d4f816f-f02c-f8f8-a8f4-423509f8b036\",\r\n \"name\": \"5d4f816f-f02c-f8f8-a8f4-423509f8b036\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Queue Storage\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICSTORAGE/STORAGEACCOUNTS\",\r\n \"MICROSOFT.STORAGE/STORAGEACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/351dadd2-b167-7960-06bc-be843b705826\",\r\n \"name\": \"351dadd2-b167-7960-06bc-be843b705826\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Relay\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.RELAY/NAMESPACES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/c2804d27-8e0a-f2a3-8540-f4318f539ff6\",\r\n \"name\": \"c2804d27-8e0a-f2a3-8540-f4318f539ff6\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Role Based Access Control (RBAC) for Azure Resources (IAM)\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/4b42e182-ce1c-ee75-e32b-e85fe73d6fbb\",\r\n \"name\": \"4b42e182-ce1c-ee75-e32b-e85fe73d6fbb\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"SAP Cloud Platform\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/dd1ed832-cfdd-b06b-d11b-77b590a10d4c\",\r\n \"name\": \"dd1ed832-cfdd-b06b-d11b-77b590a10d4c\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"SAP HANA Large Instance\",\r\n \"resourceTypes\": [\r\n \"Microsoft.HanaonAzure/hanaInstances\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/9417a0bf-452b-2a6f-0ba5-61f12cafea8a\",\r\n \"name\": \"9417a0bf-452b-2a6f-0ba5-61f12cafea8a\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Scheduler\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.SCHEDULER/JOBCOLLECTIONS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/1b9679f1-9cb9-a8db-549e-2fcdfbb89e7c\",\r\n \"name\": \"1b9679f1-9cb9-a8db-549e-2fcdfbb89e7c\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Search\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.SEARCH/SEARCHSERVICES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/fb1b37f8-2716-86c2-c2e1-684b5292d401\",\r\n \"name\": \"fb1b37f8-2716-86c2-c2e1-684b5292d401\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Security Center\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/06bfd9d3-516b-d5c6-5802-169c800dec89\",\r\n \"name\": \"06bfd9d3-516b-d5c6-5802-169c800dec89\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Service and subscription limits (quotas)\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/23e2c469-4b37-ebf5-0a3f-72e8b1407301\",\r\n \"name\": \"23e2c469-4b37-ebf5-0a3f-72e8b1407301\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Service Bus\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.SERVICEBUS/NAMESPACES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/7fa9504c-364e-66b7-830e-f1333a2e4fe4\",\r\n \"name\": \"7fa9504c-364e-66b7-830e-f1333a2e4fe4\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Service Catalog\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Solutions/applicationDefinitions\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/a730ab7a-33ae-c83a-bca5-4935433e38ff\",\r\n \"name\": \"a730ab7a-33ae-c83a-bca5-4935433e38ff\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Service Fabric\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.SERVICEFABRIC/CLUSTERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/a76b7230-2d2f-b294-8189-319db5e5d116\",\r\n \"name\": \"a76b7230-2d2f-b294-8189-319db5e5d116\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Service Fabric on Linux\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/bfd77156-870d-17ee-c9d1-5450f390f63f\",\r\n \"name\": \"bfd77156-870d-17ee-c9d1-5450f390f63f\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"SignalR Service\",\r\n \"resourceTypes\": [\r\n \"Microsoft.SignalRService/SignalR\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/e4ddc3b0-1e6d-aaa2-4279-8e5027351d76\",\r\n \"name\": \"e4ddc3b0-1e6d-aaa2-4279-8e5027351d76\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Spatial Anchors – Preview\",\r\n \"resourceTypes\": [\r\n \"Microsoft.MixedReality\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/bbc183d4-df10-8580-d10b-4123c10ae34d\",\r\n \"name\": \"bbc183d4-df10-8580-d10b-4123c10ae34d\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Spring Cloud - Preview\",\r\n \"resourceTypes\": [\r\n \"Microsoft.AppPlatform/Spring\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/95412dd5-f222-a91f-98a6-144a84418c66\",\r\n \"name\": \"95412dd5-f222-a91f-98a6-144a84418c66\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"SQL Database\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.SQL/SERVERS\",\r\n \"MICROSOFT.SQL/SERVERS/DATABASES\",\r\n \"MICROSOFT.SQL/SERVERS/ELASTICPOOLS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/9b629e89-4ea0-53ec-9409-1579b8c41453\",\r\n \"name\": \"9b629e89-4ea0-53ec-9409-1579b8c41453\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"SQL Database Managed Instance\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.SQL/MANAGEDINSTANCES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/40ef020e-8ae7-8d57-b538-9153c47cee69\",\r\n \"name\": \"40ef020e-8ae7-8d57-b538-9153c47cee69\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"SQL Server in VM - Linux\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/53b14ef9-9b69-4d8c-a458-b8e4c132a815\",\r\n \"name\": \"53b14ef9-9b69-4d8c-a458-b8e4c132a815\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"SQL Server in VM - Windows\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICCOMPUTE/VIRTUALMACHINES\",\r\n \"MICROSOFT.COMPUTE/VIRTUALMACHINES\",\r\n \"Microsoft.SqlVirtualMachine/sqlVirtualMachines\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/4046cf79-84e4-c890-4fdb-73137d6506a5\",\r\n \"name\": \"4046cf79-84e4-c890-4fdb-73137d6506a5\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"SQL Server Registry\",\r\n \"resourceTypes\": [\r\n \"Microsoft.AzureData/sqlServerRegistrations\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/effcf656-f62f-92f2-8cef-2b28aea2da1f\",\r\n \"name\": \"effcf656-f62f-92f2-8cef-2b28aea2da1f\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"SQL Server Stretch Database\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6a9c20ed-85c7-c289-d5e2-560da8f2a7c8\",\r\n \"name\": \"6a9c20ed-85c7-c289-d5e2-560da8f2a7c8\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Storage Account Management\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICSTORAGE/STORAGEACCOUNTS\",\r\n \"MICROSOFT.STORAGE/STORAGEACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/94c5f326-7ab1-6ef3-c3c0-8e0b5a584085\",\r\n \"name\": \"94c5f326-7ab1-6ef3-c3c0-8e0b5a584085\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Storage Explorer\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/ffe1bb13-3bb2-e99d-35fa-d0c165557f88\",\r\n \"name\": \"ffe1bb13-3bb2-e99d-35fa-d0c165557f88\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"StorSimple Data Manager\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.HYBRIDDATA/DATAMANAGERS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/30e73728-5d13-cbf4-5c57-3036ed1067fd\",\r\n \"name\": \"30e73728-5d13-cbf4-5c57-3036ed1067fd\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Stream Analytics\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.STREAMANALYTICS/STREAMINGJOBS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/f3dc5421-79ef-1efa-41a5-42bf3cbb52c6\",\r\n \"name\": \"f3dc5421-79ef-1efa-41a5-42bf3cbb52c6\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Subscription management\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/8418caaf-4634-b4c0-d9b6-27c266b6b67b\",\r\n \"name\": \"8418caaf-4634-b4c0-d9b6-27c266b6b67b\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Table Storage\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICSTORAGE/STORAGEACCOUNTS\",\r\n \"MICROSOFT.STORAGE/STORAGEACCOUNTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/e4d6b9b0-79d5-3133-c4db-460a39e8a622\",\r\n \"name\": \"e4d6b9b0-79d5-3133-c4db-460a39e8a622\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Time Series Insights\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.TIMESERIESINSIGHTS/ENVIRONMENTS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/66fff2d6-c34e-ac9b-d1ba-6631ab20989e\",\r\n \"name\": \"66fff2d6-c34e-ac9b-d1ba-6631ab20989e\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Traffic Manager – DNS based load balancing\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NETWORK/TRAFFICMANAGERPROFILES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/99dd2657-2a74-8c5a-951f-23abdd7851c6\",\r\n \"name\": \"99dd2657-2a74-8c5a-951f-23abdd7851c6\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Universal Print - Preview\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/393f9162-a29a-1e9f-1972-d524c7bc7026\",\r\n \"name\": \"393f9162-a29a-1e9f-1972-d524c7bc7026\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Video Indexer\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/722ccc66-c988-d2ac-1ec6-b7aebc857f2d\",\r\n \"name\": \"722ccc66-c988-d2ac-1ec6-b7aebc857f2d\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Machine running Citrix\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b6492139-637a-c445-ee02-5dc6749337c3\",\r\n \"name\": \"b6492139-637a-c445-ee02-5dc6749337c3\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Machine running Cloud Foundry\",\r\n \"resourceTypes\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc\",\r\n \"name\": \"cddd3eb5-1830-b494-44fd-782f691479dc\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Machine running Linux\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICCOMPUTE/VIRTUALMACHINES\",\r\n \"MICROSOFT.COMPUTE/VIRTUALMACHINES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87\",\r\n \"name\": \"de8937fc-74cc-daa7-2639-e1fe433dcb87\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Machine running RedHat\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICCOMPUTE/VIRTUALMACHINES\",\r\n \"MICROSOFT.COMPUTE/VIRTUALMACHINES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0\",\r\n \"name\": \"98e5cec8-2650-28c1-92e8-0ecaa232eec0\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Machine running SUSE\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Compute/virtualmachines\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7\",\r\n \"name\": \"2340ae8b-c745-572f-6ea8-661d68c08bd7\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Machine running Ubuntu\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICCOMPUTE/VIRTUALMACHINES\",\r\n \"MICROSOFT.COMPUTE/VIRTUALMACHINES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396\",\r\n \"name\": \"6f16735c-b0ae-b275-ad3a-03479cfa1396\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Machine running Windows\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.CLASSICCOMPUTE/VIRTUALMACHINES\",\r\n \"MICROSOFT.COMPUTE/VIRTUALMACHINES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/e9e31931-21fa-d50a-e6e7-e37d5d784591\",\r\n \"name\": \"e9e31931-21fa-d50a-e6e7-e37d5d784591\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Machine Scale Sets\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.COMPUTE/VIRTUALMACHINESCALESETS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b25271d3-6431-dfbc-5f12-5693326809b3\",\r\n \"name\": \"b25271d3-6431-dfbc-5f12-5693326809b3\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Network\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NETWORK/VIRTUALNETWORKS\",\r\n \"MICROSOFT.CLASSICNETWORK/VIRTUALNETWORKS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/e980d0ab-c6c3-894b-8a1d-74564e159e3b\",\r\n \"name\": \"e980d0ab-c6c3-894b-8a1d-74564e159e3b\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Network NAT - Preview\",\r\n \"resourceTypes\": [\r\n \"Microsoft.Network/NATGateways\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/d3b69052-33aa-55e7-6d30-ebb7040f9766\",\r\n \"name\": \"d3b69052-33aa-55e7-6d30-ebb7040f9766\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual WAN\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NETWORK/VIRTUALWANS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/5a813df8-0060-7015-892d-9f17015a6706\",\r\n \"name\": \"5a813df8-0060-7015-892d-9f17015a6706\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"VPN Gateway\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.NETWORK/VIRTUALNETWORKGATEWAYS\",\r\n \"MICROSOFT.NETWORK/CONNECTIONS\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/b452a42b-3779-64de-532c-8a32738357a6\",\r\n \"name\": \"b452a42b-3779-64de-532c-8a32738357a6\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Web App (Linux)\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.WEB/SITES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/1890289e-747c-7ef6-b4f5-b1dbb0bead28\",\r\n \"name\": \"1890289e-747c-7ef6-b4f5-b1dbb0bead28\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Web App (Windows)\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.WEB/SITES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/d40f17bb-8b19-117c-f69a-d1be4187f657\",\r\n \"name\": \"d40f17bb-8b19-117c-f69a-d1be4187f657\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Web App for Containers\",\r\n \"resourceTypes\": [\r\n \"MICROSOFT.WEB/SITES\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/63cefc01-98f2-7ef4-2b5f-0c4b268a7dad\",\r\n \"name\": \"63cefc01-98f2-7ef4-2b5f-0c4b268a7dad\",\r\n \"type\": \"Microsoft.Support/services\",\r\n \"properties\": {\r\n \"displayName\": \"Windows Virtual Desktop\",\r\n \"resourceTypes\": [\r\n \"Microsoft.DesktopVirtualization\"\r\n ]\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
@@ -130,13 +130,13 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e9c86231-e60c-4f1a-948a-f20564d3e4de"
+ "41cdb3ed-5311-43bc-a0ca-fab472204bb2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.28516.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Support.MicrosoftSupportClient/1.0.0.0"
@@ -150,7 +150,10 @@
"no-cache"
],
"x-ms-ratelimit-remaining-tenant-reads": [
- "11919"
+ "11997"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -159,19 +162,16 @@
"Kestrel"
],
"x-ms-request-id": [
- "939c89ba-d7e8-446c-8187-7c9de842ea60"
+ "4cea1faa-4745-4267-a3d6-2f8bdf189a3e"
],
"x-ms-correlation-request-id": [
- "939c89ba-d7e8-446c-8187-7c9de842ea60"
+ "4cea1faa-4745-4267-a3d6-2f8bdf189a3e"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200315T071143Z:939c89ba-d7e8-446c-8187-7c9de842ea60"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "CENTRALUSEUAP:20200327T043553Z:4cea1faa-4745-4267-a3d6-2f8bdf189a3e"
],
"Date": [
- "Sun, 15 Mar 2020 07:11:43 GMT"
+ "Fri, 27 Mar 2020 04:35:53 GMT"
],
"Content-Length": [
"5483"
@@ -193,13 +193,13 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8aa5802a-2383-44a1-ad0d-fb48b66c4b1a"
+ "284d8bbb-6b68-49b6-96d2-ebe224004d45"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.28516.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Support.MicrosoftSupportClient/1.0.0.0"
@@ -213,7 +213,10 @@
"no-cache"
],
"x-ms-ratelimit-remaining-tenant-reads": [
- "11918"
+ "11996"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -222,19 +225,16 @@
"Kestrel"
],
"x-ms-request-id": [
- "1d94de72-43f7-4931-8331-33eafab68a38"
+ "7268461b-9ec5-44a8-934c-81452905c309"
],
"x-ms-correlation-request-id": [
- "1d94de72-43f7-4931-8331-33eafab68a38"
+ "7268461b-9ec5-44a8-934c-81452905c309"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200315T071143Z:1d94de72-43f7-4931-8331-33eafab68a38"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "CENTRALUSEUAP:20200327T043554Z:7268461b-9ec5-44a8-934c-81452905c309"
],
"Date": [
- "Sun, 15 Mar 2020 07:11:43 GMT"
+ "Fri, 27 Mar 2020 04:35:53 GMT"
],
"Content-Length": [
"3478"
@@ -256,13 +256,13 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "eb58b415-4693-43c8-8aab-e19c68bf8e51"
+ "0cc99806-70d1-4eec-82a6-852dbbfc78d2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.28516.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Support.MicrosoftSupportClient/1.0.0.0"
@@ -276,7 +276,10 @@
"no-cache"
],
"x-ms-ratelimit-remaining-tenant-reads": [
- "11917"
+ "11995"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -285,22 +288,19 @@
"Kestrel"
],
"x-ms-request-id": [
- "d01ae610-7989-444a-b6fa-e908521e4d7b"
+ "12b7320f-17ca-4786-9020-4d164a61a3b8"
],
"x-ms-correlation-request-id": [
- "d01ae610-7989-444a-b6fa-e908521e4d7b"
+ "12b7320f-17ca-4786-9020-4d164a61a3b8"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200315T071143Z:d01ae610-7989-444a-b6fa-e908521e4d7b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "CENTRALUSEUAP:20200327T043554Z:12b7320f-17ca-4786-9020-4d164a61a3b8"
],
"Date": [
- "Sun, 15 Mar 2020 07:11:43 GMT"
+ "Fri, 27 Mar 2020 04:35:53 GMT"
],
"Content-Length": [
- "33975"
+ "33597"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -309,7 +309,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/bae68529-51c1-d9b0-9e84-157fe59ac631\",\r\n \"name\": \"bae68529-51c1-d9b0-9e84-157fe59ac631\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Compute-VM (cores-vCPUs) subscription limit increases\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/7d8fb79f-7fbc-7125-b4dc-3060a75a755d\",\r\n \"name\": \"7d8fb79f-7fbc-7125-b4dc-3060a75a755d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / My configuration change impacted connectivity\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/b3ca1e6d-ea88-4d89-2f27-cf22e3bf6b37\",\r\n \"name\": \"b3ca1e6d-ea88-4d89-2f27-cf22e3bf6b37\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Troubleshoot my network security group (NSG)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/64f558d7-19ec-b533-1d51-bf8065b8b000\",\r\n \"name\": \"64f558d7-19ec-b533-1d51-bf8065b8b000\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Troubleshoot my VM firewall\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/55947c35-0935-27d8-69fa-6fb7798312ab\",\r\n \"name\": \"55947c35-0935-27d8-69fa-6fb7798312ab\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I have an issue with my public IP\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/aeca6c5b-eeda-205d-8e9a-84fbc3787d58\",\r\n \"name\": \"aeca6c5b-eeda-205d-8e9a-84fbc3787d58\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I need to reset my password\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/de79f709-5c28-19b7-4268-4e1270837208\",\r\n \"name\": \"de79f709-5c28-19b7-4268-4e1270837208\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I need guidance with serial console access\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/1c2f964e-9219-e8fe-f027-95330b445941\",\r\n \"name\": \"1c2f964e-9219-e8fe-f027-95330b445941\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Failure to connect using RDP or SSH port\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/cbc66602-d0a3-abe6-c880-043309caa9e5\",\r\n \"name\": \"cbc66602-d0a3-abe6-c880-043309caa9e5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My VM will not start after a configuration change\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/f098b595-bead-07c7-61e1-fea5b00a921d\",\r\n \"name\": \"f098b595-bead-07c7-61e1-fea5b00a921d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I received a disk related error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/7252a6f3-09f9-4c9c-434f-7720ebb1d071\",\r\n \"name\": \"7252a6f3-09f9-4c9c-434f-7720ebb1d071\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I received an allocation failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/24950ba1-1ada-26d3-eec4-1dedb62ebb00\",\r\n \"name\": \"24950ba1-1ada-26d3-eec4-1dedb62ebb00\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My VM is unresponsive to start or stop operations\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/ff2da016-f47d-a267-456f-8569ce67e6d5\",\r\n \"name\": \"ff2da016-f47d-a267-456f-8569ce67e6d5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I am unable to resize my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/173e58db-1650-76b6-0f0f-1c0ed42835ad\",\r\n \"name\": \"173e58db-1650-76b6-0f0f-1c0ed42835ad\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My start or stop operation failed\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/6fb3a706-abe9-0693-1544-72e848334a9f\",\r\n \"name\": \"6fb3a706-abe9-0693-1544-72e848334a9f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My VMs OS is not booting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/9a7863c9-b048-81d3-0e88-9f5d3806173b\",\r\n \"name\": \"9a7863c9-b048-81d3-0e88-9f5d3806173b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My VMs OS is on a reboot loop\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/87f507df-1333-d6dd-e5b0-80ca310e0431\",\r\n \"name\": \"87f507df-1333-d6dd-e5b0-80ca310e0431\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / I applied updates and my VM will not boot\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/f820b562-a549-86dc-b8ae-b5ee4e835aaa\",\r\n \"name\": \"f820b562-a549-86dc-b8ae-b5ee4e835aaa\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / I received a failure when starting my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/752f1e7e-b2bc-13c0-2519-4184c4f6ff54\",\r\n \"name\": \"752f1e7e-b2bc-13c0-2519-4184c4f6ff54\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My problem is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/e41e015e-0ec8-24c9-974f-79fe0d285f9e\",\r\n \"name\": \"e41e015e-0ec8-24c9-974f-79fe0d285f9e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I need guidance preparing an image\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/a4b8355c-cf91-9ccd-ff84-80019d1e63c2\",\r\n \"name\": \"a4b8355c-cf91-9ccd-ff84-80019d1e63c2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I need guidance deploying with managed disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/01ed3ac2-367f-aaa3-5464-fbbb9c7eade8\",\r\n \"name\": \"01ed3ac2-367f-aaa3-5464-fbbb9c7eade8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot custom image deployment failures\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/84447c9a-0723-4d08-5b97-4bf90b7890d5\",\r\n \"name\": \"84447c9a-0723-4d08-5b97-4bf90b7890d5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot marketplace image deployment failures\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/21c73052-26f9-3d51-4f0f-592336d20375\",\r\n \"name\": \"21c73052-26f9-3d51-4f0f-592336d20375\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / My desired region or VM size is unavailable\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/f2e182ae-a174-e38e-52a0-32abcfa142af\",\r\n \"name\": \"f2e182ae-a174-e38e-52a0-32abcfa142af\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I received an allocation failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/53b20091-2600-5eff-9031-2f393f7041a0\",\r\n \"name\": \"53b20091-2600-5eff-9031-2f393f7041a0\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I am unable to deploy a captured or generalized image\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/259a0a84-71b9-5e83-5c69-f95ada859212\",\r\n \"name\": \"259a0a84-71b9-5e83-5c69-f95ada859212\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot my ARM template error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/a6b58b4c-09c7-e170-c974-b7ac37f76b5c\",\r\n \"name\": \"a6b58b4c-09c7-e170-c974-b7ac37f76b5c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I received a provisioning or deployment timeout error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/bf46b021-8045-213e-8857-d7b83562e22e\",\r\n \"name\": \"bf46b021-8045-213e-8857-d7b83562e22e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / My guest OS is causing restarts\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/dcf6f0d6-63ca-7638-f29a-79e3ebbf94fb\",\r\n \"name\": \"dcf6f0d6-63ca-7638-f29a-79e3ebbf94fb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Request Root Cause Statement for recent availability impact\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/d85c401e-04b1-c1c2-6838-755bac055bda\",\r\n \"name\": \"d85c401e-04b1-c1c2-6838-755bac055bda\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Help diagnose my VM restart issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/46d3b5cb-4fa8-12e0-c525-9c41d42dcb8b\",\r\n \"name\": \"46d3b5cb-4fa8-12e0-c525-9c41d42dcb8b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Disk throughput is lower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/5a5377ad-0f05-a3ba-d25e-98346a3f74df\",\r\n \"name\": \"5a5377ad-0f05-a3ba-d25e-98346a3f74df\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / CPU usage is higher than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/1ae095b6-523e-28e8-1f5d-db00a4c8217b\",\r\n \"name\": \"1ae095b6-523e-28e8-1f5d-db00a4c8217b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Memory usage is higher than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/7aba48c1-5e0d-9ccb-a1c7-e1e22fa7db08\",\r\n \"name\": \"7aba48c1-5e0d-9ccb-a1c7-e1e22fa7db08\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / GPU processing is slower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/b80f1d81-dd72-8613-0f92-25825c8a9ec6\",\r\n \"name\": \"b80f1d81-dd72-8613-0f92-25825c8a9ec6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Guidance for better VM sizing and throughput\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/4970a103-2894-d3f9-d08c-2633cfc78e45\",\r\n \"name\": \"4970a103-2894-d3f9-d08c-2633cfc78e45\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Unable to resize my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/95538b9d-4af5-8ce7-0b3d-fa68832bfd1c\",\r\n \"name\": \"95538b9d-4af5-8ce7-0b3d-fa68832bfd1c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Resizing a virtual disk\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/1e68258f-b823-9c34-e519-3f70d59e973f\",\r\n \"name\": \"1e68258f-b823-9c34-e519-3f70d59e973f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Attaching or detaching virtual disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/7e6c7e39-9cce-3d58-b2e4-274f6d9bec37\",\r\n \"name\": \"7e6c7e39-9cce-3d58-b2e4-274f6d9bec37\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Creating or deleting virtual disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/e7fd0942-fb71-bf62-4c6d-18832647bdac\",\r\n \"name\": \"e7fd0942-fb71-bf62-4c6d-18832647bdac\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Disk throughput is lower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/2c49e119-868a-efac-80af-67599fae45b7\",\r\n \"name\": \"2c49e119-868a-efac-80af-67599fae45b7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Restore a VM from snapshot\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/a254dd34-bf5f-b67c-f99f-86f9cf7ed6c8\",\r\n \"name\": \"a254dd34-bf5f-b67c-f99f-86f9cf7ed6c8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Issues with Direct Upload for Managed Disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/521c0dec-7579-07b7-c7c8-40bbaeb40240\",\r\n \"name\": \"521c0dec-7579-07b7-c7c8-40bbaeb40240\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / My problem is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/e0377a4c-88a2-2e30-7ba8-d7079f986fd9\",\r\n \"name\": \"e0377a4c-88a2-2e30-7ba8-d7079f986fd9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Diagnostic (boot diagnostics) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/b2a54971-f86b-fcfc-d2e9-a784cb400e2c\",\r\n \"name\": \"b2a54971-f86b-fcfc-d2e9-a784cb400e2c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Custom Script (CSE) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/b749326b-a0d9-7397-e078-545f08d07958\",\r\n \"name\": \"b749326b-a0d9-7397-e078-545f08d07958\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Log Analytics (OMS) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/b18ffbd3-1113-0c33-9cdc-656f3f59b255\",\r\n \"name\": \"b18ffbd3-1113-0c33-9cdc-656f3f59b255\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Desired State Configuration (DSC) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/f6b80563-6a99-2b18-68b1-87302cf1d2d4\",\r\n \"name\": \"f6b80563-6a99-2b18-68b1-87302cf1d2d4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Microsoft Antimalware (security) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/69720acf-121d-1581-bc05-b35043d3989f\",\r\n \"name\": \"69720acf-121d-1581-bc05-b35043d3989f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Disk Encryption (ADE) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/c9417489-6f2a-7906-cde8-2c446eeac78e\",\r\n \"name\": \"c9417489-6f2a-7906-cde8-2c446eeac78e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Snapshot (Azure Backup) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/e6826775-d3e8-f596-5867-0b9c0241d1ac\",\r\n \"name\": \"e6826775-d3e8-f596-5867-0b9c0241d1ac\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Update Management extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/10ed694a-3166-2ffc-bec1-25b610f940ca\",\r\n \"name\": \"10ed694a-3166-2ffc-bec1-25b610f940ca\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / GPU Driver extension issue (NVIDIA)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/219f7c12-40f8-24a1-7d7c-d78e8f0198e4\",\r\n \"name\": \"219f7c12-40f8-24a1-7d7c-d78e8f0198e4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Network Watcher agent extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/90d85a5b-aab4-4375-f298-2049d519ab76\",\r\n \"name\": \"90d85a5b-aab4-4375-f298-2049d519ab76\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Monitoring agent (MMA) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/b2670f9f-ade3-2456-799c-f591435394c6\",\r\n \"name\": \"b2670f9f-ade3-2456-799c-f591435394c6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Access (enablevmaccess) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/849fe8ad-39b8-1ca0-bc1b-57716af420de\",\r\n \"name\": \"849fe8ad-39b8-1ca0-bc1b-57716af420de\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Guest Agent issue (crash, hung, not upgrading, or not connecting)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/a7999b61-1d4d-4abd-594c-e6687aec6faf\",\r\n \"name\": \"a7999b61-1d4d-4abd-594c-e6687aec6faf\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Custom Script (CSE) extension using Managed Identity issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/89a2d1f5-09e9-e2fa-f074-f5b690e82998\",\r\n \"name\": \"89a2d1f5-09e9-e2fa-f074-f5b690e82998\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Active Directory Login extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/514ac81e-be99-54a4-eaf4-9370fc0be72c\",\r\n \"name\": \"514ac81e-be99-54a4-eaf4-9370fc0be72c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / GPU Driver extension issue (AMD)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/a04c7d08-f45f-42c0-4e86-88ae407595cb\",\r\n \"name\": \"a04c7d08-f45f-42c0-4e86-88ae407595cb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My encryption has failed due to a pre-req failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/47901e14-6bd1-3d71-1443-d6c67a18432d\",\r\n \"name\": \"47901e14-6bd1-3d71-1443-d6c67a18432d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is due to unsupported image or operating system\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/80cd33ae-f2a0-5549-cdf5-4d109cce7a67\",\r\n \"name\": \"80cd33ae-f2a0-5549-cdf5-4d109cce7a67\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My VM is not booting after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/bb35dc52-6e37-0fff-6044-d965d4c97a54\",\r\n \"name\": \"bb35dc52-6e37-0fff-6044-d965d4c97a54\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My VM is not reachable after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/3789b4d8-9b87-4aad-f35f-5ea8a439697e\",\r\n \"name\": \"3789b4d8-9b87-4aad-f35f-5ea8a439697e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My data drive or file system is not available after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/d2c0cf01-81a6-5009-467a-eb21488048e8\",\r\n \"name\": \"d2c0cf01-81a6-5009-467a-eb21488048e8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / I need guidance with Azure Key Vault configuration, permissions, or keys\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/d8e2e786-e8d3-ddbf-79df-10d913ff100e\",\r\n \"name\": \"d8e2e786-e8d3-ddbf-79df-10d913ff100e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / Current status of encryption is incorrect for my VM (Portal, CLI, PS)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/d8eaaf54-b662-86ca-66db-e115a4896a5c\",\r\n \"name\": \"d8eaaf54-b662-86ca-66db-e115a4896a5c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue with decrypting a virtual disk\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/8ff77fb6-150f-80f7-7d88-98b049aacd81\",\r\n \"name\": \"8ff77fb6-150f-80f7-7d88-98b049aacd81\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is with troubleshooting an encrypted VM (unlocking)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/6825cbf2-c7fc-a14a-a2f7-f10ad953f5bd\",\r\n \"name\": \"6825cbf2-c7fc-a14a-a2f7-f10ad953f5bd\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My encryption is not working as expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/315d6829-1ab2-b452-6663-51eb961c246f\",\r\n \"name\": \"315d6829-1ab2-b452-6663-51eb961c246f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/f7c2099e-8e0a-98f6-313b-854ebd0c6f62\",\r\n \"name\": \"f7c2099e-8e0a-98f6-313b-854ebd0c6f62\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I am having issues configuring or enabling backup\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/562c48c7-c68f-0a96-99d2-8d13f3554ce7\",\r\n \"name\": \"562c48c7-c68f-0a96-99d2-8d13f3554ce7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Backup is failing for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/f4fd8a3e-74db-f3a4-03d1-60188940a66f\",\r\n \"name\": \"f4fd8a3e-74db-f3a4-03d1-60188940a66f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Restore is failing for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/83c3b7c9-1efa-3941-3b12-d43d7a729a32\",\r\n \"name\": \"83c3b7c9-1efa-3941-3b12-d43d7a729a32\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Backup is taking longer than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/568c0608-9ba0-ee8f-01e7-34e8afefb041\",\r\n \"name\": \"568c0608-9ba0-ee8f-01e7-34e8afefb041\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Restore is taking longer than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/36b2730a-cb80-23d9-656d-c0c2d476e45f\",\r\n \"name\": \"36b2730a-cb80-23d9-656d-c0c2d476e45f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I need guidance configuring backup for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/ffe93180-2ece-07c9-0cd4-6ae7ccc19d7c\",\r\n \"name\": \"ffe93180-2ece-07c9-0cd4-6ae7ccc19d7c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I need guidance with restoring my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/ec4a3cb7-9b8b-f765-e132-d5562425d712\",\r\n \"name\": \"ec4a3cb7-9b8b-f765-e132-d5562425d712\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / My issue is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/bd0acd80-7468-6588-5ae3-cfe2b179f195\",\r\n \"name\": \"bd0acd80-7468-6588-5ae3-cfe2b179f195\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Guest OS - Kernel upgrade issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/e828e8d4-ff7f-6594-4f9d-fa7004f419fa\",\r\n \"name\": \"e828e8d4-ff7f-6594-4f9d-fa7004f419fa\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Create a Linux failover cluster\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/d9bb543f-fd32-6a17-40ff-bc2b75f55027\",\r\n \"name\": \"d9bb543f-fd32-6a17-40ff-bc2b75f55027\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to delete a virtual machine\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/beacf412-7db1-a73e-9130-3f717a3511e5\",\r\n \"name\": \"beacf412-7db1-a73e-9130-3f717a3511e5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to delete a Resource Group\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/609fff6e-d1b6-61a5-0ec0-577ab025cd95\",\r\n \"name\": \"609fff6e-d1b6-61a5-0ec0-577ab025cd95\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Instance Metadata Service\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/fd3c1878-732c-0f98-5b78-f3108ff0c26f\",\r\n \"name\": \"fd3c1878-732c-0f98-5b78-f3108ff0c26f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage or use a Linux cluster in Azure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/6ea04af3-f79f-522a-07d7-5542f30e1d7b\",\r\n \"name\": \"6ea04af3-f79f-522a-07d7-5542f30e1d7b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Azure Metadata Service (Scheduled Events)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/f634afb0-8ab2-18e7-ae60-0953e0dc624e\",\r\n \"name\": \"f634afb0-8ab2-18e7-ae60-0953e0dc624e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to share Shared Image Gallery, Image Definition or Image Version\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/3385321a-4a96-c811-4c9c-61a6c799aab6\",\r\n \"name\": \"3385321a-4a96-c811-4c9c-61a6c799aab6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage an instance of SQL Server\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/e2542607-20ad-4425-e30d-eec8e2121f55\",\r\n \"name\": \"e2542607-20ad-4425-e30d-eec8e2121f55\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Guidance regarding retirement of Classic IAAS resources (ASM)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/cf48d5a5-f3e1-0346-9bc5-42a374fc7787\",\r\n \"name\": \"cf48d5a5-f3e1-0346-9bc5-42a374fc7787\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate IAAS resources from Classic (ASM) to Azure Resource Manager (ARM)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/deb635fc-d919-065f-6ca0-b7bc61479177\",\r\n \"name\": \"deb635fc-d919-065f-6ca0-b7bc61479177\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Managed disks migration\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/c4aa16ad-4241-d898-28c2-38d21faa52ee\",\r\n \"name\": \"c4aa16ad-4241-d898-28c2-38d21faa52ee\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between storage accounts\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/785dbce9-3d5c-4799-46e2-8b83db4eef73\",\r\n \"name\": \"785dbce9-3d5c-4799-46e2-8b83db4eef73\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between regions\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/9020a3f4-8868-d4ff-8d67-a9ccb5afb7b6\",\r\n \"name\": \"9020a3f4-8868-d4ff-8d67-a9ccb5afb7b6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between subscriptions\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/92bf5bcc-b7cd-6a7f-add6-973b02755e4c\",\r\n \"name\": \"92bf5bcc-b7cd-6a7f-add6-973b02755e4c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate resources using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/daccad3e-eabc-e716-5059-e7109fe0560a\",\r\n \"name\": \"daccad3e-eabc-e716-5059-e7109fe0560a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate virtual machines from on-premises to Azure using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/da01b1c1-7d54-941d-888a-7da4fb85d897\",\r\n \"name\": \"da01b1c1-7d54-941d-888a-7da4fb85d897\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate virtual machines from third-party provider to Azure using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/69f642dd-74a8-34c8-c4e4-dd2b00b3512c\",\r\n \"name\": \"69f642dd-74a8-34c8-c4e4-dd2b00b3512c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between resource groups\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/c334a302-aa5c-e950-5656-755d0e981c7e\",\r\n \"name\": \"c334a302-aa5c-e950-5656-755d0e981c7e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Planned Maintenance (Azure Platform)\"\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/bae68529-51c1-d9b0-9e84-157fe59ac631\",\r\n \"name\": \"bae68529-51c1-d9b0-9e84-157fe59ac631\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Compute-VM (cores-vCPUs) subscription limit increases\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/7d8fb79f-7fbc-7125-b4dc-3060a75a755d\",\r\n \"name\": \"7d8fb79f-7fbc-7125-b4dc-3060a75a755d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / My configuration change impacted connectivity\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/b3ca1e6d-ea88-4d89-2f27-cf22e3bf6b37\",\r\n \"name\": \"b3ca1e6d-ea88-4d89-2f27-cf22e3bf6b37\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Troubleshoot my network security group (NSG)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/64f558d7-19ec-b533-1d51-bf8065b8b000\",\r\n \"name\": \"64f558d7-19ec-b533-1d51-bf8065b8b000\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Troubleshoot my VM firewall\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/55947c35-0935-27d8-69fa-6fb7798312ab\",\r\n \"name\": \"55947c35-0935-27d8-69fa-6fb7798312ab\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I have an issue with my public IP\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/aeca6c5b-eeda-205d-8e9a-84fbc3787d58\",\r\n \"name\": \"aeca6c5b-eeda-205d-8e9a-84fbc3787d58\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I need to reset my password\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/de79f709-5c28-19b7-4268-4e1270837208\",\r\n \"name\": \"de79f709-5c28-19b7-4268-4e1270837208\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I need guidance with serial console access\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/1c2f964e-9219-e8fe-f027-95330b445941\",\r\n \"name\": \"1c2f964e-9219-e8fe-f027-95330b445941\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Failure to connect using RDP or SSH port\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/cbc66602-d0a3-abe6-c880-043309caa9e5\",\r\n \"name\": \"cbc66602-d0a3-abe6-c880-043309caa9e5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My VM will not start after a configuration change\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/f098b595-bead-07c7-61e1-fea5b00a921d\",\r\n \"name\": \"f098b595-bead-07c7-61e1-fea5b00a921d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I received a disk related error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/7252a6f3-09f9-4c9c-434f-7720ebb1d071\",\r\n \"name\": \"7252a6f3-09f9-4c9c-434f-7720ebb1d071\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I received an allocation failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/24950ba1-1ada-26d3-eec4-1dedb62ebb00\",\r\n \"name\": \"24950ba1-1ada-26d3-eec4-1dedb62ebb00\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My VM is unresponsive to start or stop operations\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/ff2da016-f47d-a267-456f-8569ce67e6d5\",\r\n \"name\": \"ff2da016-f47d-a267-456f-8569ce67e6d5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I am unable to resize my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/173e58db-1650-76b6-0f0f-1c0ed42835ad\",\r\n \"name\": \"173e58db-1650-76b6-0f0f-1c0ed42835ad\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My start or stop operation failed\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/6fb3a706-abe9-0693-1544-72e848334a9f\",\r\n \"name\": \"6fb3a706-abe9-0693-1544-72e848334a9f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My VMs OS is not booting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/9a7863c9-b048-81d3-0e88-9f5d3806173b\",\r\n \"name\": \"9a7863c9-b048-81d3-0e88-9f5d3806173b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My VMs OS is on a reboot loop\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/87f507df-1333-d6dd-e5b0-80ca310e0431\",\r\n \"name\": \"87f507df-1333-d6dd-e5b0-80ca310e0431\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / I applied updates and my VM will not boot\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/f820b562-a549-86dc-b8ae-b5ee4e835aaa\",\r\n \"name\": \"f820b562-a549-86dc-b8ae-b5ee4e835aaa\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / I received a failure when starting my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/752f1e7e-b2bc-13c0-2519-4184c4f6ff54\",\r\n \"name\": \"752f1e7e-b2bc-13c0-2519-4184c4f6ff54\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My problem is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/e41e015e-0ec8-24c9-974f-79fe0d285f9e\",\r\n \"name\": \"e41e015e-0ec8-24c9-974f-79fe0d285f9e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I need guidance preparing an image\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/a4b8355c-cf91-9ccd-ff84-80019d1e63c2\",\r\n \"name\": \"a4b8355c-cf91-9ccd-ff84-80019d1e63c2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I need guidance deploying with managed disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/01ed3ac2-367f-aaa3-5464-fbbb9c7eade8\",\r\n \"name\": \"01ed3ac2-367f-aaa3-5464-fbbb9c7eade8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot custom image deployment failures\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/84447c9a-0723-4d08-5b97-4bf90b7890d5\",\r\n \"name\": \"84447c9a-0723-4d08-5b97-4bf90b7890d5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot marketplace image deployment failures\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/21c73052-26f9-3d51-4f0f-592336d20375\",\r\n \"name\": \"21c73052-26f9-3d51-4f0f-592336d20375\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / My desired region or VM size is unavailable\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/f2e182ae-a174-e38e-52a0-32abcfa142af\",\r\n \"name\": \"f2e182ae-a174-e38e-52a0-32abcfa142af\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I received an allocation failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/53b20091-2600-5eff-9031-2f393f7041a0\",\r\n \"name\": \"53b20091-2600-5eff-9031-2f393f7041a0\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I am unable to deploy a captured or generalized image\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/259a0a84-71b9-5e83-5c69-f95ada859212\",\r\n \"name\": \"259a0a84-71b9-5e83-5c69-f95ada859212\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot my ARM template error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/a6b58b4c-09c7-e170-c974-b7ac37f76b5c\",\r\n \"name\": \"a6b58b4c-09c7-e170-c974-b7ac37f76b5c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I received a provisioning or deployment timeout error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/bf46b021-8045-213e-8857-d7b83562e22e\",\r\n \"name\": \"bf46b021-8045-213e-8857-d7b83562e22e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / My guest OS is causing restarts\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/dcf6f0d6-63ca-7638-f29a-79e3ebbf94fb\",\r\n \"name\": \"dcf6f0d6-63ca-7638-f29a-79e3ebbf94fb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Request Root Cause Statement for recent availability impact\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/d85c401e-04b1-c1c2-6838-755bac055bda\",\r\n \"name\": \"d85c401e-04b1-c1c2-6838-755bac055bda\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Help diagnose my VM restart issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/46d3b5cb-4fa8-12e0-c525-9c41d42dcb8b\",\r\n \"name\": \"46d3b5cb-4fa8-12e0-c525-9c41d42dcb8b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Disk throughput is lower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/5a5377ad-0f05-a3ba-d25e-98346a3f74df\",\r\n \"name\": \"5a5377ad-0f05-a3ba-d25e-98346a3f74df\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / CPU usage is higher than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/1ae095b6-523e-28e8-1f5d-db00a4c8217b\",\r\n \"name\": \"1ae095b6-523e-28e8-1f5d-db00a4c8217b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Memory usage is higher than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/7aba48c1-5e0d-9ccb-a1c7-e1e22fa7db08\",\r\n \"name\": \"7aba48c1-5e0d-9ccb-a1c7-e1e22fa7db08\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / GPU processing is slower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/b80f1d81-dd72-8613-0f92-25825c8a9ec6\",\r\n \"name\": \"b80f1d81-dd72-8613-0f92-25825c8a9ec6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Guidance for better VM sizing and throughput\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/4970a103-2894-d3f9-d08c-2633cfc78e45\",\r\n \"name\": \"4970a103-2894-d3f9-d08c-2633cfc78e45\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Unable to resize my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/95538b9d-4af5-8ce7-0b3d-fa68832bfd1c\",\r\n \"name\": \"95538b9d-4af5-8ce7-0b3d-fa68832bfd1c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Resizing a virtual disk\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/1e68258f-b823-9c34-e519-3f70d59e973f\",\r\n \"name\": \"1e68258f-b823-9c34-e519-3f70d59e973f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Attaching or detaching virtual disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/7e6c7e39-9cce-3d58-b2e4-274f6d9bec37\",\r\n \"name\": \"7e6c7e39-9cce-3d58-b2e4-274f6d9bec37\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Creating or deleting virtual disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/e7fd0942-fb71-bf62-4c6d-18832647bdac\",\r\n \"name\": \"e7fd0942-fb71-bf62-4c6d-18832647bdac\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Disk throughput is lower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/2c49e119-868a-efac-80af-67599fae45b7\",\r\n \"name\": \"2c49e119-868a-efac-80af-67599fae45b7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Restore a VM from snapshot\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/a254dd34-bf5f-b67c-f99f-86f9cf7ed6c8\",\r\n \"name\": \"a254dd34-bf5f-b67c-f99f-86f9cf7ed6c8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Issues with Direct Upload for Managed Disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/521c0dec-7579-07b7-c7c8-40bbaeb40240\",\r\n \"name\": \"521c0dec-7579-07b7-c7c8-40bbaeb40240\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / My problem is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/e0377a4c-88a2-2e30-7ba8-d7079f986fd9\",\r\n \"name\": \"e0377a4c-88a2-2e30-7ba8-d7079f986fd9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Diagnostic (boot diagnostics) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/b2a54971-f86b-fcfc-d2e9-a784cb400e2c\",\r\n \"name\": \"b2a54971-f86b-fcfc-d2e9-a784cb400e2c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Custom Script (CSE) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/b749326b-a0d9-7397-e078-545f08d07958\",\r\n \"name\": \"b749326b-a0d9-7397-e078-545f08d07958\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Log Analytics (OMS) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/b18ffbd3-1113-0c33-9cdc-656f3f59b255\",\r\n \"name\": \"b18ffbd3-1113-0c33-9cdc-656f3f59b255\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Desired State Configuration (DSC) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/f6b80563-6a99-2b18-68b1-87302cf1d2d4\",\r\n \"name\": \"f6b80563-6a99-2b18-68b1-87302cf1d2d4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Microsoft Antimalware (security) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/69720acf-121d-1581-bc05-b35043d3989f\",\r\n \"name\": \"69720acf-121d-1581-bc05-b35043d3989f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Disk Encryption (ADE) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/c9417489-6f2a-7906-cde8-2c446eeac78e\",\r\n \"name\": \"c9417489-6f2a-7906-cde8-2c446eeac78e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Snapshot (Azure Backup) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/e6826775-d3e8-f596-5867-0b9c0241d1ac\",\r\n \"name\": \"e6826775-d3e8-f596-5867-0b9c0241d1ac\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Update Management extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/10ed694a-3166-2ffc-bec1-25b610f940ca\",\r\n \"name\": \"10ed694a-3166-2ffc-bec1-25b610f940ca\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / GPU Driver extension issue (NVIDIA)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/219f7c12-40f8-24a1-7d7c-d78e8f0198e4\",\r\n \"name\": \"219f7c12-40f8-24a1-7d7c-d78e8f0198e4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Network Watcher agent extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/90d85a5b-aab4-4375-f298-2049d519ab76\",\r\n \"name\": \"90d85a5b-aab4-4375-f298-2049d519ab76\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Monitoring agent (MMA) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/b2670f9f-ade3-2456-799c-f591435394c6\",\r\n \"name\": \"b2670f9f-ade3-2456-799c-f591435394c6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Access (enablevmaccess) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/849fe8ad-39b8-1ca0-bc1b-57716af420de\",\r\n \"name\": \"849fe8ad-39b8-1ca0-bc1b-57716af420de\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Guest Agent issue (crash, hung, not upgrading, or not connecting)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/89a2d1f5-09e9-e2fa-f074-f5b690e82998\",\r\n \"name\": \"89a2d1f5-09e9-e2fa-f074-f5b690e82998\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Active Directory Login extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/514ac81e-be99-54a4-eaf4-9370fc0be72c\",\r\n \"name\": \"514ac81e-be99-54a4-eaf4-9370fc0be72c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / GPU Driver extension issue (AMD)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/a04c7d08-f45f-42c0-4e86-88ae407595cb\",\r\n \"name\": \"a04c7d08-f45f-42c0-4e86-88ae407595cb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My encryption has failed due to a pre-req failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/47901e14-6bd1-3d71-1443-d6c67a18432d\",\r\n \"name\": \"47901e14-6bd1-3d71-1443-d6c67a18432d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is due to unsupported image or operating system\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/80cd33ae-f2a0-5549-cdf5-4d109cce7a67\",\r\n \"name\": \"80cd33ae-f2a0-5549-cdf5-4d109cce7a67\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My VM is not booting after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/bb35dc52-6e37-0fff-6044-d965d4c97a54\",\r\n \"name\": \"bb35dc52-6e37-0fff-6044-d965d4c97a54\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My VM is not reachable after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/3789b4d8-9b87-4aad-f35f-5ea8a439697e\",\r\n \"name\": \"3789b4d8-9b87-4aad-f35f-5ea8a439697e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My data drive or file system is not available after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/d2c0cf01-81a6-5009-467a-eb21488048e8\",\r\n \"name\": \"d2c0cf01-81a6-5009-467a-eb21488048e8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / I need guidance with Azure Key Vault configuration, permissions, or keys\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/d8e2e786-e8d3-ddbf-79df-10d913ff100e\",\r\n \"name\": \"d8e2e786-e8d3-ddbf-79df-10d913ff100e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / Current status of encryption is incorrect for my VM (Portal, CLI, PS)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/d8eaaf54-b662-86ca-66db-e115a4896a5c\",\r\n \"name\": \"d8eaaf54-b662-86ca-66db-e115a4896a5c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue with decrypting a virtual disk\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/8ff77fb6-150f-80f7-7d88-98b049aacd81\",\r\n \"name\": \"8ff77fb6-150f-80f7-7d88-98b049aacd81\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is with troubleshooting an encrypted VM (unlocking)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/6825cbf2-c7fc-a14a-a2f7-f10ad953f5bd\",\r\n \"name\": \"6825cbf2-c7fc-a14a-a2f7-f10ad953f5bd\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My encryption is not working as expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/315d6829-1ab2-b452-6663-51eb961c246f\",\r\n \"name\": \"315d6829-1ab2-b452-6663-51eb961c246f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/f7c2099e-8e0a-98f6-313b-854ebd0c6f62\",\r\n \"name\": \"f7c2099e-8e0a-98f6-313b-854ebd0c6f62\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I am having issues configuring or enabling backup\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/562c48c7-c68f-0a96-99d2-8d13f3554ce7\",\r\n \"name\": \"562c48c7-c68f-0a96-99d2-8d13f3554ce7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Backup is failing for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/f4fd8a3e-74db-f3a4-03d1-60188940a66f\",\r\n \"name\": \"f4fd8a3e-74db-f3a4-03d1-60188940a66f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Restore is failing for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/83c3b7c9-1efa-3941-3b12-d43d7a729a32\",\r\n \"name\": \"83c3b7c9-1efa-3941-3b12-d43d7a729a32\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Backup is taking longer than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/568c0608-9ba0-ee8f-01e7-34e8afefb041\",\r\n \"name\": \"568c0608-9ba0-ee8f-01e7-34e8afefb041\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Restore is taking longer than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/36b2730a-cb80-23d9-656d-c0c2d476e45f\",\r\n \"name\": \"36b2730a-cb80-23d9-656d-c0c2d476e45f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I need guidance configuring backup for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/ffe93180-2ece-07c9-0cd4-6ae7ccc19d7c\",\r\n \"name\": \"ffe93180-2ece-07c9-0cd4-6ae7ccc19d7c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I need guidance with restoring my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/ec4a3cb7-9b8b-f765-e132-d5562425d712\",\r\n \"name\": \"ec4a3cb7-9b8b-f765-e132-d5562425d712\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / My issue is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/bd0acd80-7468-6588-5ae3-cfe2b179f195\",\r\n \"name\": \"bd0acd80-7468-6588-5ae3-cfe2b179f195\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Guest OS - Kernel upgrade issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/e828e8d4-ff7f-6594-4f9d-fa7004f419fa\",\r\n \"name\": \"e828e8d4-ff7f-6594-4f9d-fa7004f419fa\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Create a Linux failover cluster\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/d9bb543f-fd32-6a17-40ff-bc2b75f55027\",\r\n \"name\": \"d9bb543f-fd32-6a17-40ff-bc2b75f55027\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to delete a virtual machine\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/beacf412-7db1-a73e-9130-3f717a3511e5\",\r\n \"name\": \"beacf412-7db1-a73e-9130-3f717a3511e5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to delete a Resource Group\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/609fff6e-d1b6-61a5-0ec0-577ab025cd95\",\r\n \"name\": \"609fff6e-d1b6-61a5-0ec0-577ab025cd95\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Instance Metadata Service\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/fd3c1878-732c-0f98-5b78-f3108ff0c26f\",\r\n \"name\": \"fd3c1878-732c-0f98-5b78-f3108ff0c26f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage or use a Linux cluster in Azure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/6ea04af3-f79f-522a-07d7-5542f30e1d7b\",\r\n \"name\": \"6ea04af3-f79f-522a-07d7-5542f30e1d7b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Azure Metadata Service (Scheduled Events)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/f634afb0-8ab2-18e7-ae60-0953e0dc624e\",\r\n \"name\": \"f634afb0-8ab2-18e7-ae60-0953e0dc624e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to share Shared Image Gallery, Image Definition or Image Version\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/3385321a-4a96-c811-4c9c-61a6c799aab6\",\r\n \"name\": \"3385321a-4a96-c811-4c9c-61a6c799aab6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage an instance of SQL Server\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/e2542607-20ad-4425-e30d-eec8e2121f55\",\r\n \"name\": \"e2542607-20ad-4425-e30d-eec8e2121f55\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Guidance regarding retirement of Classic IAAS resources (ASM)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/cf48d5a5-f3e1-0346-9bc5-42a374fc7787\",\r\n \"name\": \"cf48d5a5-f3e1-0346-9bc5-42a374fc7787\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate IAAS resources from Classic (ASM) to Azure Resource Manager (ARM)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/deb635fc-d919-065f-6ca0-b7bc61479177\",\r\n \"name\": \"deb635fc-d919-065f-6ca0-b7bc61479177\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Managed disks migration\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/c4aa16ad-4241-d898-28c2-38d21faa52ee\",\r\n \"name\": \"c4aa16ad-4241-d898-28c2-38d21faa52ee\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between storage accounts\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/785dbce9-3d5c-4799-46e2-8b83db4eef73\",\r\n \"name\": \"785dbce9-3d5c-4799-46e2-8b83db4eef73\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between regions\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/9020a3f4-8868-d4ff-8d67-a9ccb5afb7b6\",\r\n \"name\": \"9020a3f4-8868-d4ff-8d67-a9ccb5afb7b6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between subscriptions\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/92bf5bcc-b7cd-6a7f-add6-973b02755e4c\",\r\n \"name\": \"92bf5bcc-b7cd-6a7f-add6-973b02755e4c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate resources using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/daccad3e-eabc-e716-5059-e7109fe0560a\",\r\n \"name\": \"daccad3e-eabc-e716-5059-e7109fe0560a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate virtual machines from on-premises to Azure using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/da01b1c1-7d54-941d-888a-7da4fb85d897\",\r\n \"name\": \"da01b1c1-7d54-941d-888a-7da4fb85d897\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate virtual machines from third-party provider to Azure using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/69f642dd-74a8-34c8-c4e4-dd2b00b3512c\",\r\n \"name\": \"69f642dd-74a8-34c8-c4e4-dd2b00b3512c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between resource groups\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/cddd3eb5-1830-b494-44fd-782f691479dc/problemClassifications/c334a302-aa5c-e950-5656-755d0e981c7e\",\r\n \"name\": \"c334a302-aa5c-e950-5656-755d0e981c7e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Planned Maintenance (Azure Platform)\"\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
@@ -319,13 +319,13 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "87424601-08e5-48c2-beba-605e4aeb3b26"
+ "5b0e0075-f4e5-4581-a728-188929662a71"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.28516.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Support.MicrosoftSupportClient/1.0.0.0"
@@ -339,7 +339,10 @@
"no-cache"
],
"x-ms-ratelimit-remaining-tenant-reads": [
- "11916"
+ "11994"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -348,22 +351,19 @@
"Kestrel"
],
"x-ms-request-id": [
- "4e86fe09-4817-41ee-bf5b-e302ff565bfb"
+ "7a9abccb-8d12-4237-b7be-9501543ae781"
],
"x-ms-correlation-request-id": [
- "4e86fe09-4817-41ee-bf5b-e302ff565bfb"
+ "7a9abccb-8d12-4237-b7be-9501543ae781"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200315T071143Z:4e86fe09-4817-41ee-bf5b-e302ff565bfb"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "CENTRALUSEUAP:20200327T043554Z:7a9abccb-8d12-4237-b7be-9501543ae781"
],
"Date": [
- "Sun, 15 Mar 2020 07:11:43 GMT"
+ "Fri, 27 Mar 2020 04:35:54 GMT"
],
"Content-Length": [
- "33975"
+ "33597"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -372,7 +372,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/00b0b194-7e37-b8c4-db36-eb6d3548cac1\",\r\n \"name\": \"00b0b194-7e37-b8c4-db36-eb6d3548cac1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Compute-VM (cores-vCPUs) subscription limit increases\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/60ac7433-77c9-85ac-897d-3ef4112732b1\",\r\n \"name\": \"60ac7433-77c9-85ac-897d-3ef4112732b1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / My configuration change impacted connectivity\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/1cd64f59-26a0-f45e-0419-44c0244009b2\",\r\n \"name\": \"1cd64f59-26a0-f45e-0419-44c0244009b2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Troubleshoot my network security group (NSG)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/c4b7a9f2-8f4b-8fcf-5394-2a221d2e723d\",\r\n \"name\": \"c4b7a9f2-8f4b-8fcf-5394-2a221d2e723d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Troubleshoot my VM firewall\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/733fb4be-707d-b2c5-b5d1-01d743a154d9\",\r\n \"name\": \"733fb4be-707d-b2c5-b5d1-01d743a154d9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I have an issue with my public IP\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/7b901199-fb49-5141-5754-8492bf2badc6\",\r\n \"name\": \"7b901199-fb49-5141-5754-8492bf2badc6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I need to reset my password\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/65c2be4f-8625-c747-ed34-e923079e3b04\",\r\n \"name\": \"65c2be4f-8625-c747-ed34-e923079e3b04\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I need guidance with serial console access\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/4862537c-5b3d-88c4-b393-07ccf284c4af\",\r\n \"name\": \"4862537c-5b3d-88c4-b393-07ccf284c4af\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Failure to connect using RDP or SSH port\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/c101d166-7cd3-5f81-f571-b48432d1c853\",\r\n \"name\": \"c101d166-7cd3-5f81-f571-b48432d1c853\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My VM will not start after a configuration change\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/c40f77d3-fe8f-2582-530c-41978bcfc1a8\",\r\n \"name\": \"c40f77d3-fe8f-2582-530c-41978bcfc1a8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I received a disk related error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/d60254ec-81f6-14b8-17e5-86e090a5c114\",\r\n \"name\": \"d60254ec-81f6-14b8-17e5-86e090a5c114\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I received an allocation failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/f3dce59e-ef98-1cc5-e649-c712a6e403d3\",\r\n \"name\": \"f3dce59e-ef98-1cc5-e649-c712a6e403d3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My VM is unresponsive to start or stop operations\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/5f497f89-a8f9-bf7a-4c9b-4f2d952a63f7\",\r\n \"name\": \"5f497f89-a8f9-bf7a-4c9b-4f2d952a63f7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I am unable to resize my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/b20d1f10-6751-1b16-e043-346951c9737f\",\r\n \"name\": \"b20d1f10-6751-1b16-e043-346951c9737f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My start or stop operation failed\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/76ba6e97-4c43-a8f1-eced-98e5b488e3c2\",\r\n \"name\": \"76ba6e97-4c43-a8f1-eced-98e5b488e3c2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My VMs OS is not booting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/0ae39b56-d43d-25bf-352e-6b902e34730a\",\r\n \"name\": \"0ae39b56-d43d-25bf-352e-6b902e34730a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My VMs OS is on a reboot loop\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/691c34b0-3089-227f-8877-0f9bb40655df\",\r\n \"name\": \"691c34b0-3089-227f-8877-0f9bb40655df\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / I applied updates and my VM will not boot\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/ea641794-4895-77ff-4493-8e27b3ed8088\",\r\n \"name\": \"ea641794-4895-77ff-4493-8e27b3ed8088\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / I received a failure when starting my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/326e6b44-39dd-df25-ed6c-2a3dbcce27a1\",\r\n \"name\": \"326e6b44-39dd-df25-ed6c-2a3dbcce27a1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My problem is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/d713e96b-b6ba-cafe-08dc-d708cf3a927b\",\r\n \"name\": \"d713e96b-b6ba-cafe-08dc-d708cf3a927b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I need guidance preparing an image\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/473d7c64-95eb-3efa-730b-4991d75704a0\",\r\n \"name\": \"473d7c64-95eb-3efa-730b-4991d75704a0\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I need guidance deploying with managed disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/859e0b1f-c69e-7806-6a43-22e03c121d33\",\r\n \"name\": \"859e0b1f-c69e-7806-6a43-22e03c121d33\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot custom image deployment failures\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/59b2bc0b-6d1f-340b-141b-76940d6ed87d\",\r\n \"name\": \"59b2bc0b-6d1f-340b-141b-76940d6ed87d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot marketplace image deployment failures\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/7a0432be-d5a8-5b37-410e-fbbd62a085c2\",\r\n \"name\": \"7a0432be-d5a8-5b37-410e-fbbd62a085c2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / My desired region or VM size is unavailable\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/416fff37-d999-6441-9bb4-8fe3bd1ee40a\",\r\n \"name\": \"416fff37-d999-6441-9bb4-8fe3bd1ee40a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I received an allocation failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/b3d35ad2-0156-24f9-65dc-553180a538f2\",\r\n \"name\": \"b3d35ad2-0156-24f9-65dc-553180a538f2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I am unable to deploy a captured or generalized image\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/9dcc8c00-a5d9-8121-1399-6950370ecbec\",\r\n \"name\": \"9dcc8c00-a5d9-8121-1399-6950370ecbec\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot my ARM template error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/b4d1e87a-4dd1-f166-d55f-1b1d4aa0dec2\",\r\n \"name\": \"b4d1e87a-4dd1-f166-d55f-1b1d4aa0dec2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I received a provisioning or deployment timeout error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/a6946f32-c1e2-ca94-be27-dbebcd6cb5f3\",\r\n \"name\": \"a6946f32-c1e2-ca94-be27-dbebcd6cb5f3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / My guest OS is causing restarts\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/edf63757-a5fc-8c55-dbb1-2d1619efac0a\",\r\n \"name\": \"edf63757-a5fc-8c55-dbb1-2d1619efac0a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Request Root Cause Statement for recent availability impact\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/0ec0021e-0e64-77ea-3cfc-32103fc2c2c3\",\r\n \"name\": \"0ec0021e-0e64-77ea-3cfc-32103fc2c2c3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Help diagnose my VM restart issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/20aa3013-c309-ffdb-e8ec-d6214202fe2c\",\r\n \"name\": \"20aa3013-c309-ffdb-e8ec-d6214202fe2c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Disk throughput is lower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/c7a4adae-6c60-c08c-8024-48416fe60c65\",\r\n \"name\": \"c7a4adae-6c60-c08c-8024-48416fe60c65\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / CPU usage is higher than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/0d5dd76a-5da0-e5f7-4aac-14d6762c5719\",\r\n \"name\": \"0d5dd76a-5da0-e5f7-4aac-14d6762c5719\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Memory usage is higher than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/0b6b2a1c-c62f-37b7-b676-7d301bf3ac2e\",\r\n \"name\": \"0b6b2a1c-c62f-37b7-b676-7d301bf3ac2e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / GPU processing is slower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/0744e2e3-915f-354d-4cf4-15611d915082\",\r\n \"name\": \"0744e2e3-915f-354d-4cf4-15611d915082\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Guidance for better VM sizing and throughput\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/fbc190b2-887d-53f4-d89f-506fe1b0bca0\",\r\n \"name\": \"fbc190b2-887d-53f4-d89f-506fe1b0bca0\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Unable to resize my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/0bc575fd-4c7c-1342-c2dc-00ea0a7417d4\",\r\n \"name\": \"0bc575fd-4c7c-1342-c2dc-00ea0a7417d4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Resizing a virtual disk\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/3f3c91f0-5972-0077-6d84-9bd969a76b9c\",\r\n \"name\": \"3f3c91f0-5972-0077-6d84-9bd969a76b9c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Attaching or detaching virtual disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/0f37d7f2-37b0-68d0-41c7-73366919e9b6\",\r\n \"name\": \"0f37d7f2-37b0-68d0-41c7-73366919e9b6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Creating or deleting virtual disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/2c916744-50e2-f012-5c63-cb6d4b3fe336\",\r\n \"name\": \"2c916744-50e2-f012-5c63-cb6d4b3fe336\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Disk throughput is lower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/9b978658-5b35-235f-7225-73c8a020f854\",\r\n \"name\": \"9b978658-5b35-235f-7225-73c8a020f854\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Restore a VM from snapshot\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/b364b834-a97a-4ac2-51cf-1753030a4a64\",\r\n \"name\": \"b364b834-a97a-4ac2-51cf-1753030a4a64\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Issues with Direct Upload for Managed Disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/99c9a352-6723-75fe-dbc1-6fa5e0bda9d4\",\r\n \"name\": \"99c9a352-6723-75fe-dbc1-6fa5e0bda9d4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / My problem is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/330e83f6-b7e3-a6c7-c829-d0a4b87c48c4\",\r\n \"name\": \"330e83f6-b7e3-a6c7-c829-d0a4b87c48c4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Diagnostic (boot diagnostics) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/8cbac97b-41ac-e94a-2e7b-444155e13f67\",\r\n \"name\": \"8cbac97b-41ac-e94a-2e7b-444155e13f67\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Custom Script (CSE) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/e05ff447-6146-a743-c96c-fc711ae69bb0\",\r\n \"name\": \"e05ff447-6146-a743-c96c-fc711ae69bb0\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Log Analytics (OMS) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/2ecbadca-bddb-86b0-75f3-22a894aee131\",\r\n \"name\": \"2ecbadca-bddb-86b0-75f3-22a894aee131\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Desired State Configuration (DSC) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/1b37033a-0de6-668c-ae9f-046b2ff8f136\",\r\n \"name\": \"1b37033a-0de6-668c-ae9f-046b2ff8f136\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Microsoft Antimalware (security) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/4a1a712f-b47a-519d-57d5-46c62b17a3e7\",\r\n \"name\": \"4a1a712f-b47a-519d-57d5-46c62b17a3e7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Disk Encryption (ADE) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/7a6220c0-dc08-717c-42ee-2a768c17bc3c\",\r\n \"name\": \"7a6220c0-dc08-717c-42ee-2a768c17bc3c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Snapshot (Azure Backup) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/a3425f19-0d75-c7dd-d690-3815e5cd9da7\",\r\n \"name\": \"a3425f19-0d75-c7dd-d690-3815e5cd9da7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Update Management extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/3dbbd8b3-db83-9aaa-58be-e94634690bb9\",\r\n \"name\": \"3dbbd8b3-db83-9aaa-58be-e94634690bb9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / GPU Driver extension issue (NVIDIA)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/40bddb88-8440-df18-e0f9-09669c86244e\",\r\n \"name\": \"40bddb88-8440-df18-e0f9-09669c86244e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Network Watcher agent extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/9200ace0-935d-33d8-2094-4e4e91191e9d\",\r\n \"name\": \"9200ace0-935d-33d8-2094-4e4e91191e9d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Monitoring agent (MMA) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/0b6100d8-d1b1-48f3-be89-2dd79979fb62\",\r\n \"name\": \"0b6100d8-d1b1-48f3-be89-2dd79979fb62\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Access (enablevmaccess) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/fb89de86-a9b6-1292-4a65-acda51054736\",\r\n \"name\": \"fb89de86-a9b6-1292-4a65-acda51054736\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Guest Agent issue (crash, hung, not upgrading, or not connecting)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/68f47b23-d3bb-2380-2190-8ea3d6fd593a\",\r\n \"name\": \"68f47b23-d3bb-2380-2190-8ea3d6fd593a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Custom Script (CSE) extension using Managed Identity issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/1bf9b69c-ed00-1627-0012-f5b5a0e5e0a4\",\r\n \"name\": \"1bf9b69c-ed00-1627-0012-f5b5a0e5e0a4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Active Directory Login extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/94a6cfd1-af5c-dc01-5415-44dee8d6800b\",\r\n \"name\": \"94a6cfd1-af5c-dc01-5415-44dee8d6800b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / GPU Driver extension issue (AMD)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/1350f3cb-cdd9-5996-fd4f-5ddca60bdcb7\",\r\n \"name\": \"1350f3cb-cdd9-5996-fd4f-5ddca60bdcb7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My encryption has failed due to a pre-req failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/4e0a1a96-d790-792a-210a-492e029dc1de\",\r\n \"name\": \"4e0a1a96-d790-792a-210a-492e029dc1de\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is due to unsupported image or operating system\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/10d11557-35bc-f44c-107e-802e2fb7e1c8\",\r\n \"name\": \"10d11557-35bc-f44c-107e-802e2fb7e1c8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My VM is not booting after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/b6743c0d-680c-b129-818d-c3f5b177f904\",\r\n \"name\": \"b6743c0d-680c-b129-818d-c3f5b177f904\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My VM is not reachable after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/7f298da5-723e-211d-d41e-0d0a03701656\",\r\n \"name\": \"7f298da5-723e-211d-d41e-0d0a03701656\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My data drive or file system is not available after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/c9b69827-590e-7db3-4bdf-a6472c135690\",\r\n \"name\": \"c9b69827-590e-7db3-4bdf-a6472c135690\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / I need guidance with Azure Key Vault configuration, permissions, or keys\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/2035562c-af0c-cf74-6b8f-3d38ac988130\",\r\n \"name\": \"2035562c-af0c-cf74-6b8f-3d38ac988130\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / Current status of encryption is incorrect for my VM (Portal, CLI, PS)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/ebf08e9a-c81e-2ef6-fbfa-992b93587c41\",\r\n \"name\": \"ebf08e9a-c81e-2ef6-fbfa-992b93587c41\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue with decrypting a virtual disk\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/3bc08be5-e9e6-2cde-ddc1-d7793ad3a70e\",\r\n \"name\": \"3bc08be5-e9e6-2cde-ddc1-d7793ad3a70e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is with troubleshooting an encrypted VM (unlocking)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/3c1373bc-483e-5817-80aa-45f8044dbeea\",\r\n \"name\": \"3c1373bc-483e-5817-80aa-45f8044dbeea\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My encryption is not working as expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/ba3758d8-3246-3d26-9b81-4f2c236df115\",\r\n \"name\": \"ba3758d8-3246-3d26-9b81-4f2c236df115\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/8af24982-4be2-b92c-af06-f3df0f29fc22\",\r\n \"name\": \"8af24982-4be2-b92c-af06-f3df0f29fc22\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I am having issues configuring or enabling backup\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/2ffdd13f-2348-2a94-9650-b53905b0a750\",\r\n \"name\": \"2ffdd13f-2348-2a94-9650-b53905b0a750\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Backup is failing for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/28016531-9037-b4d8-6753-66f86cf29063\",\r\n \"name\": \"28016531-9037-b4d8-6753-66f86cf29063\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Restore is failing for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/18e098f4-a2aa-0b8a-22a6-14cd90f64f3a\",\r\n \"name\": \"18e098f4-a2aa-0b8a-22a6-14cd90f64f3a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Backup is taking longer than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/f056f930-df4e-4d32-5fa6-c09c80b56c1a\",\r\n \"name\": \"f056f930-df4e-4d32-5fa6-c09c80b56c1a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Restore is taking longer than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/97535f5c-fe02-af2d-e29b-d519fecba8b4\",\r\n \"name\": \"97535f5c-fe02-af2d-e29b-d519fecba8b4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I need guidance configuring backup for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/604f02a1-609d-72ec-5d5d-f91abe37c1e7\",\r\n \"name\": \"604f02a1-609d-72ec-5d5d-f91abe37c1e7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I need guidance with restoring my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/57a236ed-df2b-ba44-eac5-b0415774a7d8\",\r\n \"name\": \"57a236ed-df2b-ba44-eac5-b0415774a7d8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / My issue is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/7a592167-d3d3-2b49-1ec6-234521b70791\",\r\n \"name\": \"7a592167-d3d3-2b49-1ec6-234521b70791\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Guest OS - Kernel upgrade issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/6efb5661-da3e-90fb-a1a3-837cad023d23\",\r\n \"name\": \"6efb5661-da3e-90fb-a1a3-837cad023d23\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Create a Linux failover cluster\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/23ec520a-8c6f-0872-6a2f-b91c5ff35dcb\",\r\n \"name\": \"23ec520a-8c6f-0872-6a2f-b91c5ff35dcb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to delete a virtual machine\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/592b8875-cae2-7233-282b-5d44f6e2f37f\",\r\n \"name\": \"592b8875-cae2-7233-282b-5d44f6e2f37f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to delete a Resource Group\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/c9e2ce19-d8aa-69c8-27a5-700441a8e9bd\",\r\n \"name\": \"c9e2ce19-d8aa-69c8-27a5-700441a8e9bd\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Instance Metadata Service\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/abb93a79-3d88-7a3b-8541-d01624fe4d20\",\r\n \"name\": \"abb93a79-3d88-7a3b-8541-d01624fe4d20\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage or use a Linux cluster in Azure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/d4942be3-a6f1-370b-2398-be2ea815c748\",\r\n \"name\": \"d4942be3-a6f1-370b-2398-be2ea815c748\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Azure Metadata Service (Scheduled Events)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/6528c651-6ef2-9e2e-e93b-498eaa6c8980\",\r\n \"name\": \"6528c651-6ef2-9e2e-e93b-498eaa6c8980\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to share Shared Image Gallery, Image Definition or Image Version\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/b2b37cdc-98ec-83ce-df72-9b0cc788f4f5\",\r\n \"name\": \"b2b37cdc-98ec-83ce-df72-9b0cc788f4f5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage an instance of SQL Server\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/b4991d30-6ff3-56aa-c832-0aa9f9e8f0c1\",\r\n \"name\": \"b4991d30-6ff3-56aa-c832-0aa9f9e8f0c1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Guidance regarding retirement of Classic IAAS resources (ASM)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/a462719a-90cf-45a5-60f0-e4f742a60e5a\",\r\n \"name\": \"a462719a-90cf-45a5-60f0-e4f742a60e5a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate IAAS resources from Classic (ASM) to Azure Resource Manager (ARM)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/e0c5322b-fad8-7555-c8e0-6b9630ad590f\",\r\n \"name\": \"e0c5322b-fad8-7555-c8e0-6b9630ad590f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Managed disks migration\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/1a1765c8-6cd4-8857-1543-2a269f996b6c\",\r\n \"name\": \"1a1765c8-6cd4-8857-1543-2a269f996b6c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between storage accounts\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/912f8f14-107e-1bc1-c037-5c1bf9e60fbb\",\r\n \"name\": \"912f8f14-107e-1bc1-c037-5c1bf9e60fbb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between regions\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/ab3525b3-dae0-840d-ffbe-1e10e831fa79\",\r\n \"name\": \"ab3525b3-dae0-840d-ffbe-1e10e831fa79\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between subscriptions\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/1c960d1e-fcde-8c22-71b5-b80157c6a667\",\r\n \"name\": \"1c960d1e-fcde-8c22-71b5-b80157c6a667\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate resources using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/0b5ba037-70e3-364f-5e0d-b9c02ea3a341\",\r\n \"name\": \"0b5ba037-70e3-364f-5e0d-b9c02ea3a341\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate virtual machines from on-premises to Azure using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/5942fab6-bc22-4488-65ad-45ed868e7b23\",\r\n \"name\": \"5942fab6-bc22-4488-65ad-45ed868e7b23\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate virtual machines from third-party provider to Azure using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/224e3d01-19b9-3ea4-2af6-f208b822dc51\",\r\n \"name\": \"224e3d01-19b9-3ea4-2af6-f208b822dc51\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between resource groups\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/a1c4a5b7-1a16-b05f-7930-877b3826e306\",\r\n \"name\": \"a1c4a5b7-1a16-b05f-7930-877b3826e306\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Planned Maintenance (Azure Platform)\"\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/00b0b194-7e37-b8c4-db36-eb6d3548cac1\",\r\n \"name\": \"00b0b194-7e37-b8c4-db36-eb6d3548cac1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Compute-VM (cores-vCPUs) subscription limit increases\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/60ac7433-77c9-85ac-897d-3ef4112732b1\",\r\n \"name\": \"60ac7433-77c9-85ac-897d-3ef4112732b1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / My configuration change impacted connectivity\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/1cd64f59-26a0-f45e-0419-44c0244009b2\",\r\n \"name\": \"1cd64f59-26a0-f45e-0419-44c0244009b2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Troubleshoot my network security group (NSG)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/c4b7a9f2-8f4b-8fcf-5394-2a221d2e723d\",\r\n \"name\": \"c4b7a9f2-8f4b-8fcf-5394-2a221d2e723d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Troubleshoot my VM firewall\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/733fb4be-707d-b2c5-b5d1-01d743a154d9\",\r\n \"name\": \"733fb4be-707d-b2c5-b5d1-01d743a154d9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I have an issue with my public IP\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/7b901199-fb49-5141-5754-8492bf2badc6\",\r\n \"name\": \"7b901199-fb49-5141-5754-8492bf2badc6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I need to reset my password\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/65c2be4f-8625-c747-ed34-e923079e3b04\",\r\n \"name\": \"65c2be4f-8625-c747-ed34-e923079e3b04\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I need guidance with serial console access\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/4862537c-5b3d-88c4-b393-07ccf284c4af\",\r\n \"name\": \"4862537c-5b3d-88c4-b393-07ccf284c4af\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Failure to connect using RDP or SSH port\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/c101d166-7cd3-5f81-f571-b48432d1c853\",\r\n \"name\": \"c101d166-7cd3-5f81-f571-b48432d1c853\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My VM will not start after a configuration change\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/c40f77d3-fe8f-2582-530c-41978bcfc1a8\",\r\n \"name\": \"c40f77d3-fe8f-2582-530c-41978bcfc1a8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I received a disk related error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/d60254ec-81f6-14b8-17e5-86e090a5c114\",\r\n \"name\": \"d60254ec-81f6-14b8-17e5-86e090a5c114\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I received an allocation failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/f3dce59e-ef98-1cc5-e649-c712a6e403d3\",\r\n \"name\": \"f3dce59e-ef98-1cc5-e649-c712a6e403d3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My VM is unresponsive to start or stop operations\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/5f497f89-a8f9-bf7a-4c9b-4f2d952a63f7\",\r\n \"name\": \"5f497f89-a8f9-bf7a-4c9b-4f2d952a63f7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I am unable to resize my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/b20d1f10-6751-1b16-e043-346951c9737f\",\r\n \"name\": \"b20d1f10-6751-1b16-e043-346951c9737f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My start or stop operation failed\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/76ba6e97-4c43-a8f1-eced-98e5b488e3c2\",\r\n \"name\": \"76ba6e97-4c43-a8f1-eced-98e5b488e3c2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My VMs OS is not booting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/0ae39b56-d43d-25bf-352e-6b902e34730a\",\r\n \"name\": \"0ae39b56-d43d-25bf-352e-6b902e34730a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My VMs OS is on a reboot loop\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/691c34b0-3089-227f-8877-0f9bb40655df\",\r\n \"name\": \"691c34b0-3089-227f-8877-0f9bb40655df\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / I applied updates and my VM will not boot\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/ea641794-4895-77ff-4493-8e27b3ed8088\",\r\n \"name\": \"ea641794-4895-77ff-4493-8e27b3ed8088\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / I received a failure when starting my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/326e6b44-39dd-df25-ed6c-2a3dbcce27a1\",\r\n \"name\": \"326e6b44-39dd-df25-ed6c-2a3dbcce27a1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My problem is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/d713e96b-b6ba-cafe-08dc-d708cf3a927b\",\r\n \"name\": \"d713e96b-b6ba-cafe-08dc-d708cf3a927b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I need guidance preparing an image\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/473d7c64-95eb-3efa-730b-4991d75704a0\",\r\n \"name\": \"473d7c64-95eb-3efa-730b-4991d75704a0\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I need guidance deploying with managed disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/859e0b1f-c69e-7806-6a43-22e03c121d33\",\r\n \"name\": \"859e0b1f-c69e-7806-6a43-22e03c121d33\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot custom image deployment failures\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/59b2bc0b-6d1f-340b-141b-76940d6ed87d\",\r\n \"name\": \"59b2bc0b-6d1f-340b-141b-76940d6ed87d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot marketplace image deployment failures\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/7a0432be-d5a8-5b37-410e-fbbd62a085c2\",\r\n \"name\": \"7a0432be-d5a8-5b37-410e-fbbd62a085c2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / My desired region or VM size is unavailable\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/416fff37-d999-6441-9bb4-8fe3bd1ee40a\",\r\n \"name\": \"416fff37-d999-6441-9bb4-8fe3bd1ee40a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I received an allocation failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/b3d35ad2-0156-24f9-65dc-553180a538f2\",\r\n \"name\": \"b3d35ad2-0156-24f9-65dc-553180a538f2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I am unable to deploy a captured or generalized image\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/9dcc8c00-a5d9-8121-1399-6950370ecbec\",\r\n \"name\": \"9dcc8c00-a5d9-8121-1399-6950370ecbec\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot my ARM template error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/b4d1e87a-4dd1-f166-d55f-1b1d4aa0dec2\",\r\n \"name\": \"b4d1e87a-4dd1-f166-d55f-1b1d4aa0dec2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I received a provisioning or deployment timeout error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/a6946f32-c1e2-ca94-be27-dbebcd6cb5f3\",\r\n \"name\": \"a6946f32-c1e2-ca94-be27-dbebcd6cb5f3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / My guest OS is causing restarts\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/edf63757-a5fc-8c55-dbb1-2d1619efac0a\",\r\n \"name\": \"edf63757-a5fc-8c55-dbb1-2d1619efac0a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Request Root Cause Statement for recent availability impact\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/0ec0021e-0e64-77ea-3cfc-32103fc2c2c3\",\r\n \"name\": \"0ec0021e-0e64-77ea-3cfc-32103fc2c2c3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Help diagnose my VM restart issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/20aa3013-c309-ffdb-e8ec-d6214202fe2c\",\r\n \"name\": \"20aa3013-c309-ffdb-e8ec-d6214202fe2c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Disk throughput is lower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/c7a4adae-6c60-c08c-8024-48416fe60c65\",\r\n \"name\": \"c7a4adae-6c60-c08c-8024-48416fe60c65\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / CPU usage is higher than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/0d5dd76a-5da0-e5f7-4aac-14d6762c5719\",\r\n \"name\": \"0d5dd76a-5da0-e5f7-4aac-14d6762c5719\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Memory usage is higher than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/0b6b2a1c-c62f-37b7-b676-7d301bf3ac2e\",\r\n \"name\": \"0b6b2a1c-c62f-37b7-b676-7d301bf3ac2e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / GPU processing is slower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/0744e2e3-915f-354d-4cf4-15611d915082\",\r\n \"name\": \"0744e2e3-915f-354d-4cf4-15611d915082\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Guidance for better VM sizing and throughput\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/fbc190b2-887d-53f4-d89f-506fe1b0bca0\",\r\n \"name\": \"fbc190b2-887d-53f4-d89f-506fe1b0bca0\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Unable to resize my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/0bc575fd-4c7c-1342-c2dc-00ea0a7417d4\",\r\n \"name\": \"0bc575fd-4c7c-1342-c2dc-00ea0a7417d4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Resizing a virtual disk\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/3f3c91f0-5972-0077-6d84-9bd969a76b9c\",\r\n \"name\": \"3f3c91f0-5972-0077-6d84-9bd969a76b9c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Attaching or detaching virtual disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/0f37d7f2-37b0-68d0-41c7-73366919e9b6\",\r\n \"name\": \"0f37d7f2-37b0-68d0-41c7-73366919e9b6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Creating or deleting virtual disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/2c916744-50e2-f012-5c63-cb6d4b3fe336\",\r\n \"name\": \"2c916744-50e2-f012-5c63-cb6d4b3fe336\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Disk throughput is lower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/9b978658-5b35-235f-7225-73c8a020f854\",\r\n \"name\": \"9b978658-5b35-235f-7225-73c8a020f854\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Restore a VM from snapshot\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/b364b834-a97a-4ac2-51cf-1753030a4a64\",\r\n \"name\": \"b364b834-a97a-4ac2-51cf-1753030a4a64\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Issues with Direct Upload for Managed Disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/99c9a352-6723-75fe-dbc1-6fa5e0bda9d4\",\r\n \"name\": \"99c9a352-6723-75fe-dbc1-6fa5e0bda9d4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / My problem is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/330e83f6-b7e3-a6c7-c829-d0a4b87c48c4\",\r\n \"name\": \"330e83f6-b7e3-a6c7-c829-d0a4b87c48c4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Diagnostic (boot diagnostics) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/8cbac97b-41ac-e94a-2e7b-444155e13f67\",\r\n \"name\": \"8cbac97b-41ac-e94a-2e7b-444155e13f67\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Custom Script (CSE) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/e05ff447-6146-a743-c96c-fc711ae69bb0\",\r\n \"name\": \"e05ff447-6146-a743-c96c-fc711ae69bb0\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Log Analytics (OMS) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/2ecbadca-bddb-86b0-75f3-22a894aee131\",\r\n \"name\": \"2ecbadca-bddb-86b0-75f3-22a894aee131\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Desired State Configuration (DSC) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/1b37033a-0de6-668c-ae9f-046b2ff8f136\",\r\n \"name\": \"1b37033a-0de6-668c-ae9f-046b2ff8f136\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Microsoft Antimalware (security) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/4a1a712f-b47a-519d-57d5-46c62b17a3e7\",\r\n \"name\": \"4a1a712f-b47a-519d-57d5-46c62b17a3e7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Disk Encryption (ADE) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/7a6220c0-dc08-717c-42ee-2a768c17bc3c\",\r\n \"name\": \"7a6220c0-dc08-717c-42ee-2a768c17bc3c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Snapshot (Azure Backup) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/a3425f19-0d75-c7dd-d690-3815e5cd9da7\",\r\n \"name\": \"a3425f19-0d75-c7dd-d690-3815e5cd9da7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Update Management extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/3dbbd8b3-db83-9aaa-58be-e94634690bb9\",\r\n \"name\": \"3dbbd8b3-db83-9aaa-58be-e94634690bb9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / GPU Driver extension issue (NVIDIA)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/40bddb88-8440-df18-e0f9-09669c86244e\",\r\n \"name\": \"40bddb88-8440-df18-e0f9-09669c86244e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Network Watcher agent extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/9200ace0-935d-33d8-2094-4e4e91191e9d\",\r\n \"name\": \"9200ace0-935d-33d8-2094-4e4e91191e9d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Monitoring agent (MMA) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/0b6100d8-d1b1-48f3-be89-2dd79979fb62\",\r\n \"name\": \"0b6100d8-d1b1-48f3-be89-2dd79979fb62\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Access (enablevmaccess) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/fb89de86-a9b6-1292-4a65-acda51054736\",\r\n \"name\": \"fb89de86-a9b6-1292-4a65-acda51054736\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Guest Agent issue (crash, hung, not upgrading, or not connecting)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/1bf9b69c-ed00-1627-0012-f5b5a0e5e0a4\",\r\n \"name\": \"1bf9b69c-ed00-1627-0012-f5b5a0e5e0a4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Active Directory Login extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/94a6cfd1-af5c-dc01-5415-44dee8d6800b\",\r\n \"name\": \"94a6cfd1-af5c-dc01-5415-44dee8d6800b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / GPU Driver extension issue (AMD)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/1350f3cb-cdd9-5996-fd4f-5ddca60bdcb7\",\r\n \"name\": \"1350f3cb-cdd9-5996-fd4f-5ddca60bdcb7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My encryption has failed due to a pre-req failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/4e0a1a96-d790-792a-210a-492e029dc1de\",\r\n \"name\": \"4e0a1a96-d790-792a-210a-492e029dc1de\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is due to unsupported image or operating system\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/10d11557-35bc-f44c-107e-802e2fb7e1c8\",\r\n \"name\": \"10d11557-35bc-f44c-107e-802e2fb7e1c8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My VM is not booting after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/b6743c0d-680c-b129-818d-c3f5b177f904\",\r\n \"name\": \"b6743c0d-680c-b129-818d-c3f5b177f904\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My VM is not reachable after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/7f298da5-723e-211d-d41e-0d0a03701656\",\r\n \"name\": \"7f298da5-723e-211d-d41e-0d0a03701656\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My data drive or file system is not available after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/c9b69827-590e-7db3-4bdf-a6472c135690\",\r\n \"name\": \"c9b69827-590e-7db3-4bdf-a6472c135690\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / I need guidance with Azure Key Vault configuration, permissions, or keys\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/2035562c-af0c-cf74-6b8f-3d38ac988130\",\r\n \"name\": \"2035562c-af0c-cf74-6b8f-3d38ac988130\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / Current status of encryption is incorrect for my VM (Portal, CLI, PS)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/ebf08e9a-c81e-2ef6-fbfa-992b93587c41\",\r\n \"name\": \"ebf08e9a-c81e-2ef6-fbfa-992b93587c41\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue with decrypting a virtual disk\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/3bc08be5-e9e6-2cde-ddc1-d7793ad3a70e\",\r\n \"name\": \"3bc08be5-e9e6-2cde-ddc1-d7793ad3a70e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is with troubleshooting an encrypted VM (unlocking)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/3c1373bc-483e-5817-80aa-45f8044dbeea\",\r\n \"name\": \"3c1373bc-483e-5817-80aa-45f8044dbeea\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My encryption is not working as expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/ba3758d8-3246-3d26-9b81-4f2c236df115\",\r\n \"name\": \"ba3758d8-3246-3d26-9b81-4f2c236df115\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/8af24982-4be2-b92c-af06-f3df0f29fc22\",\r\n \"name\": \"8af24982-4be2-b92c-af06-f3df0f29fc22\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I am having issues configuring or enabling backup\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/2ffdd13f-2348-2a94-9650-b53905b0a750\",\r\n \"name\": \"2ffdd13f-2348-2a94-9650-b53905b0a750\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Backup is failing for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/28016531-9037-b4d8-6753-66f86cf29063\",\r\n \"name\": \"28016531-9037-b4d8-6753-66f86cf29063\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Restore is failing for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/18e098f4-a2aa-0b8a-22a6-14cd90f64f3a\",\r\n \"name\": \"18e098f4-a2aa-0b8a-22a6-14cd90f64f3a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Backup is taking longer than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/f056f930-df4e-4d32-5fa6-c09c80b56c1a\",\r\n \"name\": \"f056f930-df4e-4d32-5fa6-c09c80b56c1a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Restore is taking longer than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/97535f5c-fe02-af2d-e29b-d519fecba8b4\",\r\n \"name\": \"97535f5c-fe02-af2d-e29b-d519fecba8b4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I need guidance configuring backup for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/604f02a1-609d-72ec-5d5d-f91abe37c1e7\",\r\n \"name\": \"604f02a1-609d-72ec-5d5d-f91abe37c1e7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I need guidance with restoring my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/57a236ed-df2b-ba44-eac5-b0415774a7d8\",\r\n \"name\": \"57a236ed-df2b-ba44-eac5-b0415774a7d8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / My issue is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/7a592167-d3d3-2b49-1ec6-234521b70791\",\r\n \"name\": \"7a592167-d3d3-2b49-1ec6-234521b70791\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Guest OS - Kernel upgrade issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/6efb5661-da3e-90fb-a1a3-837cad023d23\",\r\n \"name\": \"6efb5661-da3e-90fb-a1a3-837cad023d23\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Create a Linux failover cluster\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/23ec520a-8c6f-0872-6a2f-b91c5ff35dcb\",\r\n \"name\": \"23ec520a-8c6f-0872-6a2f-b91c5ff35dcb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to delete a virtual machine\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/592b8875-cae2-7233-282b-5d44f6e2f37f\",\r\n \"name\": \"592b8875-cae2-7233-282b-5d44f6e2f37f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to delete a Resource Group\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/c9e2ce19-d8aa-69c8-27a5-700441a8e9bd\",\r\n \"name\": \"c9e2ce19-d8aa-69c8-27a5-700441a8e9bd\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Instance Metadata Service\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/abb93a79-3d88-7a3b-8541-d01624fe4d20\",\r\n \"name\": \"abb93a79-3d88-7a3b-8541-d01624fe4d20\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage or use a Linux cluster in Azure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/d4942be3-a6f1-370b-2398-be2ea815c748\",\r\n \"name\": \"d4942be3-a6f1-370b-2398-be2ea815c748\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Azure Metadata Service (Scheduled Events)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/6528c651-6ef2-9e2e-e93b-498eaa6c8980\",\r\n \"name\": \"6528c651-6ef2-9e2e-e93b-498eaa6c8980\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to share Shared Image Gallery, Image Definition or Image Version\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/b2b37cdc-98ec-83ce-df72-9b0cc788f4f5\",\r\n \"name\": \"b2b37cdc-98ec-83ce-df72-9b0cc788f4f5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage an instance of SQL Server\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/b4991d30-6ff3-56aa-c832-0aa9f9e8f0c1\",\r\n \"name\": \"b4991d30-6ff3-56aa-c832-0aa9f9e8f0c1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Guidance regarding retirement of Classic IAAS resources (ASM)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/a462719a-90cf-45a5-60f0-e4f742a60e5a\",\r\n \"name\": \"a462719a-90cf-45a5-60f0-e4f742a60e5a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate IAAS resources from Classic (ASM) to Azure Resource Manager (ARM)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/e0c5322b-fad8-7555-c8e0-6b9630ad590f\",\r\n \"name\": \"e0c5322b-fad8-7555-c8e0-6b9630ad590f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Managed disks migration\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/1a1765c8-6cd4-8857-1543-2a269f996b6c\",\r\n \"name\": \"1a1765c8-6cd4-8857-1543-2a269f996b6c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between storage accounts\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/912f8f14-107e-1bc1-c037-5c1bf9e60fbb\",\r\n \"name\": \"912f8f14-107e-1bc1-c037-5c1bf9e60fbb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between regions\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/ab3525b3-dae0-840d-ffbe-1e10e831fa79\",\r\n \"name\": \"ab3525b3-dae0-840d-ffbe-1e10e831fa79\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between subscriptions\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/1c960d1e-fcde-8c22-71b5-b80157c6a667\",\r\n \"name\": \"1c960d1e-fcde-8c22-71b5-b80157c6a667\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate resources using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/0b5ba037-70e3-364f-5e0d-b9c02ea3a341\",\r\n \"name\": \"0b5ba037-70e3-364f-5e0d-b9c02ea3a341\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate virtual machines from on-premises to Azure using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/5942fab6-bc22-4488-65ad-45ed868e7b23\",\r\n \"name\": \"5942fab6-bc22-4488-65ad-45ed868e7b23\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate virtual machines from third-party provider to Azure using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/224e3d01-19b9-3ea4-2af6-f208b822dc51\",\r\n \"name\": \"224e3d01-19b9-3ea4-2af6-f208b822dc51\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between resource groups\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/de8937fc-74cc-daa7-2639-e1fe433dcb87/problemClassifications/a1c4a5b7-1a16-b05f-7930-877b3826e306\",\r\n \"name\": \"a1c4a5b7-1a16-b05f-7930-877b3826e306\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Planned Maintenance (Azure Platform)\"\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
@@ -382,13 +382,13 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "98dc3dba-4633-4725-976e-5c80bcb65778"
+ "d3a44d0a-4a2c-44fd-93d3-e7eee38ce2ab"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.28516.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Support.MicrosoftSupportClient/1.0.0.0"
@@ -402,7 +402,10 @@
"no-cache"
],
"x-ms-ratelimit-remaining-tenant-reads": [
- "11915"
+ "11993"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -411,22 +414,19 @@
"Kestrel"
],
"x-ms-request-id": [
- "39576dc4-78d3-431e-b47c-eec469f83d6c"
+ "9bcc3ecd-a598-4bc4-a0e9-1f7209c72ccf"
],
"x-ms-correlation-request-id": [
- "39576dc4-78d3-431e-b47c-eec469f83d6c"
+ "9bcc3ecd-a598-4bc4-a0e9-1f7209c72ccf"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200315T071144Z:39576dc4-78d3-431e-b47c-eec469f83d6c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "CENTRALUSEUAP:20200327T043554Z:9bcc3ecd-a598-4bc4-a0e9-1f7209c72ccf"
],
"Date": [
- "Sun, 15 Mar 2020 07:11:43 GMT"
+ "Fri, 27 Mar 2020 04:35:54 GMT"
],
"Content-Length": [
- "33975"
+ "33597"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -435,7 +435,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/13086017-942d-eef0-6753-4110d1f81f6d\",\r\n \"name\": \"13086017-942d-eef0-6753-4110d1f81f6d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Compute-VM (cores-vCPUs) subscription limit increases\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/97d59e9a-44c7-75a7-3dea-576703508865\",\r\n \"name\": \"97d59e9a-44c7-75a7-3dea-576703508865\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / My configuration change impacted connectivity\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/95c99bc2-2b70-d1bc-e401-dfe25698a4a6\",\r\n \"name\": \"95c99bc2-2b70-d1bc-e401-dfe25698a4a6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Troubleshoot my network security group (NSG)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/f45ecfaa-466e-3411-2666-16543879bf34\",\r\n \"name\": \"f45ecfaa-466e-3411-2666-16543879bf34\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Troubleshoot my VM firewall\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/78c3817c-a9dd-cfe4-6f8f-e0ce3d9afd07\",\r\n \"name\": \"78c3817c-a9dd-cfe4-6f8f-e0ce3d9afd07\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I have an issue with my public IP\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/1b8cc1f2-a9bd-891c-238c-0998bcc41608\",\r\n \"name\": \"1b8cc1f2-a9bd-891c-238c-0998bcc41608\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I need to reset my password\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/5d3532ae-9392-ff02-de86-69ed8b293a41\",\r\n \"name\": \"5d3532ae-9392-ff02-de86-69ed8b293a41\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I need guidance with serial console access\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/9c66fc89-fd32-7b8d-f92a-5b5bb42607a9\",\r\n \"name\": \"9c66fc89-fd32-7b8d-f92a-5b5bb42607a9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Failure to connect using RDP or SSH port\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/4e1ee33c-5ef0-f7b7-0296-62314acdefa5\",\r\n \"name\": \"4e1ee33c-5ef0-f7b7-0296-62314acdefa5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My VM will not start after a configuration change\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/ddf6e1a4-1e77-d436-6455-f0555fb7d5ed\",\r\n \"name\": \"ddf6e1a4-1e77-d436-6455-f0555fb7d5ed\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I received a disk related error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/f485c457-8e19-0c18-9c62-e0a05ab914e3\",\r\n \"name\": \"f485c457-8e19-0c18-9c62-e0a05ab914e3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I received an allocation failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/61b12a2a-12f9-029b-90b2-4735b90bfc14\",\r\n \"name\": \"61b12a2a-12f9-029b-90b2-4735b90bfc14\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My VM is unresponsive to start or stop operations\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/6d3096e7-0b57-8847-e78a-def7801487e5\",\r\n \"name\": \"6d3096e7-0b57-8847-e78a-def7801487e5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I am unable to resize my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/e334629a-173b-975a-f651-c24565b9077d\",\r\n \"name\": \"e334629a-173b-975a-f651-c24565b9077d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My start or stop operation failed\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/c245da0a-ab9c-7ab9-7875-eb896bc5508c\",\r\n \"name\": \"c245da0a-ab9c-7ab9-7875-eb896bc5508c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My VMs OS is not booting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/4ddf7ee3-6980-035e-a734-1e36b94b9be9\",\r\n \"name\": \"4ddf7ee3-6980-035e-a734-1e36b94b9be9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My VMs OS is on a reboot loop\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/3c07823e-c4e1-ae0f-55fb-1e5202e452e4\",\r\n \"name\": \"3c07823e-c4e1-ae0f-55fb-1e5202e452e4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / I applied updates and my VM will not boot\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/5e3efdeb-4546-595b-0a16-5ca5eebe25c1\",\r\n \"name\": \"5e3efdeb-4546-595b-0a16-5ca5eebe25c1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / I received a failure when starting my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/10e2260f-0f1f-10fb-6093-bd6b97ee5fac\",\r\n \"name\": \"10e2260f-0f1f-10fb-6093-bd6b97ee5fac\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My problem is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/ddf63090-bce8-efbd-717e-7bc80a6f0ece\",\r\n \"name\": \"ddf63090-bce8-efbd-717e-7bc80a6f0ece\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I need guidance preparing an image\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/d3596c4a-696f-badc-5668-83e20de96c56\",\r\n \"name\": \"d3596c4a-696f-badc-5668-83e20de96c56\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I need guidance deploying with managed disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/57acac79-ef86-d322-1074-e87c017f92b1\",\r\n \"name\": \"57acac79-ef86-d322-1074-e87c017f92b1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot custom image deployment failures\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/e8484403-dea9-baed-e6a1-9116836e8b8e\",\r\n \"name\": \"e8484403-dea9-baed-e6a1-9116836e8b8e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot marketplace image deployment failures\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/51881b97-a6b8-e9f8-a0ce-34f1b33a2e3e\",\r\n \"name\": \"51881b97-a6b8-e9f8-a0ce-34f1b33a2e3e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / My desired region or VM size is unavailable\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/b3a44c43-b1d8-0c8e-30f8-ee932130629e\",\r\n \"name\": \"b3a44c43-b1d8-0c8e-30f8-ee932130629e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I received an allocation failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/9d901692-a4dc-403b-ef14-840cdad12f33\",\r\n \"name\": \"9d901692-a4dc-403b-ef14-840cdad12f33\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I am unable to deploy a captured or generalized image\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/ef54b615-48b4-8033-f681-8dcd5c9d1f9a\",\r\n \"name\": \"ef54b615-48b4-8033-f681-8dcd5c9d1f9a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot my ARM template error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/5c859f46-dd53-03b2-498f-b4225febf829\",\r\n \"name\": \"5c859f46-dd53-03b2-498f-b4225febf829\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I received a provisioning or deployment timeout error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/264b845c-6ac7-d69c-9d32-88cf9c210156\",\r\n \"name\": \"264b845c-6ac7-d69c-9d32-88cf9c210156\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / My guest OS is causing restarts\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/a9ef9e6c-84ba-5de7-0d83-eaed1d584c1b\",\r\n \"name\": \"a9ef9e6c-84ba-5de7-0d83-eaed1d584c1b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Request Root Cause Statement for recent availability impact\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/79c19cdf-bf2f-3f25-c74b-7f106b9ba3dc\",\r\n \"name\": \"79c19cdf-bf2f-3f25-c74b-7f106b9ba3dc\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Help diagnose my VM restart issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/5d42bdf0-0398-274d-cbd9-eb264391fce1\",\r\n \"name\": \"5d42bdf0-0398-274d-cbd9-eb264391fce1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Disk throughput is lower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/d42513af-f30a-5af5-c61e-84291d954f5e\",\r\n \"name\": \"d42513af-f30a-5af5-c61e-84291d954f5e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / CPU usage is higher than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/277537fc-0cb4-ca80-6e6e-b771fb5a9728\",\r\n \"name\": \"277537fc-0cb4-ca80-6e6e-b771fb5a9728\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Memory usage is higher than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/6820c41d-5001-a492-ed6d-e7447a342824\",\r\n \"name\": \"6820c41d-5001-a492-ed6d-e7447a342824\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / GPU processing is slower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/edd956dc-8fac-8362-9e6e-e2e2c950de7e\",\r\n \"name\": \"edd956dc-8fac-8362-9e6e-e2e2c950de7e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Guidance for better VM sizing and throughput\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/c13e9c1e-152a-d58b-9351-ce1373694294\",\r\n \"name\": \"c13e9c1e-152a-d58b-9351-ce1373694294\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Unable to resize my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/2711f5d6-3ed3-b9c5-4542-2ca277ccf4a4\",\r\n \"name\": \"2711f5d6-3ed3-b9c5-4542-2ca277ccf4a4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Resizing a virtual disk\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/17899864-d403-8b54-02a5-26940eab58b5\",\r\n \"name\": \"17899864-d403-8b54-02a5-26940eab58b5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Attaching or detaching virtual disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/25f82959-8825-930a-8775-b2da8035854a\",\r\n \"name\": \"25f82959-8825-930a-8775-b2da8035854a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Creating or deleting virtual disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/0d045849-a219-fab3-3bcd-75654a2bfd99\",\r\n \"name\": \"0d045849-a219-fab3-3bcd-75654a2bfd99\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Disk throughput is lower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/2f8277dc-de9b-63fd-114f-48f03a8c46f4\",\r\n \"name\": \"2f8277dc-de9b-63fd-114f-48f03a8c46f4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Restore a VM from snapshot\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/cde25e58-a8fd-416e-e7b4-835d90be0ce1\",\r\n \"name\": \"cde25e58-a8fd-416e-e7b4-835d90be0ce1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Issues with Direct Upload for Managed Disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/39901314-e711-2c3d-d592-4617ea775041\",\r\n \"name\": \"39901314-e711-2c3d-d592-4617ea775041\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / My problem is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/3cbef9ba-ff30-70bc-14c8-e4f3cf3cc9b8\",\r\n \"name\": \"3cbef9ba-ff30-70bc-14c8-e4f3cf3cc9b8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Diagnostic (boot diagnostics) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/18f75bf4-965a-819e-024c-82436865e58c\",\r\n \"name\": \"18f75bf4-965a-819e-024c-82436865e58c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Custom Script (CSE) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/d835cec0-eef7-d190-81e3-e960c6129a93\",\r\n \"name\": \"d835cec0-eef7-d190-81e3-e960c6129a93\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Log Analytics (OMS) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/922d9343-4f89-012f-6c92-d13f1b747a0d\",\r\n \"name\": \"922d9343-4f89-012f-6c92-d13f1b747a0d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Desired State Configuration (DSC) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/cd8fe49c-5364-5018-8fb3-91833303b95b\",\r\n \"name\": \"cd8fe49c-5364-5018-8fb3-91833303b95b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Microsoft Antimalware (security) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/a1244cae-1bb0-3bc5-423f-e6d4effedd7b\",\r\n \"name\": \"a1244cae-1bb0-3bc5-423f-e6d4effedd7b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Disk Encryption (ADE) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/68ad16a7-00fd-5363-8f63-2417df9e4d18\",\r\n \"name\": \"68ad16a7-00fd-5363-8f63-2417df9e4d18\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Snapshot (Azure Backup) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/89d79476-b00c-d9f7-9653-b7443bec5783\",\r\n \"name\": \"89d79476-b00c-d9f7-9653-b7443bec5783\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Update Management extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/12432aed-b1ee-f642-126d-050c60ae6270\",\r\n \"name\": \"12432aed-b1ee-f642-126d-050c60ae6270\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / GPU Driver extension issue (NVIDIA)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/5035f994-5e58-1ea3-7b76-0a6e95f9136b\",\r\n \"name\": \"5035f994-5e58-1ea3-7b76-0a6e95f9136b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Network Watcher agent extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/1ec1197c-eecf-bef0-1fc0-1249869dfcfe\",\r\n \"name\": \"1ec1197c-eecf-bef0-1fc0-1249869dfcfe\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Monitoring agent (MMA) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/cfad9d0c-f389-5da6-9829-4a503c3fd5a0\",\r\n \"name\": \"cfad9d0c-f389-5da6-9829-4a503c3fd5a0\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Access (enablevmaccess) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/0112f5eb-f389-9828-6182-791f5fefffd6\",\r\n \"name\": \"0112f5eb-f389-9828-6182-791f5fefffd6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Guest Agent issue (crash, hung, not upgrading, or not connecting)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/a140b8b4-ce18-2c47-552e-285b76412925\",\r\n \"name\": \"a140b8b4-ce18-2c47-552e-285b76412925\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Custom Script (CSE) extension using Managed Identity issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/2b21d941-3980-2922-37e5-50e2bda90e06\",\r\n \"name\": \"2b21d941-3980-2922-37e5-50e2bda90e06\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Active Directory Login extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/bdf775ae-57c6-c1ee-d5a0-d2234578e8e5\",\r\n \"name\": \"bdf775ae-57c6-c1ee-d5a0-d2234578e8e5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / GPU Driver extension issue (AMD)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/e5de7aa7-83e1-dde5-6cfc-b03ef6b2230b\",\r\n \"name\": \"e5de7aa7-83e1-dde5-6cfc-b03ef6b2230b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My encryption has failed due to a pre-req failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/28a64cc6-768e-8d34-8ffb-bcf92b9aac2b\",\r\n \"name\": \"28a64cc6-768e-8d34-8ffb-bcf92b9aac2b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is due to unsupported image or operating system\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/d1d782ce-c148-0b02-1b7e-613982a81b6f\",\r\n \"name\": \"d1d782ce-c148-0b02-1b7e-613982a81b6f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My VM is not booting after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/332d4f59-f432-22dc-a707-8eea07dae815\",\r\n \"name\": \"332d4f59-f432-22dc-a707-8eea07dae815\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My VM is not reachable after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/579dad75-1207-15f2-437b-554be0677f6c\",\r\n \"name\": \"579dad75-1207-15f2-437b-554be0677f6c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My data drive or file system is not available after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/ba33538e-99e4-feb5-9324-56f08c691488\",\r\n \"name\": \"ba33538e-99e4-feb5-9324-56f08c691488\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / I need guidance with Azure Key Vault configuration, permissions, or keys\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/00ada183-92de-7636-1dc9-a381d2ec3482\",\r\n \"name\": \"00ada183-92de-7636-1dc9-a381d2ec3482\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / Current status of encryption is incorrect for my VM (Portal, CLI, PS)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/28e8162f-466c-fed0-33b5-92497e1ff43f\",\r\n \"name\": \"28e8162f-466c-fed0-33b5-92497e1ff43f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue with decrypting a virtual disk\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/b1684871-79ff-906c-593e-c46828c8be59\",\r\n \"name\": \"b1684871-79ff-906c-593e-c46828c8be59\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is with troubleshooting an encrypted VM (unlocking)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/56faf779-660e-7299-b9b0-f59377212e72\",\r\n \"name\": \"56faf779-660e-7299-b9b0-f59377212e72\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My encryption is not working as expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/a54d7e07-d333-9ec1-067b-7678c364aeb9\",\r\n \"name\": \"a54d7e07-d333-9ec1-067b-7678c364aeb9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/92305b37-6aa6-2f6a-ca9a-a3a705331241\",\r\n \"name\": \"92305b37-6aa6-2f6a-ca9a-a3a705331241\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I am having issues configuring or enabling backup\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/2e951b97-94cc-9b0b-e45f-5a88be9e89bc\",\r\n \"name\": \"2e951b97-94cc-9b0b-e45f-5a88be9e89bc\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Backup is failing for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/e7550efb-4cb4-efa2-af55-d16d0e0ebb37\",\r\n \"name\": \"e7550efb-4cb4-efa2-af55-d16d0e0ebb37\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Restore is failing for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/201fa48b-6c7c-c457-0d24-f345b58b3656\",\r\n \"name\": \"201fa48b-6c7c-c457-0d24-f345b58b3656\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Backup is taking longer than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/b573687c-0dfb-3f88-798a-f5d67c25730e\",\r\n \"name\": \"b573687c-0dfb-3f88-798a-f5d67c25730e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Restore is taking longer than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/6651a324-4084-f40c-9e98-8f260bd9ebd4\",\r\n \"name\": \"6651a324-4084-f40c-9e98-8f260bd9ebd4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I need guidance configuring backup for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/87d457bf-b2eb-4fc3-2642-af3125aa9944\",\r\n \"name\": \"87d457bf-b2eb-4fc3-2642-af3125aa9944\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I need guidance with restoring my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/e47cd566-4479-1320-562b-6adfc9f5107f\",\r\n \"name\": \"e47cd566-4479-1320-562b-6adfc9f5107f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / My issue is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/02db5ac6-64f6-5726-38b9-ee25df375c8c\",\r\n \"name\": \"02db5ac6-64f6-5726-38b9-ee25df375c8c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Guest OS - Kernel upgrade issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/217363f7-35d7-509c-cc75-2bdbcfd7727d\",\r\n \"name\": \"217363f7-35d7-509c-cc75-2bdbcfd7727d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Create a Linux failover cluster\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/4a471613-aba0-b69b-69f0-7e17d02113ac\",\r\n \"name\": \"4a471613-aba0-b69b-69f0-7e17d02113ac\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to delete a virtual machine\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/6822c17d-7e83-6d34-c015-b9d8345cbcd3\",\r\n \"name\": \"6822c17d-7e83-6d34-c015-b9d8345cbcd3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to delete a Resource Group\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/043edeb8-5980-8afd-be23-5dc892629076\",\r\n \"name\": \"043edeb8-5980-8afd-be23-5dc892629076\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Instance Metadata Service\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/f62adf2e-8bd5-c883-7ac4-88bb80f24cb6\",\r\n \"name\": \"f62adf2e-8bd5-c883-7ac4-88bb80f24cb6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage or use a Linux cluster in Azure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/3aa8f1cd-033b-c07e-430c-dbb88e33a43b\",\r\n \"name\": \"3aa8f1cd-033b-c07e-430c-dbb88e33a43b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Azure Metadata Service (Scheduled Events)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/d50047d3-6e34-440f-53f3-f6b9ea151c66\",\r\n \"name\": \"d50047d3-6e34-440f-53f3-f6b9ea151c66\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to share Shared Image Gallery, Image Definition or Image Version\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/68609d66-c773-bbbe-244c-5c5afd643527\",\r\n \"name\": \"68609d66-c773-bbbe-244c-5c5afd643527\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage an instance of SQL Server\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/01d83b71-bc02-e38d-facd-43ce9df6da28\",\r\n \"name\": \"01d83b71-bc02-e38d-facd-43ce9df6da28\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Guidance regarding retirement of Classic IAAS resources (ASM)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/9c6961c0-cf3e-9dbe-9bcb-9c1a102fce38\",\r\n \"name\": \"9c6961c0-cf3e-9dbe-9bcb-9c1a102fce38\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate IAAS resources from Classic (ASM) to Azure Resource Manager (ARM)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/6cf12b71-dffe-2150-1feb-16109ff143e5\",\r\n \"name\": \"6cf12b71-dffe-2150-1feb-16109ff143e5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Managed disks migration\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/7d1b4fe9-d2be-59eb-2d47-523b89bf0efc\",\r\n \"name\": \"7d1b4fe9-d2be-59eb-2d47-523b89bf0efc\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between storage accounts\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/24d6e747-a5fd-f15d-6a69-15e70f5f3604\",\r\n \"name\": \"24d6e747-a5fd-f15d-6a69-15e70f5f3604\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between regions\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/3dc0f91d-4d56-2bf2-65fd-f53912ed0d5a\",\r\n \"name\": \"3dc0f91d-4d56-2bf2-65fd-f53912ed0d5a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between subscriptions\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/42aef628-aeb5-41c8-fc1d-104ddb93f635\",\r\n \"name\": \"42aef628-aeb5-41c8-fc1d-104ddb93f635\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate resources using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/4b2cfaff-ddf5-da90-a64c-db25d5fa17fb\",\r\n \"name\": \"4b2cfaff-ddf5-da90-a64c-db25d5fa17fb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate virtual machines from on-premises to Azure using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/6784b50a-f959-bd77-67b2-7c72852f2677\",\r\n \"name\": \"6784b50a-f959-bd77-67b2-7c72852f2677\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate virtual machines from third-party provider to Azure using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/adec6fc5-555f-b291-8377-5963d2201ebb\",\r\n \"name\": \"adec6fc5-555f-b291-8377-5963d2201ebb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between resource groups\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/354db935-a238-4f24-19e4-402bcd1f7f7a\",\r\n \"name\": \"354db935-a238-4f24-19e4-402bcd1f7f7a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Planned Maintenance (Azure Platform)\"\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/13086017-942d-eef0-6753-4110d1f81f6d\",\r\n \"name\": \"13086017-942d-eef0-6753-4110d1f81f6d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Compute-VM (cores-vCPUs) subscription limit increases\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/97d59e9a-44c7-75a7-3dea-576703508865\",\r\n \"name\": \"97d59e9a-44c7-75a7-3dea-576703508865\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / My configuration change impacted connectivity\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/95c99bc2-2b70-d1bc-e401-dfe25698a4a6\",\r\n \"name\": \"95c99bc2-2b70-d1bc-e401-dfe25698a4a6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Troubleshoot my network security group (NSG)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/f45ecfaa-466e-3411-2666-16543879bf34\",\r\n \"name\": \"f45ecfaa-466e-3411-2666-16543879bf34\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Troubleshoot my VM firewall\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/78c3817c-a9dd-cfe4-6f8f-e0ce3d9afd07\",\r\n \"name\": \"78c3817c-a9dd-cfe4-6f8f-e0ce3d9afd07\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I have an issue with my public IP\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/1b8cc1f2-a9bd-891c-238c-0998bcc41608\",\r\n \"name\": \"1b8cc1f2-a9bd-891c-238c-0998bcc41608\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I need to reset my password\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/5d3532ae-9392-ff02-de86-69ed8b293a41\",\r\n \"name\": \"5d3532ae-9392-ff02-de86-69ed8b293a41\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I need guidance with serial console access\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/9c66fc89-fd32-7b8d-f92a-5b5bb42607a9\",\r\n \"name\": \"9c66fc89-fd32-7b8d-f92a-5b5bb42607a9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Failure to connect using RDP or SSH port\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/4e1ee33c-5ef0-f7b7-0296-62314acdefa5\",\r\n \"name\": \"4e1ee33c-5ef0-f7b7-0296-62314acdefa5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My VM will not start after a configuration change\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/ddf6e1a4-1e77-d436-6455-f0555fb7d5ed\",\r\n \"name\": \"ddf6e1a4-1e77-d436-6455-f0555fb7d5ed\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I received a disk related error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/f485c457-8e19-0c18-9c62-e0a05ab914e3\",\r\n \"name\": \"f485c457-8e19-0c18-9c62-e0a05ab914e3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I received an allocation failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/61b12a2a-12f9-029b-90b2-4735b90bfc14\",\r\n \"name\": \"61b12a2a-12f9-029b-90b2-4735b90bfc14\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My VM is unresponsive to start or stop operations\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/6d3096e7-0b57-8847-e78a-def7801487e5\",\r\n \"name\": \"6d3096e7-0b57-8847-e78a-def7801487e5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I am unable to resize my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/e334629a-173b-975a-f651-c24565b9077d\",\r\n \"name\": \"e334629a-173b-975a-f651-c24565b9077d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My start or stop operation failed\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/c245da0a-ab9c-7ab9-7875-eb896bc5508c\",\r\n \"name\": \"c245da0a-ab9c-7ab9-7875-eb896bc5508c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My VMs OS is not booting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/4ddf7ee3-6980-035e-a734-1e36b94b9be9\",\r\n \"name\": \"4ddf7ee3-6980-035e-a734-1e36b94b9be9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My VMs OS is on a reboot loop\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/3c07823e-c4e1-ae0f-55fb-1e5202e452e4\",\r\n \"name\": \"3c07823e-c4e1-ae0f-55fb-1e5202e452e4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / I applied updates and my VM will not boot\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/5e3efdeb-4546-595b-0a16-5ca5eebe25c1\",\r\n \"name\": \"5e3efdeb-4546-595b-0a16-5ca5eebe25c1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / I received a failure when starting my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/10e2260f-0f1f-10fb-6093-bd6b97ee5fac\",\r\n \"name\": \"10e2260f-0f1f-10fb-6093-bd6b97ee5fac\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My problem is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/ddf63090-bce8-efbd-717e-7bc80a6f0ece\",\r\n \"name\": \"ddf63090-bce8-efbd-717e-7bc80a6f0ece\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I need guidance preparing an image\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/d3596c4a-696f-badc-5668-83e20de96c56\",\r\n \"name\": \"d3596c4a-696f-badc-5668-83e20de96c56\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I need guidance deploying with managed disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/57acac79-ef86-d322-1074-e87c017f92b1\",\r\n \"name\": \"57acac79-ef86-d322-1074-e87c017f92b1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot custom image deployment failures\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/e8484403-dea9-baed-e6a1-9116836e8b8e\",\r\n \"name\": \"e8484403-dea9-baed-e6a1-9116836e8b8e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot marketplace image deployment failures\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/51881b97-a6b8-e9f8-a0ce-34f1b33a2e3e\",\r\n \"name\": \"51881b97-a6b8-e9f8-a0ce-34f1b33a2e3e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / My desired region or VM size is unavailable\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/b3a44c43-b1d8-0c8e-30f8-ee932130629e\",\r\n \"name\": \"b3a44c43-b1d8-0c8e-30f8-ee932130629e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I received an allocation failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/9d901692-a4dc-403b-ef14-840cdad12f33\",\r\n \"name\": \"9d901692-a4dc-403b-ef14-840cdad12f33\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I am unable to deploy a captured or generalized image\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/ef54b615-48b4-8033-f681-8dcd5c9d1f9a\",\r\n \"name\": \"ef54b615-48b4-8033-f681-8dcd5c9d1f9a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot my ARM template error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/5c859f46-dd53-03b2-498f-b4225febf829\",\r\n \"name\": \"5c859f46-dd53-03b2-498f-b4225febf829\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I received a provisioning or deployment timeout error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/264b845c-6ac7-d69c-9d32-88cf9c210156\",\r\n \"name\": \"264b845c-6ac7-d69c-9d32-88cf9c210156\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / My guest OS is causing restarts\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/a9ef9e6c-84ba-5de7-0d83-eaed1d584c1b\",\r\n \"name\": \"a9ef9e6c-84ba-5de7-0d83-eaed1d584c1b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Request Root Cause Statement for recent availability impact\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/79c19cdf-bf2f-3f25-c74b-7f106b9ba3dc\",\r\n \"name\": \"79c19cdf-bf2f-3f25-c74b-7f106b9ba3dc\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Help diagnose my VM restart issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/5d42bdf0-0398-274d-cbd9-eb264391fce1\",\r\n \"name\": \"5d42bdf0-0398-274d-cbd9-eb264391fce1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Disk throughput is lower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/d42513af-f30a-5af5-c61e-84291d954f5e\",\r\n \"name\": \"d42513af-f30a-5af5-c61e-84291d954f5e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / CPU usage is higher than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/277537fc-0cb4-ca80-6e6e-b771fb5a9728\",\r\n \"name\": \"277537fc-0cb4-ca80-6e6e-b771fb5a9728\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Memory usage is higher than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/6820c41d-5001-a492-ed6d-e7447a342824\",\r\n \"name\": \"6820c41d-5001-a492-ed6d-e7447a342824\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / GPU processing is slower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/edd956dc-8fac-8362-9e6e-e2e2c950de7e\",\r\n \"name\": \"edd956dc-8fac-8362-9e6e-e2e2c950de7e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Guidance for better VM sizing and throughput\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/c13e9c1e-152a-d58b-9351-ce1373694294\",\r\n \"name\": \"c13e9c1e-152a-d58b-9351-ce1373694294\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Unable to resize my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/2711f5d6-3ed3-b9c5-4542-2ca277ccf4a4\",\r\n \"name\": \"2711f5d6-3ed3-b9c5-4542-2ca277ccf4a4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Resizing a virtual disk\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/17899864-d403-8b54-02a5-26940eab58b5\",\r\n \"name\": \"17899864-d403-8b54-02a5-26940eab58b5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Attaching or detaching virtual disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/25f82959-8825-930a-8775-b2da8035854a\",\r\n \"name\": \"25f82959-8825-930a-8775-b2da8035854a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Creating or deleting virtual disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/0d045849-a219-fab3-3bcd-75654a2bfd99\",\r\n \"name\": \"0d045849-a219-fab3-3bcd-75654a2bfd99\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Disk throughput is lower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/2f8277dc-de9b-63fd-114f-48f03a8c46f4\",\r\n \"name\": \"2f8277dc-de9b-63fd-114f-48f03a8c46f4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Restore a VM from snapshot\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/cde25e58-a8fd-416e-e7b4-835d90be0ce1\",\r\n \"name\": \"cde25e58-a8fd-416e-e7b4-835d90be0ce1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Issues with Direct Upload for Managed Disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/39901314-e711-2c3d-d592-4617ea775041\",\r\n \"name\": \"39901314-e711-2c3d-d592-4617ea775041\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / My problem is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/3cbef9ba-ff30-70bc-14c8-e4f3cf3cc9b8\",\r\n \"name\": \"3cbef9ba-ff30-70bc-14c8-e4f3cf3cc9b8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Diagnostic (boot diagnostics) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/18f75bf4-965a-819e-024c-82436865e58c\",\r\n \"name\": \"18f75bf4-965a-819e-024c-82436865e58c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Custom Script (CSE) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/d835cec0-eef7-d190-81e3-e960c6129a93\",\r\n \"name\": \"d835cec0-eef7-d190-81e3-e960c6129a93\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Log Analytics (OMS) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/922d9343-4f89-012f-6c92-d13f1b747a0d\",\r\n \"name\": \"922d9343-4f89-012f-6c92-d13f1b747a0d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Desired State Configuration (DSC) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/cd8fe49c-5364-5018-8fb3-91833303b95b\",\r\n \"name\": \"cd8fe49c-5364-5018-8fb3-91833303b95b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Microsoft Antimalware (security) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/a1244cae-1bb0-3bc5-423f-e6d4effedd7b\",\r\n \"name\": \"a1244cae-1bb0-3bc5-423f-e6d4effedd7b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Disk Encryption (ADE) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/68ad16a7-00fd-5363-8f63-2417df9e4d18\",\r\n \"name\": \"68ad16a7-00fd-5363-8f63-2417df9e4d18\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Snapshot (Azure Backup) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/89d79476-b00c-d9f7-9653-b7443bec5783\",\r\n \"name\": \"89d79476-b00c-d9f7-9653-b7443bec5783\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Update Management extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/12432aed-b1ee-f642-126d-050c60ae6270\",\r\n \"name\": \"12432aed-b1ee-f642-126d-050c60ae6270\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / GPU Driver extension issue (NVIDIA)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/5035f994-5e58-1ea3-7b76-0a6e95f9136b\",\r\n \"name\": \"5035f994-5e58-1ea3-7b76-0a6e95f9136b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Network Watcher agent extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/1ec1197c-eecf-bef0-1fc0-1249869dfcfe\",\r\n \"name\": \"1ec1197c-eecf-bef0-1fc0-1249869dfcfe\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Monitoring agent (MMA) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/cfad9d0c-f389-5da6-9829-4a503c3fd5a0\",\r\n \"name\": \"cfad9d0c-f389-5da6-9829-4a503c3fd5a0\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Access (enablevmaccess) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/0112f5eb-f389-9828-6182-791f5fefffd6\",\r\n \"name\": \"0112f5eb-f389-9828-6182-791f5fefffd6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Guest Agent issue (crash, hung, not upgrading, or not connecting)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/2b21d941-3980-2922-37e5-50e2bda90e06\",\r\n \"name\": \"2b21d941-3980-2922-37e5-50e2bda90e06\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Active Directory Login extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/bdf775ae-57c6-c1ee-d5a0-d2234578e8e5\",\r\n \"name\": \"bdf775ae-57c6-c1ee-d5a0-d2234578e8e5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / GPU Driver extension issue (AMD)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/e5de7aa7-83e1-dde5-6cfc-b03ef6b2230b\",\r\n \"name\": \"e5de7aa7-83e1-dde5-6cfc-b03ef6b2230b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My encryption has failed due to a pre-req failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/28a64cc6-768e-8d34-8ffb-bcf92b9aac2b\",\r\n \"name\": \"28a64cc6-768e-8d34-8ffb-bcf92b9aac2b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is due to unsupported image or operating system\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/d1d782ce-c148-0b02-1b7e-613982a81b6f\",\r\n \"name\": \"d1d782ce-c148-0b02-1b7e-613982a81b6f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My VM is not booting after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/332d4f59-f432-22dc-a707-8eea07dae815\",\r\n \"name\": \"332d4f59-f432-22dc-a707-8eea07dae815\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My VM is not reachable after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/579dad75-1207-15f2-437b-554be0677f6c\",\r\n \"name\": \"579dad75-1207-15f2-437b-554be0677f6c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My data drive or file system is not available after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/ba33538e-99e4-feb5-9324-56f08c691488\",\r\n \"name\": \"ba33538e-99e4-feb5-9324-56f08c691488\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / I need guidance with Azure Key Vault configuration, permissions, or keys\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/00ada183-92de-7636-1dc9-a381d2ec3482\",\r\n \"name\": \"00ada183-92de-7636-1dc9-a381d2ec3482\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / Current status of encryption is incorrect for my VM (Portal, CLI, PS)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/28e8162f-466c-fed0-33b5-92497e1ff43f\",\r\n \"name\": \"28e8162f-466c-fed0-33b5-92497e1ff43f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue with decrypting a virtual disk\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/b1684871-79ff-906c-593e-c46828c8be59\",\r\n \"name\": \"b1684871-79ff-906c-593e-c46828c8be59\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is with troubleshooting an encrypted VM (unlocking)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/56faf779-660e-7299-b9b0-f59377212e72\",\r\n \"name\": \"56faf779-660e-7299-b9b0-f59377212e72\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My encryption is not working as expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/a54d7e07-d333-9ec1-067b-7678c364aeb9\",\r\n \"name\": \"a54d7e07-d333-9ec1-067b-7678c364aeb9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/92305b37-6aa6-2f6a-ca9a-a3a705331241\",\r\n \"name\": \"92305b37-6aa6-2f6a-ca9a-a3a705331241\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I am having issues configuring or enabling backup\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/2e951b97-94cc-9b0b-e45f-5a88be9e89bc\",\r\n \"name\": \"2e951b97-94cc-9b0b-e45f-5a88be9e89bc\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Backup is failing for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/e7550efb-4cb4-efa2-af55-d16d0e0ebb37\",\r\n \"name\": \"e7550efb-4cb4-efa2-af55-d16d0e0ebb37\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Restore is failing for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/201fa48b-6c7c-c457-0d24-f345b58b3656\",\r\n \"name\": \"201fa48b-6c7c-c457-0d24-f345b58b3656\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Backup is taking longer than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/b573687c-0dfb-3f88-798a-f5d67c25730e\",\r\n \"name\": \"b573687c-0dfb-3f88-798a-f5d67c25730e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Restore is taking longer than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/6651a324-4084-f40c-9e98-8f260bd9ebd4\",\r\n \"name\": \"6651a324-4084-f40c-9e98-8f260bd9ebd4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I need guidance configuring backup for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/87d457bf-b2eb-4fc3-2642-af3125aa9944\",\r\n \"name\": \"87d457bf-b2eb-4fc3-2642-af3125aa9944\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I need guidance with restoring my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/e47cd566-4479-1320-562b-6adfc9f5107f\",\r\n \"name\": \"e47cd566-4479-1320-562b-6adfc9f5107f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / My issue is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/02db5ac6-64f6-5726-38b9-ee25df375c8c\",\r\n \"name\": \"02db5ac6-64f6-5726-38b9-ee25df375c8c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Guest OS - Kernel upgrade issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/217363f7-35d7-509c-cc75-2bdbcfd7727d\",\r\n \"name\": \"217363f7-35d7-509c-cc75-2bdbcfd7727d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Create a Linux failover cluster\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/4a471613-aba0-b69b-69f0-7e17d02113ac\",\r\n \"name\": \"4a471613-aba0-b69b-69f0-7e17d02113ac\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to delete a virtual machine\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/6822c17d-7e83-6d34-c015-b9d8345cbcd3\",\r\n \"name\": \"6822c17d-7e83-6d34-c015-b9d8345cbcd3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to delete a Resource Group\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/043edeb8-5980-8afd-be23-5dc892629076\",\r\n \"name\": \"043edeb8-5980-8afd-be23-5dc892629076\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Instance Metadata Service\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/f62adf2e-8bd5-c883-7ac4-88bb80f24cb6\",\r\n \"name\": \"f62adf2e-8bd5-c883-7ac4-88bb80f24cb6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage or use a Linux cluster in Azure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/3aa8f1cd-033b-c07e-430c-dbb88e33a43b\",\r\n \"name\": \"3aa8f1cd-033b-c07e-430c-dbb88e33a43b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Azure Metadata Service (Scheduled Events)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/d50047d3-6e34-440f-53f3-f6b9ea151c66\",\r\n \"name\": \"d50047d3-6e34-440f-53f3-f6b9ea151c66\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to share Shared Image Gallery, Image Definition or Image Version\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/68609d66-c773-bbbe-244c-5c5afd643527\",\r\n \"name\": \"68609d66-c773-bbbe-244c-5c5afd643527\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage an instance of SQL Server\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/01d83b71-bc02-e38d-facd-43ce9df6da28\",\r\n \"name\": \"01d83b71-bc02-e38d-facd-43ce9df6da28\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Guidance regarding retirement of Classic IAAS resources (ASM)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/9c6961c0-cf3e-9dbe-9bcb-9c1a102fce38\",\r\n \"name\": \"9c6961c0-cf3e-9dbe-9bcb-9c1a102fce38\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate IAAS resources from Classic (ASM) to Azure Resource Manager (ARM)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/6cf12b71-dffe-2150-1feb-16109ff143e5\",\r\n \"name\": \"6cf12b71-dffe-2150-1feb-16109ff143e5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Managed disks migration\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/7d1b4fe9-d2be-59eb-2d47-523b89bf0efc\",\r\n \"name\": \"7d1b4fe9-d2be-59eb-2d47-523b89bf0efc\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between storage accounts\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/24d6e747-a5fd-f15d-6a69-15e70f5f3604\",\r\n \"name\": \"24d6e747-a5fd-f15d-6a69-15e70f5f3604\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between regions\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/3dc0f91d-4d56-2bf2-65fd-f53912ed0d5a\",\r\n \"name\": \"3dc0f91d-4d56-2bf2-65fd-f53912ed0d5a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between subscriptions\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/42aef628-aeb5-41c8-fc1d-104ddb93f635\",\r\n \"name\": \"42aef628-aeb5-41c8-fc1d-104ddb93f635\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate resources using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/4b2cfaff-ddf5-da90-a64c-db25d5fa17fb\",\r\n \"name\": \"4b2cfaff-ddf5-da90-a64c-db25d5fa17fb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate virtual machines from on-premises to Azure using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/6784b50a-f959-bd77-67b2-7c72852f2677\",\r\n \"name\": \"6784b50a-f959-bd77-67b2-7c72852f2677\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate virtual machines from third-party provider to Azure using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/adec6fc5-555f-b291-8377-5963d2201ebb\",\r\n \"name\": \"adec6fc5-555f-b291-8377-5963d2201ebb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between resource groups\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/98e5cec8-2650-28c1-92e8-0ecaa232eec0/problemClassifications/354db935-a238-4f24-19e4-402bcd1f7f7a\",\r\n \"name\": \"354db935-a238-4f24-19e4-402bcd1f7f7a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Planned Maintenance (Azure Platform)\"\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
@@ -445,13 +445,13 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d35e29c6-6fc0-4566-993d-4d4ff559db61"
+ "2ee33b93-d589-425b-9a3b-fd4080cba898"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.28516.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Support.MicrosoftSupportClient/1.0.0.0"
@@ -465,7 +465,10 @@
"no-cache"
],
"x-ms-ratelimit-remaining-tenant-reads": [
- "11914"
+ "11992"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -474,22 +477,19 @@
"Kestrel"
],
"x-ms-request-id": [
- "7e6ee9c2-ee61-4c04-aa80-6209ed47c970"
+ "1b1492c0-2831-4b0e-9ef3-fa802fb9e227"
],
"x-ms-correlation-request-id": [
- "7e6ee9c2-ee61-4c04-aa80-6209ed47c970"
+ "1b1492c0-2831-4b0e-9ef3-fa802fb9e227"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200315T071144Z:7e6ee9c2-ee61-4c04-aa80-6209ed47c970"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "CENTRALUSEUAP:20200327T043554Z:1b1492c0-2831-4b0e-9ef3-fa802fb9e227"
],
"Date": [
- "Sun, 15 Mar 2020 07:11:44 GMT"
+ "Fri, 27 Mar 2020 04:35:54 GMT"
],
"Content-Length": [
- "33975"
+ "33597"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -498,7 +498,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/d5030ad5-c2ba-a59a-54e5-e5607ae4fde2\",\r\n \"name\": \"d5030ad5-c2ba-a59a-54e5-e5607ae4fde2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Compute-VM (cores-vCPUs) subscription limit increases\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/ac307d36-18c9-b8cc-d145-b102384dc4c0\",\r\n \"name\": \"ac307d36-18c9-b8cc-d145-b102384dc4c0\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / My configuration change impacted connectivity\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/1b441472-cecd-5cda-9f77-8974f00e62a8\",\r\n \"name\": \"1b441472-cecd-5cda-9f77-8974f00e62a8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Troubleshoot my network security group (NSG)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/de268ec1-793d-0126-aa5c-8c952c97376c\",\r\n \"name\": \"de268ec1-793d-0126-aa5c-8c952c97376c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Troubleshoot my VM firewall\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/1b05f460-d040-f1cf-b349-56ee2f36b9af\",\r\n \"name\": \"1b05f460-d040-f1cf-b349-56ee2f36b9af\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I have an issue with my public IP\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/e8ef2ae9-4587-a94f-d748-2adafde2bf90\",\r\n \"name\": \"e8ef2ae9-4587-a94f-d748-2adafde2bf90\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I need to reset my password\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/5707e3b0-64c3-a9d9-4627-40f431914ab6\",\r\n \"name\": \"5707e3b0-64c3-a9d9-4627-40f431914ab6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I need guidance with serial console access\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/110155da-a163-a9e6-b1e6-2b8eac7fe20a\",\r\n \"name\": \"110155da-a163-a9e6-b1e6-2b8eac7fe20a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Failure to connect using RDP or SSH port\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/49193c4c-fbe3-73d1-924b-ea6c19a47f71\",\r\n \"name\": \"49193c4c-fbe3-73d1-924b-ea6c19a47f71\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My VM will not start after a configuration change\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/38286807-07fd-298d-ed5a-bf439fc95469\",\r\n \"name\": \"38286807-07fd-298d-ed5a-bf439fc95469\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I received a disk related error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/83e1375a-da5a-a994-e3da-058919aa7915\",\r\n \"name\": \"83e1375a-da5a-a994-e3da-058919aa7915\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I received an allocation failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/dae99494-d210-0639-fbf6-f4f0d35d70f2\",\r\n \"name\": \"dae99494-d210-0639-fbf6-f4f0d35d70f2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My VM is unresponsive to start or stop operations\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/2ad6b724-3c03-a266-2f93-52fc548acfd0\",\r\n \"name\": \"2ad6b724-3c03-a266-2f93-52fc548acfd0\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I am unable to resize my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/ccb68d2c-7f32-fbf3-6695-634cf1555e9c\",\r\n \"name\": \"ccb68d2c-7f32-fbf3-6695-634cf1555e9c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My start or stop operation failed\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/0f64bdfe-d980-bc15-721c-f3f14aa6f676\",\r\n \"name\": \"0f64bdfe-d980-bc15-721c-f3f14aa6f676\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My VMs OS is not booting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/4954fc8f-7b95-05ec-0640-b8f4b2937ad4\",\r\n \"name\": \"4954fc8f-7b95-05ec-0640-b8f4b2937ad4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My VMs OS is on a reboot loop\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/262eda34-248e-7871-741a-2d3708b0a862\",\r\n \"name\": \"262eda34-248e-7871-741a-2d3708b0a862\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / I applied updates and my VM will not boot\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/74ab9252-4eca-3c44-2252-c249bd0680fc\",\r\n \"name\": \"74ab9252-4eca-3c44-2252-c249bd0680fc\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / I received a failure when starting my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/618a1ecc-4862-9199-15d7-60a75b877247\",\r\n \"name\": \"618a1ecc-4862-9199-15d7-60a75b877247\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My problem is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/40026a20-2731-f229-11ed-b21d0a1b24e4\",\r\n \"name\": \"40026a20-2731-f229-11ed-b21d0a1b24e4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I need guidance preparing an image\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/4e6670a8-c278-f46b-1e33-94baf60799d7\",\r\n \"name\": \"4e6670a8-c278-f46b-1e33-94baf60799d7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I need guidance deploying with managed disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/15e2a142-b549-3a4d-1c7f-fa06b2c30288\",\r\n \"name\": \"15e2a142-b549-3a4d-1c7f-fa06b2c30288\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot custom image deployment failures\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/373a7125-6659-4b1c-112f-04323d0f6b56\",\r\n \"name\": \"373a7125-6659-4b1c-112f-04323d0f6b56\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot marketplace image deployment failures\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/3417413e-b21d-81e0-fe59-5ba2dcadf1fc\",\r\n \"name\": \"3417413e-b21d-81e0-fe59-5ba2dcadf1fc\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / My desired region or VM size is unavailable\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/d721f296-ee1b-6e50-6a52-62e4efac397d\",\r\n \"name\": \"d721f296-ee1b-6e50-6a52-62e4efac397d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I received an allocation failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/fd5f51c0-fbf5-45b7-c4df-38963e01227e\",\r\n \"name\": \"fd5f51c0-fbf5-45b7-c4df-38963e01227e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I am unable to deploy a captured or generalized image\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/817d8766-1585-a77c-9e03-79bc1fdafac5\",\r\n \"name\": \"817d8766-1585-a77c-9e03-79bc1fdafac5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot my ARM template error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/86087426-3ba7-5ab1-3b4c-b01daa55d565\",\r\n \"name\": \"86087426-3ba7-5ab1-3b4c-b01daa55d565\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I received a provisioning or deployment timeout error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/c3f56921-13fa-86b2-9b13-f74d841f215e\",\r\n \"name\": \"c3f56921-13fa-86b2-9b13-f74d841f215e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / My guest OS is causing restarts\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/26796b2b-edd6-b712-bc01-089f767a7d04\",\r\n \"name\": \"26796b2b-edd6-b712-bc01-089f767a7d04\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Request Root Cause Statement for recent availability impact\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/e71ae4c9-30c0-d993-a76c-934bab1f649b\",\r\n \"name\": \"e71ae4c9-30c0-d993-a76c-934bab1f649b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Help diagnose my VM restart issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/6d316553-632c-0fae-43d9-39b79e79fd8c\",\r\n \"name\": \"6d316553-632c-0fae-43d9-39b79e79fd8c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Disk throughput is lower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/d654798a-82f2-7476-b630-e5f7bf7fd40b\",\r\n \"name\": \"d654798a-82f2-7476-b630-e5f7bf7fd40b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / CPU usage is higher than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/f53629c8-a89b-8562-aace-f88feda170de\",\r\n \"name\": \"f53629c8-a89b-8562-aace-f88feda170de\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Memory usage is higher than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/8ab1180f-8bcb-ca42-a187-78c6491906a9\",\r\n \"name\": \"8ab1180f-8bcb-ca42-a187-78c6491906a9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / GPU processing is slower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/d39202e3-821c-27e4-6118-99b92d2940ba\",\r\n \"name\": \"d39202e3-821c-27e4-6118-99b92d2940ba\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Guidance for better VM sizing and throughput\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/db65e686-be0a-c951-b3e6-d5439c070fbc\",\r\n \"name\": \"db65e686-be0a-c951-b3e6-d5439c070fbc\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Unable to resize my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/338cbcc3-61b2-e337-dff8-c9c548dc80a8\",\r\n \"name\": \"338cbcc3-61b2-e337-dff8-c9c548dc80a8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Resizing a virtual disk\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/1156a3cf-fb92-3be8-8186-e6b597ce264c\",\r\n \"name\": \"1156a3cf-fb92-3be8-8186-e6b597ce264c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Attaching or detaching virtual disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/e8df87f3-14df-0f21-01a4-1f1e8838e965\",\r\n \"name\": \"e8df87f3-14df-0f21-01a4-1f1e8838e965\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Creating or deleting virtual disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/fecb015e-fce8-8325-9523-f56724b12199\",\r\n \"name\": \"fecb015e-fce8-8325-9523-f56724b12199\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Disk throughput is lower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/2db8a63f-5c87-3a9c-05d1-4bd38de434b9\",\r\n \"name\": \"2db8a63f-5c87-3a9c-05d1-4bd38de434b9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Restore a VM from snapshot\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/2b6f1732-802e-e708-2acc-e742ce037551\",\r\n \"name\": \"2b6f1732-802e-e708-2acc-e742ce037551\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Issues with Direct Upload for Managed Disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/29def612-a141-28cc-322f-18c75d9cbd0a\",\r\n \"name\": \"29def612-a141-28cc-322f-18c75d9cbd0a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / My problem is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/6011efba-4f6d-bd89-18f7-3e08f0ddd0f1\",\r\n \"name\": \"6011efba-4f6d-bd89-18f7-3e08f0ddd0f1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Diagnostic (boot diagnostics) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/03102534-9449-c672-84e9-208f85b550f5\",\r\n \"name\": \"03102534-9449-c672-84e9-208f85b550f5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Custom Script (CSE) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/2e39fe73-7959-a231-0d2b-4cb83ca67014\",\r\n \"name\": \"2e39fe73-7959-a231-0d2b-4cb83ca67014\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Log Analytics (OMS) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/550cbba4-3c0a-fce9-2500-f22d56ad75ad\",\r\n \"name\": \"550cbba4-3c0a-fce9-2500-f22d56ad75ad\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Desired State Configuration (DSC) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/e8ea8e26-ad33-d009-f57f-c5890c7462bf\",\r\n \"name\": \"e8ea8e26-ad33-d009-f57f-c5890c7462bf\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Microsoft Antimalware (security) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/1ab6bc16-09dc-96c3-abf2-3d8a386141c9\",\r\n \"name\": \"1ab6bc16-09dc-96c3-abf2-3d8a386141c9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Disk Encryption (ADE) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/9577ce3d-476e-2e38-74a2-ba0fcae1ca2c\",\r\n \"name\": \"9577ce3d-476e-2e38-74a2-ba0fcae1ca2c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Snapshot (Azure Backup) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/901d82ca-7978-461a-78c0-1a7fdd7c4131\",\r\n \"name\": \"901d82ca-7978-461a-78c0-1a7fdd7c4131\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Update Management extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/250bb464-4dc2-e31a-dacb-162b281aa00d\",\r\n \"name\": \"250bb464-4dc2-e31a-dacb-162b281aa00d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / GPU Driver extension issue (NVIDIA)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/e13229fd-6711-02d2-9da1-6b105fcec85a\",\r\n \"name\": \"e13229fd-6711-02d2-9da1-6b105fcec85a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Network Watcher agent extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/94a44633-6aed-7cd4-619f-4b7fa83da103\",\r\n \"name\": \"94a44633-6aed-7cd4-619f-4b7fa83da103\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Monitoring agent (MMA) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/d374c313-bbbc-a9c6-950e-bb6fb14148df\",\r\n \"name\": \"d374c313-bbbc-a9c6-950e-bb6fb14148df\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Access (enablevmaccess) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/0aab3168-ff94-fa06-b1e3-ede7205ec4bd\",\r\n \"name\": \"0aab3168-ff94-fa06-b1e3-ede7205ec4bd\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Guest Agent issue (crash, hung, not upgrading, or not connecting)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/d18abef1-6172-746b-f874-673528811612\",\r\n \"name\": \"d18abef1-6172-746b-f874-673528811612\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Custom Script (CSE) extension using Managed Identity issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/6aa6126b-1361-7924-7d0c-6241de164f6b\",\r\n \"name\": \"6aa6126b-1361-7924-7d0c-6241de164f6b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Active Directory Login extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/efb16c6d-5659-ffab-c0f7-f6cc6fa41730\",\r\n \"name\": \"efb16c6d-5659-ffab-c0f7-f6cc6fa41730\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / GPU Driver extension issue (AMD)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/d5373907-0aa4-83a7-c7fc-6c5e654d7ad6\",\r\n \"name\": \"d5373907-0aa4-83a7-c7fc-6c5e654d7ad6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My encryption has failed due to a pre-req failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/0071a11f-eb88-bd15-6675-9913559675a7\",\r\n \"name\": \"0071a11f-eb88-bd15-6675-9913559675a7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is due to unsupported image or operating system\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/7e27656f-7cc1-bd1e-7751-6ac910e18729\",\r\n \"name\": \"7e27656f-7cc1-bd1e-7751-6ac910e18729\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My VM is not booting after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/1b758073-168b-a012-65eb-e353be5c200a\",\r\n \"name\": \"1b758073-168b-a012-65eb-e353be5c200a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My VM is not reachable after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/257e2d5f-8e3a-7be1-677e-91e6d7b79c23\",\r\n \"name\": \"257e2d5f-8e3a-7be1-677e-91e6d7b79c23\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My data drive or file system is not available after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/491c7631-681d-e6a0-0d4a-78b436fb3231\",\r\n \"name\": \"491c7631-681d-e6a0-0d4a-78b436fb3231\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / I need guidance with Azure Key Vault configuration, permissions, or keys\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/b42c9bbf-3973-e5b9-c941-e0e7224ce34d\",\r\n \"name\": \"b42c9bbf-3973-e5b9-c941-e0e7224ce34d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / Current status of encryption is incorrect for my VM (Portal, CLI, PS)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/2ba1c5be-1a06-0503-9433-42a4b9e56da2\",\r\n \"name\": \"2ba1c5be-1a06-0503-9433-42a4b9e56da2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue with decrypting a virtual disk\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/daa65a91-70b2-0dee-539a-48c0adbb24f2\",\r\n \"name\": \"daa65a91-70b2-0dee-539a-48c0adbb24f2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is with troubleshooting an encrypted VM (unlocking)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/f313fbc1-f751-226e-d42c-b0893b740cde\",\r\n \"name\": \"f313fbc1-f751-226e-d42c-b0893b740cde\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My encryption is not working as expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/bf715ae2-8a3b-1b81-8029-bb8ea7d61563\",\r\n \"name\": \"bf715ae2-8a3b-1b81-8029-bb8ea7d61563\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/7c09ddf9-d5b7-2ab5-123a-3de9419c8cb0\",\r\n \"name\": \"7c09ddf9-d5b7-2ab5-123a-3de9419c8cb0\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I am having issues configuring or enabling backup\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/220d0e31-054c-1ac3-06b5-1fea24872507\",\r\n \"name\": \"220d0e31-054c-1ac3-06b5-1fea24872507\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Backup is failing for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/9fd4fe85-ab1a-ef21-1a42-151c8fcaef2d\",\r\n \"name\": \"9fd4fe85-ab1a-ef21-1a42-151c8fcaef2d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Restore is failing for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/a55789d7-74eb-4b4a-177f-ac47573d8d45\",\r\n \"name\": \"a55789d7-74eb-4b4a-177f-ac47573d8d45\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Backup is taking longer than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/e865b156-078d-473a-ee18-f58e94df74ea\",\r\n \"name\": \"e865b156-078d-473a-ee18-f58e94df74ea\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Restore is taking longer than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/03d53348-afd0-fcbc-0336-9531cba2d0a6\",\r\n \"name\": \"03d53348-afd0-fcbc-0336-9531cba2d0a6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I need guidance configuring backup for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/013711de-2781-6814-f9e2-73b238c54aba\",\r\n \"name\": \"013711de-2781-6814-f9e2-73b238c54aba\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I need guidance with restoring my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/8ced0acd-6c14-6a23-a67b-e14a08ba9637\",\r\n \"name\": \"8ced0acd-6c14-6a23-a67b-e14a08ba9637\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / My issue is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/65dd477f-1967-27c5-6861-9551b37f7fd4\",\r\n \"name\": \"65dd477f-1967-27c5-6861-9551b37f7fd4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Guest OS - Kernel upgrade issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/fe451411-615c-3563-84e7-9c694358f3ab\",\r\n \"name\": \"fe451411-615c-3563-84e7-9c694358f3ab\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Create a Linux failover cluster\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/221c3415-800a-79ac-376f-12facad91e8d\",\r\n \"name\": \"221c3415-800a-79ac-376f-12facad91e8d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to delete a virtual machine\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/7459bcaa-1c0c-7b61-e5f0-47e3d7e20898\",\r\n \"name\": \"7459bcaa-1c0c-7b61-e5f0-47e3d7e20898\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to delete a Resource Group\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/cbf5bd31-8925-92e2-a4ba-54c0f9f7cac2\",\r\n \"name\": \"cbf5bd31-8925-92e2-a4ba-54c0f9f7cac2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Instance Metadata Service\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/936bd15e-2072-f65e-0e61-ea02a53cbe0e\",\r\n \"name\": \"936bd15e-2072-f65e-0e61-ea02a53cbe0e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage or use a Linux cluster in Azure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/ca318b8b-c50b-9330-605c-f4fc781709d9\",\r\n \"name\": \"ca318b8b-c50b-9330-605c-f4fc781709d9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Azure Metadata Service (Scheduled Events)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/9a0c2025-c287-9819-3427-27634fc4a6c8\",\r\n \"name\": \"9a0c2025-c287-9819-3427-27634fc4a6c8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to share Shared Image Gallery, Image Definition or Image Version\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/7fd2cd11-a693-66b0-6ed0-12ad87da7a8c\",\r\n \"name\": \"7fd2cd11-a693-66b0-6ed0-12ad87da7a8c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage an instance of SQL Server\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/9b8be6a3-1dca-0ca9-93bb-d259139a5cd5\",\r\n \"name\": \"9b8be6a3-1dca-0ca9-93bb-d259139a5cd5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Guidance regarding retirement of Classic IAAS resources (ASM)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/801c6bab-2fcf-8250-ca7e-9db0a64b3346\",\r\n \"name\": \"801c6bab-2fcf-8250-ca7e-9db0a64b3346\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate IAAS resources from Classic (ASM) to Azure Resource Manager (ARM)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/da6a5116-47b8-200d-d395-78e04e81eeaa\",\r\n \"name\": \"da6a5116-47b8-200d-d395-78e04e81eeaa\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Managed disks migration\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/a4d89916-a6f3-6f0b-a536-d875accb5cfb\",\r\n \"name\": \"a4d89916-a6f3-6f0b-a536-d875accb5cfb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between storage accounts\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/e4cc86f1-592e-255d-f92d-bc3525b3b990\",\r\n \"name\": \"e4cc86f1-592e-255d-f92d-bc3525b3b990\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between regions\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/e0c25fab-dcc0-3adb-a8d1-be60ac38e9de\",\r\n \"name\": \"e0c25fab-dcc0-3adb-a8d1-be60ac38e9de\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between subscriptions\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/be8791f0-5deb-c1bf-a7c4-5f404506a208\",\r\n \"name\": \"be8791f0-5deb-c1bf-a7c4-5f404506a208\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate resources using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/4ced9202-14bd-052a-107e-0d6d0a88cda7\",\r\n \"name\": \"4ced9202-14bd-052a-107e-0d6d0a88cda7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate virtual machines from on-premises to Azure using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/fdf80c88-7fc8-9376-0ebe-1ac4bf948bf3\",\r\n \"name\": \"fdf80c88-7fc8-9376-0ebe-1ac4bf948bf3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate virtual machines from third-party provider to Azure using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/94db9610-0951-f0a0-9897-d93b675dc2b5\",\r\n \"name\": \"94db9610-0951-f0a0-9897-d93b675dc2b5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between resource groups\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/8dfbb6d2-50bf-c54b-726f-a52c6c90351c\",\r\n \"name\": \"8dfbb6d2-50bf-c54b-726f-a52c6c90351c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Planned Maintenance (Azure Platform)\"\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/d5030ad5-c2ba-a59a-54e5-e5607ae4fde2\",\r\n \"name\": \"d5030ad5-c2ba-a59a-54e5-e5607ae4fde2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Compute-VM (cores-vCPUs) subscription limit increases\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/ac307d36-18c9-b8cc-d145-b102384dc4c0\",\r\n \"name\": \"ac307d36-18c9-b8cc-d145-b102384dc4c0\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / My configuration change impacted connectivity\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/1b441472-cecd-5cda-9f77-8974f00e62a8\",\r\n \"name\": \"1b441472-cecd-5cda-9f77-8974f00e62a8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Troubleshoot my network security group (NSG)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/de268ec1-793d-0126-aa5c-8c952c97376c\",\r\n \"name\": \"de268ec1-793d-0126-aa5c-8c952c97376c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Troubleshoot my VM firewall\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/1b05f460-d040-f1cf-b349-56ee2f36b9af\",\r\n \"name\": \"1b05f460-d040-f1cf-b349-56ee2f36b9af\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I have an issue with my public IP\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/e8ef2ae9-4587-a94f-d748-2adafde2bf90\",\r\n \"name\": \"e8ef2ae9-4587-a94f-d748-2adafde2bf90\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I need to reset my password\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/5707e3b0-64c3-a9d9-4627-40f431914ab6\",\r\n \"name\": \"5707e3b0-64c3-a9d9-4627-40f431914ab6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I need guidance with serial console access\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/110155da-a163-a9e6-b1e6-2b8eac7fe20a\",\r\n \"name\": \"110155da-a163-a9e6-b1e6-2b8eac7fe20a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Failure to connect using RDP or SSH port\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/49193c4c-fbe3-73d1-924b-ea6c19a47f71\",\r\n \"name\": \"49193c4c-fbe3-73d1-924b-ea6c19a47f71\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My VM will not start after a configuration change\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/38286807-07fd-298d-ed5a-bf439fc95469\",\r\n \"name\": \"38286807-07fd-298d-ed5a-bf439fc95469\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I received a disk related error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/83e1375a-da5a-a994-e3da-058919aa7915\",\r\n \"name\": \"83e1375a-da5a-a994-e3da-058919aa7915\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I received an allocation failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/dae99494-d210-0639-fbf6-f4f0d35d70f2\",\r\n \"name\": \"dae99494-d210-0639-fbf6-f4f0d35d70f2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My VM is unresponsive to start or stop operations\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/2ad6b724-3c03-a266-2f93-52fc548acfd0\",\r\n \"name\": \"2ad6b724-3c03-a266-2f93-52fc548acfd0\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I am unable to resize my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/ccb68d2c-7f32-fbf3-6695-634cf1555e9c\",\r\n \"name\": \"ccb68d2c-7f32-fbf3-6695-634cf1555e9c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My start or stop operation failed\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/0f64bdfe-d980-bc15-721c-f3f14aa6f676\",\r\n \"name\": \"0f64bdfe-d980-bc15-721c-f3f14aa6f676\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My VMs OS is not booting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/4954fc8f-7b95-05ec-0640-b8f4b2937ad4\",\r\n \"name\": \"4954fc8f-7b95-05ec-0640-b8f4b2937ad4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My VMs OS is on a reboot loop\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/262eda34-248e-7871-741a-2d3708b0a862\",\r\n \"name\": \"262eda34-248e-7871-741a-2d3708b0a862\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / I applied updates and my VM will not boot\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/74ab9252-4eca-3c44-2252-c249bd0680fc\",\r\n \"name\": \"74ab9252-4eca-3c44-2252-c249bd0680fc\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / I received a failure when starting my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/618a1ecc-4862-9199-15d7-60a75b877247\",\r\n \"name\": \"618a1ecc-4862-9199-15d7-60a75b877247\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My problem is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/40026a20-2731-f229-11ed-b21d0a1b24e4\",\r\n \"name\": \"40026a20-2731-f229-11ed-b21d0a1b24e4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I need guidance preparing an image\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/4e6670a8-c278-f46b-1e33-94baf60799d7\",\r\n \"name\": \"4e6670a8-c278-f46b-1e33-94baf60799d7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I need guidance deploying with managed disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/15e2a142-b549-3a4d-1c7f-fa06b2c30288\",\r\n \"name\": \"15e2a142-b549-3a4d-1c7f-fa06b2c30288\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot custom image deployment failures\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/373a7125-6659-4b1c-112f-04323d0f6b56\",\r\n \"name\": \"373a7125-6659-4b1c-112f-04323d0f6b56\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot marketplace image deployment failures\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/3417413e-b21d-81e0-fe59-5ba2dcadf1fc\",\r\n \"name\": \"3417413e-b21d-81e0-fe59-5ba2dcadf1fc\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / My desired region or VM size is unavailable\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/d721f296-ee1b-6e50-6a52-62e4efac397d\",\r\n \"name\": \"d721f296-ee1b-6e50-6a52-62e4efac397d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I received an allocation failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/fd5f51c0-fbf5-45b7-c4df-38963e01227e\",\r\n \"name\": \"fd5f51c0-fbf5-45b7-c4df-38963e01227e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I am unable to deploy a captured or generalized image\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/817d8766-1585-a77c-9e03-79bc1fdafac5\",\r\n \"name\": \"817d8766-1585-a77c-9e03-79bc1fdafac5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot my ARM template error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/86087426-3ba7-5ab1-3b4c-b01daa55d565\",\r\n \"name\": \"86087426-3ba7-5ab1-3b4c-b01daa55d565\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I received a provisioning or deployment timeout error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/c3f56921-13fa-86b2-9b13-f74d841f215e\",\r\n \"name\": \"c3f56921-13fa-86b2-9b13-f74d841f215e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / My guest OS is causing restarts\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/26796b2b-edd6-b712-bc01-089f767a7d04\",\r\n \"name\": \"26796b2b-edd6-b712-bc01-089f767a7d04\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Request Root Cause Statement for recent availability impact\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/e71ae4c9-30c0-d993-a76c-934bab1f649b\",\r\n \"name\": \"e71ae4c9-30c0-d993-a76c-934bab1f649b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Help diagnose my VM restart issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/6d316553-632c-0fae-43d9-39b79e79fd8c\",\r\n \"name\": \"6d316553-632c-0fae-43d9-39b79e79fd8c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Disk throughput is lower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/d654798a-82f2-7476-b630-e5f7bf7fd40b\",\r\n \"name\": \"d654798a-82f2-7476-b630-e5f7bf7fd40b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / CPU usage is higher than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/f53629c8-a89b-8562-aace-f88feda170de\",\r\n \"name\": \"f53629c8-a89b-8562-aace-f88feda170de\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Memory usage is higher than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/8ab1180f-8bcb-ca42-a187-78c6491906a9\",\r\n \"name\": \"8ab1180f-8bcb-ca42-a187-78c6491906a9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / GPU processing is slower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/d39202e3-821c-27e4-6118-99b92d2940ba\",\r\n \"name\": \"d39202e3-821c-27e4-6118-99b92d2940ba\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Guidance for better VM sizing and throughput\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/db65e686-be0a-c951-b3e6-d5439c070fbc\",\r\n \"name\": \"db65e686-be0a-c951-b3e6-d5439c070fbc\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Unable to resize my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/338cbcc3-61b2-e337-dff8-c9c548dc80a8\",\r\n \"name\": \"338cbcc3-61b2-e337-dff8-c9c548dc80a8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Resizing a virtual disk\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/1156a3cf-fb92-3be8-8186-e6b597ce264c\",\r\n \"name\": \"1156a3cf-fb92-3be8-8186-e6b597ce264c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Attaching or detaching virtual disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/e8df87f3-14df-0f21-01a4-1f1e8838e965\",\r\n \"name\": \"e8df87f3-14df-0f21-01a4-1f1e8838e965\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Creating or deleting virtual disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/fecb015e-fce8-8325-9523-f56724b12199\",\r\n \"name\": \"fecb015e-fce8-8325-9523-f56724b12199\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Disk throughput is lower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/2db8a63f-5c87-3a9c-05d1-4bd38de434b9\",\r\n \"name\": \"2db8a63f-5c87-3a9c-05d1-4bd38de434b9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Restore a VM from snapshot\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/2b6f1732-802e-e708-2acc-e742ce037551\",\r\n \"name\": \"2b6f1732-802e-e708-2acc-e742ce037551\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Issues with Direct Upload for Managed Disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/29def612-a141-28cc-322f-18c75d9cbd0a\",\r\n \"name\": \"29def612-a141-28cc-322f-18c75d9cbd0a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / My problem is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/6011efba-4f6d-bd89-18f7-3e08f0ddd0f1\",\r\n \"name\": \"6011efba-4f6d-bd89-18f7-3e08f0ddd0f1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Diagnostic (boot diagnostics) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/03102534-9449-c672-84e9-208f85b550f5\",\r\n \"name\": \"03102534-9449-c672-84e9-208f85b550f5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Custom Script (CSE) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/2e39fe73-7959-a231-0d2b-4cb83ca67014\",\r\n \"name\": \"2e39fe73-7959-a231-0d2b-4cb83ca67014\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Log Analytics (OMS) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/550cbba4-3c0a-fce9-2500-f22d56ad75ad\",\r\n \"name\": \"550cbba4-3c0a-fce9-2500-f22d56ad75ad\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Desired State Configuration (DSC) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/e8ea8e26-ad33-d009-f57f-c5890c7462bf\",\r\n \"name\": \"e8ea8e26-ad33-d009-f57f-c5890c7462bf\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Microsoft Antimalware (security) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/1ab6bc16-09dc-96c3-abf2-3d8a386141c9\",\r\n \"name\": \"1ab6bc16-09dc-96c3-abf2-3d8a386141c9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Disk Encryption (ADE) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/9577ce3d-476e-2e38-74a2-ba0fcae1ca2c\",\r\n \"name\": \"9577ce3d-476e-2e38-74a2-ba0fcae1ca2c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Snapshot (Azure Backup) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/901d82ca-7978-461a-78c0-1a7fdd7c4131\",\r\n \"name\": \"901d82ca-7978-461a-78c0-1a7fdd7c4131\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Update Management extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/250bb464-4dc2-e31a-dacb-162b281aa00d\",\r\n \"name\": \"250bb464-4dc2-e31a-dacb-162b281aa00d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / GPU Driver extension issue (NVIDIA)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/e13229fd-6711-02d2-9da1-6b105fcec85a\",\r\n \"name\": \"e13229fd-6711-02d2-9da1-6b105fcec85a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Network Watcher agent extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/94a44633-6aed-7cd4-619f-4b7fa83da103\",\r\n \"name\": \"94a44633-6aed-7cd4-619f-4b7fa83da103\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Monitoring agent (MMA) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/d374c313-bbbc-a9c6-950e-bb6fb14148df\",\r\n \"name\": \"d374c313-bbbc-a9c6-950e-bb6fb14148df\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Access (enablevmaccess) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/0aab3168-ff94-fa06-b1e3-ede7205ec4bd\",\r\n \"name\": \"0aab3168-ff94-fa06-b1e3-ede7205ec4bd\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Guest Agent issue (crash, hung, not upgrading, or not connecting)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/6aa6126b-1361-7924-7d0c-6241de164f6b\",\r\n \"name\": \"6aa6126b-1361-7924-7d0c-6241de164f6b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Active Directory Login extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/efb16c6d-5659-ffab-c0f7-f6cc6fa41730\",\r\n \"name\": \"efb16c6d-5659-ffab-c0f7-f6cc6fa41730\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / GPU Driver extension issue (AMD)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/d5373907-0aa4-83a7-c7fc-6c5e654d7ad6\",\r\n \"name\": \"d5373907-0aa4-83a7-c7fc-6c5e654d7ad6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My encryption has failed due to a pre-req failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/0071a11f-eb88-bd15-6675-9913559675a7\",\r\n \"name\": \"0071a11f-eb88-bd15-6675-9913559675a7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is due to unsupported image or operating system\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/7e27656f-7cc1-bd1e-7751-6ac910e18729\",\r\n \"name\": \"7e27656f-7cc1-bd1e-7751-6ac910e18729\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My VM is not booting after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/1b758073-168b-a012-65eb-e353be5c200a\",\r\n \"name\": \"1b758073-168b-a012-65eb-e353be5c200a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My VM is not reachable after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/257e2d5f-8e3a-7be1-677e-91e6d7b79c23\",\r\n \"name\": \"257e2d5f-8e3a-7be1-677e-91e6d7b79c23\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My data drive or file system is not available after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/491c7631-681d-e6a0-0d4a-78b436fb3231\",\r\n \"name\": \"491c7631-681d-e6a0-0d4a-78b436fb3231\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / I need guidance with Azure Key Vault configuration, permissions, or keys\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/b42c9bbf-3973-e5b9-c941-e0e7224ce34d\",\r\n \"name\": \"b42c9bbf-3973-e5b9-c941-e0e7224ce34d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / Current status of encryption is incorrect for my VM (Portal, CLI, PS)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/2ba1c5be-1a06-0503-9433-42a4b9e56da2\",\r\n \"name\": \"2ba1c5be-1a06-0503-9433-42a4b9e56da2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue with decrypting a virtual disk\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/daa65a91-70b2-0dee-539a-48c0adbb24f2\",\r\n \"name\": \"daa65a91-70b2-0dee-539a-48c0adbb24f2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is with troubleshooting an encrypted VM (unlocking)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/f313fbc1-f751-226e-d42c-b0893b740cde\",\r\n \"name\": \"f313fbc1-f751-226e-d42c-b0893b740cde\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My encryption is not working as expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/bf715ae2-8a3b-1b81-8029-bb8ea7d61563\",\r\n \"name\": \"bf715ae2-8a3b-1b81-8029-bb8ea7d61563\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/7c09ddf9-d5b7-2ab5-123a-3de9419c8cb0\",\r\n \"name\": \"7c09ddf9-d5b7-2ab5-123a-3de9419c8cb0\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I am having issues configuring or enabling backup\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/220d0e31-054c-1ac3-06b5-1fea24872507\",\r\n \"name\": \"220d0e31-054c-1ac3-06b5-1fea24872507\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Backup is failing for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/9fd4fe85-ab1a-ef21-1a42-151c8fcaef2d\",\r\n \"name\": \"9fd4fe85-ab1a-ef21-1a42-151c8fcaef2d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Restore is failing for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/a55789d7-74eb-4b4a-177f-ac47573d8d45\",\r\n \"name\": \"a55789d7-74eb-4b4a-177f-ac47573d8d45\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Backup is taking longer than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/e865b156-078d-473a-ee18-f58e94df74ea\",\r\n \"name\": \"e865b156-078d-473a-ee18-f58e94df74ea\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Restore is taking longer than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/03d53348-afd0-fcbc-0336-9531cba2d0a6\",\r\n \"name\": \"03d53348-afd0-fcbc-0336-9531cba2d0a6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I need guidance configuring backup for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/013711de-2781-6814-f9e2-73b238c54aba\",\r\n \"name\": \"013711de-2781-6814-f9e2-73b238c54aba\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I need guidance with restoring my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/8ced0acd-6c14-6a23-a67b-e14a08ba9637\",\r\n \"name\": \"8ced0acd-6c14-6a23-a67b-e14a08ba9637\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / My issue is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/65dd477f-1967-27c5-6861-9551b37f7fd4\",\r\n \"name\": \"65dd477f-1967-27c5-6861-9551b37f7fd4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Guest OS - Kernel upgrade issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/fe451411-615c-3563-84e7-9c694358f3ab\",\r\n \"name\": \"fe451411-615c-3563-84e7-9c694358f3ab\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Create a Linux failover cluster\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/221c3415-800a-79ac-376f-12facad91e8d\",\r\n \"name\": \"221c3415-800a-79ac-376f-12facad91e8d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to delete a virtual machine\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/7459bcaa-1c0c-7b61-e5f0-47e3d7e20898\",\r\n \"name\": \"7459bcaa-1c0c-7b61-e5f0-47e3d7e20898\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to delete a Resource Group\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/cbf5bd31-8925-92e2-a4ba-54c0f9f7cac2\",\r\n \"name\": \"cbf5bd31-8925-92e2-a4ba-54c0f9f7cac2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Instance Metadata Service\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/936bd15e-2072-f65e-0e61-ea02a53cbe0e\",\r\n \"name\": \"936bd15e-2072-f65e-0e61-ea02a53cbe0e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage or use a Linux cluster in Azure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/ca318b8b-c50b-9330-605c-f4fc781709d9\",\r\n \"name\": \"ca318b8b-c50b-9330-605c-f4fc781709d9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Azure Metadata Service (Scheduled Events)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/9a0c2025-c287-9819-3427-27634fc4a6c8\",\r\n \"name\": \"9a0c2025-c287-9819-3427-27634fc4a6c8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to share Shared Image Gallery, Image Definition or Image Version\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/7fd2cd11-a693-66b0-6ed0-12ad87da7a8c\",\r\n \"name\": \"7fd2cd11-a693-66b0-6ed0-12ad87da7a8c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage an instance of SQL Server\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/9b8be6a3-1dca-0ca9-93bb-d259139a5cd5\",\r\n \"name\": \"9b8be6a3-1dca-0ca9-93bb-d259139a5cd5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Guidance regarding retirement of Classic IAAS resources (ASM)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/801c6bab-2fcf-8250-ca7e-9db0a64b3346\",\r\n \"name\": \"801c6bab-2fcf-8250-ca7e-9db0a64b3346\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate IAAS resources from Classic (ASM) to Azure Resource Manager (ARM)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/da6a5116-47b8-200d-d395-78e04e81eeaa\",\r\n \"name\": \"da6a5116-47b8-200d-d395-78e04e81eeaa\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Managed disks migration\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/a4d89916-a6f3-6f0b-a536-d875accb5cfb\",\r\n \"name\": \"a4d89916-a6f3-6f0b-a536-d875accb5cfb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between storage accounts\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/e4cc86f1-592e-255d-f92d-bc3525b3b990\",\r\n \"name\": \"e4cc86f1-592e-255d-f92d-bc3525b3b990\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between regions\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/e0c25fab-dcc0-3adb-a8d1-be60ac38e9de\",\r\n \"name\": \"e0c25fab-dcc0-3adb-a8d1-be60ac38e9de\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between subscriptions\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/be8791f0-5deb-c1bf-a7c4-5f404506a208\",\r\n \"name\": \"be8791f0-5deb-c1bf-a7c4-5f404506a208\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate resources using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/4ced9202-14bd-052a-107e-0d6d0a88cda7\",\r\n \"name\": \"4ced9202-14bd-052a-107e-0d6d0a88cda7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate virtual machines from on-premises to Azure using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/fdf80c88-7fc8-9376-0ebe-1ac4bf948bf3\",\r\n \"name\": \"fdf80c88-7fc8-9376-0ebe-1ac4bf948bf3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate virtual machines from third-party provider to Azure using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/94db9610-0951-f0a0-9897-d93b675dc2b5\",\r\n \"name\": \"94db9610-0951-f0a0-9897-d93b675dc2b5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between resource groups\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/2340ae8b-c745-572f-6ea8-661d68c08bd7/problemClassifications/8dfbb6d2-50bf-c54b-726f-a52c6c90351c\",\r\n \"name\": \"8dfbb6d2-50bf-c54b-726f-a52c6c90351c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Planned Maintenance (Azure Platform)\"\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
@@ -508,13 +508,13 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "227597db-7adb-4b91-8acd-d433f39b106a"
+ "237297f8-4e60-4825-9e64-abe68a1a0572"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.28516.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Support.MicrosoftSupportClient/1.0.0.0"
@@ -528,7 +528,10 @@
"no-cache"
],
"x-ms-ratelimit-remaining-tenant-reads": [
- "11913"
+ "11991"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -537,22 +540,19 @@
"Kestrel"
],
"x-ms-request-id": [
- "3375bb02-47d0-4fae-9ada-358fc20fd40b"
+ "8ab67929-1184-42b2-b175-5f1abb9e22b5"
],
"x-ms-correlation-request-id": [
- "3375bb02-47d0-4fae-9ada-358fc20fd40b"
+ "8ab67929-1184-42b2-b175-5f1abb9e22b5"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200315T071144Z:3375bb02-47d0-4fae-9ada-358fc20fd40b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "CENTRALUSEUAP:20200327T043554Z:8ab67929-1184-42b2-b175-5f1abb9e22b5"
],
"Date": [
- "Sun, 15 Mar 2020 07:11:44 GMT"
+ "Fri, 27 Mar 2020 04:35:54 GMT"
],
"Content-Length": [
- "41858"
+ "41480"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -561,7 +561,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/4d78b174-3203-a3ac-9e08-41fb35de6354\",\r\n \"name\": \"4d78b174-3203-a3ac-9e08-41fb35de6354\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Compute-VM (cores-vCPUs) subscription limit increases\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/923d6b56-d573-f943-b65d-d69ba79ea21a\",\r\n \"name\": \"923d6b56-d573-f943-b65d-d69ba79ea21a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / My configuration change impacted connectivity\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/9e9faedb-7764-448b-244a-14eca26f5362\",\r\n \"name\": \"9e9faedb-7764-448b-244a-14eca26f5362\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Troubleshoot my network security group (NSG)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/a0456e7c-3e84-2bd5-63e9-2fc8ba7cff73\",\r\n \"name\": \"a0456e7c-3e84-2bd5-63e9-2fc8ba7cff73\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Troubleshoot my VM firewall\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/e5c307e3-50ff-5dc9-c8ae-7d35051f88c9\",\r\n \"name\": \"e5c307e3-50ff-5dc9-c8ae-7d35051f88c9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I have an issue with my public IP\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/f325e249-4f10-e5bd-28f6-a466704826da\",\r\n \"name\": \"f325e249-4f10-e5bd-28f6-a466704826da\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I need to reset my password\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/f44a2b74-6a5c-a93f-a259-81e756e8cc27\",\r\n \"name\": \"f44a2b74-6a5c-a93f-a259-81e756e8cc27\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I need guidance with serial console access\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/92c2396d-b703-973f-1bca-2eea9425b21a\",\r\n \"name\": \"92c2396d-b703-973f-1bca-2eea9425b21a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Failure to connect using RDP or SSH port\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/83e6afa6-4ecd-e1c6-ef63-de73e96d0842\",\r\n \"name\": \"83e6afa6-4ecd-e1c6-ef63-de73e96d0842\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My VM will not start after a configuration change\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/240605e1-1510-255d-b490-cb95f582b1dc\",\r\n \"name\": \"240605e1-1510-255d-b490-cb95f582b1dc\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I received a disk related error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/f47d6b99-6f4b-d21a-feee-1800ad391e10\",\r\n \"name\": \"f47d6b99-6f4b-d21a-feee-1800ad391e10\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I received an allocation failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/c330d1a5-2f80-c72f-9bf5-df862a6629c3\",\r\n \"name\": \"c330d1a5-2f80-c72f-9bf5-df862a6629c3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My VM is unresponsive to start or stop operations\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/391055aa-2419-54f5-a5c1-b7cee895e0b7\",\r\n \"name\": \"391055aa-2419-54f5-a5c1-b7cee895e0b7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I am unable to resize my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/57f62030-d8ca-14f0-21d8-d13a38da9b44\",\r\n \"name\": \"57f62030-d8ca-14f0-21d8-d13a38da9b44\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My start or stop operation failed\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/5aed3921-4198-0d81-c999-f9c878ac00c8\",\r\n \"name\": \"5aed3921-4198-0d81-c999-f9c878ac00c8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My VMs OS is not booting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/fac9b6c8-5fe8-1380-aac2-beca088aa4f9\",\r\n \"name\": \"fac9b6c8-5fe8-1380-aac2-beca088aa4f9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My VMs OS is on a reboot loop\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/e677e41f-3296-1eef-cce6-5f4418dd9a15\",\r\n \"name\": \"e677e41f-3296-1eef-cce6-5f4418dd9a15\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / I applied updates and my VM will not boot\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/08e5ecaa-db9a-f0c3-880e-8b19993c5693\",\r\n \"name\": \"08e5ecaa-db9a-f0c3-880e-8b19993c5693\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / I received a failure when starting my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/773b125f-f9a8-f282-abe3-051d8ffe0f26\",\r\n \"name\": \"773b125f-f9a8-f282-abe3-051d8ffe0f26\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My problem is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/0aa484ee-9ff4-730b-4712-db435e6379b1\",\r\n \"name\": \"0aa484ee-9ff4-730b-4712-db435e6379b1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I need guidance preparing an image\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/9cbf3cf0-08ae-c0ee-838d-0e478fd1db59\",\r\n \"name\": \"9cbf3cf0-08ae-c0ee-838d-0e478fd1db59\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I need guidance deploying with managed disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/f0ee0e3f-41b3-3911-fff5-cc68d7853c1e\",\r\n \"name\": \"f0ee0e3f-41b3-3911-fff5-cc68d7853c1e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot custom image deployment failures\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/e2212b28-7a50-21a0-2346-d238a1010cfb\",\r\n \"name\": \"e2212b28-7a50-21a0-2346-d238a1010cfb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot marketplace image deployment failures\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/40e11b22-ffdb-7bab-0ffe-5afe1f671257\",\r\n \"name\": \"40e11b22-ffdb-7bab-0ffe-5afe1f671257\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / My desired region or VM size is unavailable\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/62446684-0e2d-4d89-e8ac-a75e02e52b62\",\r\n \"name\": \"62446684-0e2d-4d89-e8ac-a75e02e52b62\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I received an allocation failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/296a2f1f-4e0e-0a47-b057-408c061a7c58\",\r\n \"name\": \"296a2f1f-4e0e-0a47-b057-408c061a7c58\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I am unable to deploy a captured or generalized image\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/cda07234-3a2f-2362-0f26-1228beb5e938\",\r\n \"name\": \"cda07234-3a2f-2362-0f26-1228beb5e938\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot my ARM template error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/7fabc8c8-2ca8-a148-3713-a4708abc6626\",\r\n \"name\": \"7fabc8c8-2ca8-a148-3713-a4708abc6626\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I received a provisioning or deployment timeout error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/d0135195-91e8-58c5-d179-52a0b3df9346\",\r\n \"name\": \"d0135195-91e8-58c5-d179-52a0b3df9346\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / My guest OS is causing restarts\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/ee1b9d5c-c229-5771-00cd-4ab0a351650f\",\r\n \"name\": \"ee1b9d5c-c229-5771-00cd-4ab0a351650f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Troubleshoot Windows Update issues\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/fa3319a9-fc1c-6bb3-4fcc-4fd91ae9446e\",\r\n \"name\": \"fa3319a9-fc1c-6bb3-4fcc-4fd91ae9446e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Request Root Cause Statement for recent availability impact\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/fd32c173-79fe-462d-bfff-aeef92800055\",\r\n \"name\": \"fd32c173-79fe-462d-bfff-aeef92800055\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Help diagnose my VM restart issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/ad87fcbe-dbe1-5757-c644-b5511f27f5c4\",\r\n \"name\": \"ad87fcbe-dbe1-5757-c644-b5511f27f5c4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Disk throughput is lower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/8b618100-f5cd-7ad5-1c69-72aaf37d801d\",\r\n \"name\": \"8b618100-f5cd-7ad5-1c69-72aaf37d801d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / CPU usage is higher than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/0cb121be-61df-48e4-5faa-b34f01c7aa16\",\r\n \"name\": \"0cb121be-61df-48e4-5faa-b34f01c7aa16\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Memory usage is higher than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/899926d6-8586-6c43-100d-a363420f10ad\",\r\n \"name\": \"899926d6-8586-6c43-100d-a363420f10ad\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / GPU processing is slower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/ee9dd1ca-39aa-86d7-1465-74ef01856d37\",\r\n \"name\": \"ee9dd1ca-39aa-86d7-1465-74ef01856d37\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Guidance for better VM sizing and throughput\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/2dafb8e0-c8e0-bacc-5ff0-42635d6c2491\",\r\n \"name\": \"2dafb8e0-c8e0-bacc-5ff0-42635d6c2491\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Unable to resize my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/f55ae157-8eae-55e0-db62-d976220c3b4b\",\r\n \"name\": \"f55ae157-8eae-55e0-db62-d976220c3b4b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot activate my Windows VM / My VM is reporting a specific activation error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/ebd329a3-fb2f-0895-7d80-e944994bcfab\",\r\n \"name\": \"ebd329a3-fb2f-0895-7d80-e944994bcfab\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot activate my Windows VM / My VM has never been successfully activated\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/5c13b65d-2d3c-a335-d7a0-fac839d34d2b\",\r\n \"name\": \"5c13b65d-2d3c-a335-d7a0-fac839d34d2b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot activate my Windows VM / My VM was previously activated and now isn’t\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/e587028f-8d91-4c0f-a265-b1f08a6d22cf\",\r\n \"name\": \"e587028f-8d91-4c0f-a265-b1f08a6d22cf\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot activate my Windows VM / My Express Route configuration is causing issues with Windows activation\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/d36debab-2411-5fcc-6fcc-f28b5a18a804\",\r\n \"name\": \"d36debab-2411-5fcc-6fcc-f28b5a18a804\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot activate my Windows VM / My KMS server is located on-premises and activation fails\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/1ceb0742-9626-0670-452f-e853aa789deb\",\r\n \"name\": \"1ceb0742-9626-0670-452f-e853aa789deb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot activate my Windows VM / My key or license isn’t working properly\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/7a936404-b37e-01e2-1616-571db2e113b0\",\r\n \"name\": \"7a936404-b37e-01e2-1616-571db2e113b0\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Resizing a virtual disk\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/c9d514fa-07ba-599c-6c86-2856247842a8\",\r\n \"name\": \"c9d514fa-07ba-599c-6c86-2856247842a8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Attaching or detaching virtual disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/8d76d0aa-e106-79ff-0231-9ffb1a59ed66\",\r\n \"name\": \"8d76d0aa-e106-79ff-0231-9ffb1a59ed66\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Creating or deleting virtual disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/e82eaf5a-b6a2-cc52-9651-571ffb782bbd\",\r\n \"name\": \"e82eaf5a-b6a2-cc52-9651-571ffb782bbd\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Disk throughput is lower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/b4fc835f-16aa-d11a-7a3b-1900ffeb7bcb\",\r\n \"name\": \"b4fc835f-16aa-d11a-7a3b-1900ffeb7bcb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Restore a VM from snapshot\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/03bac894-54fc-6fa1-df23-bbf21eace375\",\r\n \"name\": \"03bac894-54fc-6fa1-df23-bbf21eace375\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Issues with Direct Upload for Managed Disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/7f21b03f-08e9-238c-ab58-8c460823ee16\",\r\n \"name\": \"7f21b03f-08e9-238c-ab58-8c460823ee16\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / My problem is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/7261042e-2690-5f80-89b1-dbf323a90c03\",\r\n \"name\": \"7261042e-2690-5f80-89b1-dbf323a90c03\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Diagnostic (boot diagnostics) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/134405f7-3ab8-50a5-3f68-2b87855f74f6\",\r\n \"name\": \"134405f7-3ab8-50a5-3f68-2b87855f74f6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Custom Script (CSE) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/b6dec86c-f1a4-e67f-cc26-1bb9efce43f3\",\r\n \"name\": \"b6dec86c-f1a4-e67f-cc26-1bb9efce43f3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Log Analytics (OMS) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/7f5b5671-3461-1fce-84e5-36eeb0a6f235\",\r\n \"name\": \"7f5b5671-3461-1fce-84e5-36eeb0a6f235\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Desired State Configuration (DSC) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/43b0be02-be8c-ac5a-af46-ab0516762feb\",\r\n \"name\": \"43b0be02-be8c-ac5a-af46-ab0516762feb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Microsoft Antimalware (security) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/5f941c9f-e41a-2d35-7719-2f2f0bc72408\",\r\n \"name\": \"5f941c9f-e41a-2d35-7719-2f2f0bc72408\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Disk Encryption (ADE) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/52e4c0d8-bfe7-721a-315d-c930b5e33f4f\",\r\n \"name\": \"52e4c0d8-bfe7-721a-315d-c930b5e33f4f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Snapshot (Azure Backup) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/4d0458f2-335f-decc-813c-3a70929463df\",\r\n \"name\": \"4d0458f2-335f-decc-813c-3a70929463df\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Update Management extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/5a105230-54e6-b09a-5667-764d781026a1\",\r\n \"name\": \"5a105230-54e6-b09a-5667-764d781026a1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / GPU Driver extension issue (NVIDIA)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/f8c2e1e4-fa16-52f7-5569-10c956934600\",\r\n \"name\": \"f8c2e1e4-fa16-52f7-5569-10c956934600\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Network Watcher agent extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/fc4d4b63-7ee7-78c1-fc99-ffe694b9f8a2\",\r\n \"name\": \"fc4d4b63-7ee7-78c1-fc99-ffe694b9f8a2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Monitoring agent (MMA) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/501cfa71-4c26-0615-c60e-c800d605e049\",\r\n \"name\": \"501cfa71-4c26-0615-c60e-c800d605e049\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Access (enablevmaccess) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/4df7c88d-2c5a-27de-fc0e-87a7493fed69\",\r\n \"name\": \"4df7c88d-2c5a-27de-fc0e-87a7493fed69\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Guest Agent issue (crash, hung, not upgrading, or not connecting)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/0ff542fa-5338-ba24-2e2d-00200b837667\",\r\n \"name\": \"0ff542fa-5338-ba24-2e2d-00200b837667\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Custom Script (CSE) extension using Managed Identity issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/0969c3f5-eae0-7620-93c2-609254bcac83\",\r\n \"name\": \"0969c3f5-eae0-7620-93c2-609254bcac83\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Active Directory Login extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/62e3cd36-8683-2540-7b90-7a890e8560f2\",\r\n \"name\": \"62e3cd36-8683-2540-7b90-7a890e8560f2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / GPU Driver extension issue (AMD)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/8be087ad-d9b0-fbd1-aebe-c4b3bf9c2e0e\",\r\n \"name\": \"8be087ad-d9b0-fbd1-aebe-c4b3bf9c2e0e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My encryption has failed due to a pre-req failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/3cd0b841-0192-fcb7-f056-cccdb669cd4a\",\r\n \"name\": \"3cd0b841-0192-fcb7-f056-cccdb669cd4a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is due to unsupported image or operating system\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/6322d0b2-1b5c-129b-ea42-cace57e14805\",\r\n \"name\": \"6322d0b2-1b5c-129b-ea42-cace57e14805\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My VM is not booting after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/bc6dcea4-b6da-cd06-7ab1-1ddfb603eaee\",\r\n \"name\": \"bc6dcea4-b6da-cd06-7ab1-1ddfb603eaee\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My VM is not reachable after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/14b1d04c-90d1-a0ad-8bfc-d98666f39d30\",\r\n \"name\": \"14b1d04c-90d1-a0ad-8bfc-d98666f39d30\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My data drive or file system is not available after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/77622630-5414-5a0b-15b2-84be742163e5\",\r\n \"name\": \"77622630-5414-5a0b-15b2-84be742163e5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / I need guidance with Azure Key Vault configuration, permissions, or keys\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/af987d76-3ad6-c91a-5050-24712c6edc1f\",\r\n \"name\": \"af987d76-3ad6-c91a-5050-24712c6edc1f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / Current status of encryption is incorrect for my VM (Portal, CLI, PS)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/fabe7798-6447-21d1-eec1-ff516a8b2716\",\r\n \"name\": \"fabe7798-6447-21d1-eec1-ff516a8b2716\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue with decrypting a virtual disk\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/af1c1222-ca4f-b128-741b-f54511d64201\",\r\n \"name\": \"af1c1222-ca4f-b128-741b-f54511d64201\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is with troubleshooting an encrypted VM (unlocking)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/be276306-0a08-2531-82cb-9e9907e625f3\",\r\n \"name\": \"be276306-0a08-2531-82cb-9e9907e625f3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My encryption is not working as expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/397fe3e8-5101-d675-e61a-babcc02ff874\",\r\n \"name\": \"397fe3e8-5101-d675-e61a-babcc02ff874\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/e8bf24a4-487b-b723-7bf0-4271febda89c\",\r\n \"name\": \"e8bf24a4-487b-b723-7bf0-4271febda89c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I am having issues configuring or enabling backup\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/b2e9f884-ad9d-43ac-e01f-be03d1856ee3\",\r\n \"name\": \"b2e9f884-ad9d-43ac-e01f-be03d1856ee3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Backup is failing for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/6fddc208-ceac-8c83-a5a9-4cc00dae14be\",\r\n \"name\": \"6fddc208-ceac-8c83-a5a9-4cc00dae14be\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Restore is failing for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/518d9718-b940-0f5f-8e9d-08fde92a884a\",\r\n \"name\": \"518d9718-b940-0f5f-8e9d-08fde92a884a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Backup is taking longer than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/2abbb2fc-32d4-402c-6d5d-e7a28a7dc95e\",\r\n \"name\": \"2abbb2fc-32d4-402c-6d5d-e7a28a7dc95e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Restore is taking longer than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/5dd4e579-22b4-ee21-ee22-6b027061b157\",\r\n \"name\": \"5dd4e579-22b4-ee21-ee22-6b027061b157\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I need guidance configuring backup for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/90c41c9e-f50e-1bf4-370f-44ffb5a9c1ac\",\r\n \"name\": \"90c41c9e-f50e-1bf4-370f-44ffb5a9c1ac\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I need guidance with restoring my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/4fc9f99b-00f8-a3ca-cd9e-0c4648ce1d90\",\r\n \"name\": \"4fc9f99b-00f8-a3ca-cd9e-0c4648ce1d90\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / My issue is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/082217f4-bed0-6b03-12c1-173ed77cb03b\",\r\n \"name\": \"082217f4-bed0-6b03-12c1-173ed77cb03b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Guest OS - Windows specific in-place upgrade issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/4af02697-cd73-222d-c180-4ff928f26312\",\r\n \"name\": \"4af02697-cd73-222d-c180-4ff928f26312\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Create RDS in Azure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/ad486945-9500-f754-c39f-26ac7db9a17d\",\r\n \"name\": \"ad486945-9500-f754-c39f-26ac7db9a17d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Create a Windows failover cluster\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/7894368f-87ed-8e4b-df9a-4b2f8fa19e71\",\r\n \"name\": \"7894368f-87ed-8e4b-df9a-4b2f8fa19e71\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / My issue or question is specific to Hybrid Use Benefit (HUB)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/5ee984fd-2cd9-73b3-e688-91192a300d42\",\r\n \"name\": \"5ee984fd-2cd9-73b3-e688-91192a300d42\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to delete a virtual machine\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/93ee5e82-133c-842f-57fc-a18e959f7939\",\r\n \"name\": \"93ee5e82-133c-842f-57fc-a18e959f7939\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to delete a Resource Group\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/bca84408-0cce-27ce-6ec0-81d3d0bf61d3\",\r\n \"name\": \"bca84408-0cce-27ce-6ec0-81d3d0bf61d3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Instance Metadata Service\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/7deec2fa-ffd5-a10b-b26e-1891f495242b\",\r\n \"name\": \"7deec2fa-ffd5-a10b-b26e-1891f495242b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage or use RDS in Azure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/6c8b2a76-0250-e93c-ca70-263729a68761\",\r\n \"name\": \"6c8b2a76-0250-e93c-ca70-263729a68761\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage or use a Windows cluster in Azure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/cd0edcee-79fe-4f6a-5fa8-7ffe6d9e6a5c\",\r\n \"name\": \"cd0edcee-79fe-4f6a-5fa8-7ffe6d9e6a5c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Azure Metadata Service (Scheduled Events)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/727c53ba-c8ff-acae-381d-7659f403d974\",\r\n \"name\": \"727c53ba-c8ff-acae-381d-7659f403d974\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to share Shared Image Gallery, Image Definition or Image Version\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/2dbfdbd8-7942-817a-4614-851940815182\",\r\n \"name\": \"2dbfdbd8-7942-817a-4614-851940815182\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage an instance of SQL Server\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/588be50a-ee0e-8d07-0135-8dde3ee4bb56\",\r\n \"name\": \"588be50a-ee0e-8d07-0135-8dde3ee4bb56\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / My issue or question is specific to Hybrid Use Benefit (HUB) for Windows\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/8a82f77d-c3ab-7b08-d915-776b4ff64ff4\",\r\n \"name\": \"8a82f77d-c3ab-7b08-d915-776b4ff64ff4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Guidance regarding retirement of Classic IAAS resources (ASM)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/1135e3d0-20e2-aec5-4ef0-55fd3dae2d58\",\r\n \"name\": \"1135e3d0-20e2-aec5-4ef0-55fd3dae2d58\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate IAAS resources from Classic (ASM) to Azure Resource Manager (ARM)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/df1436d9-bc4b-555b-eeda-7b5150c974fa\",\r\n \"name\": \"df1436d9-bc4b-555b-eeda-7b5150c974fa\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Managed disks migration\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/0b726570-b04d-be6e-3fab-0e458a65aa90\",\r\n \"name\": \"0b726570-b04d-be6e-3fab-0e458a65aa90\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between storage accounts\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/e99d3660-70d7-d2f6-29a2-8571fe13516d\",\r\n \"name\": \"e99d3660-70d7-d2f6-29a2-8571fe13516d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between regions\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/579bb510-ba46-26a3-19c7-3ce5e37bf1c5\",\r\n \"name\": \"579bb510-ba46-26a3-19c7-3ce5e37bf1c5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between subscriptions\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/ddd00ce4-eae5-4bb0-d957-bdafe22ca5d7\",\r\n \"name\": \"ddd00ce4-eae5-4bb0-d957-bdafe22ca5d7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate resources using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/82d8b2f0-bd7e-d0b7-35a0-2d8072acd0bc\",\r\n \"name\": \"82d8b2f0-bd7e-d0b7-35a0-2d8072acd0bc\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate virtual machines from on-premises to Azure using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/d82aa2c5-a0cf-ae56-a486-220246791212\",\r\n \"name\": \"d82aa2c5-a0cf-ae56-a486-220246791212\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate virtual machines from third-party provider to Azure using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/aaa925f8-bbc6-997b-e8e2-35d9b6c78b2b\",\r\n \"name\": \"aaa925f8-bbc6-997b-e8e2-35d9b6c78b2b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between resource groups\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/bf5eafd5-a438-6e15-458f-e614453346a2\",\r\n \"name\": \"bf5eafd5-a438-6e15-458f-e614453346a2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Planned Maintenance (Azure Platform)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/b20d0fe1-828e-d1b8-2278-1c22a0dcb560\",\r\n \"name\": \"b20d0fe1-828e-d1b8-2278-1c22a0dcb560\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / AzureSafeGuards email received\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/98745d3a-6d4f-30a7-a3c9-8ad002a95560\",\r\n \"name\": \"98745d3a-6d4f-30a7-a3c9-8ad002a95560\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / Guidance for security advisories or vulnerabilities\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/34feb588-ad57-369b-158c-f00e25ec5075\",\r\n \"name\": \"34feb588-ad57-369b-158c-f00e25ec5075\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / Malicious activity suspected or detected on system\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/f91b2161-5abf-a1c9-094b-c1aaf6e688ff\",\r\n \"name\": \"f91b2161-5abf-a1c9-094b-c1aaf6e688ff\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / Malware suspected on system\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/fb1a3450-332d-ac43-2959-e46372dad22c\",\r\n \"name\": \"fb1a3450-332d-ac43-2959-e46372dad22c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / Root cause investigation or advisory\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/3e0f21a7-21e0-b7a8-1027-a4968f854350\",\r\n \"name\": \"3e0f21a7-21e0-b7a8-1027-a4968f854350\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / System has been compromised\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/e5a42d2e-0eb0-8c85-90af-0e82aaa44dd1\",\r\n \"name\": \"e5a42d2e-0eb0-8c85-90af-0e82aaa44dd1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / System or accounts have been hacked\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/d015a015-6b30-544e-58df-b15a0fb8087d\",\r\n \"name\": \"d015a015-6b30-544e-58df-b15a0fb8087d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / Virus or Trojan detected on system\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/60323453-3561-e550-d597-f6f16128db2a\",\r\n \"name\": \"60323453-3561-e550-d597-f6f16128db2a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / Vulnerability information\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/8bf92fac-4aff-92eb-65f3-b58e4f55a672\",\r\n \"name\": \"8bf92fac-4aff-92eb-65f3-b58e4f55a672\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / Vulnerability Scanner results\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/a2e34c4b-a2ba-2cb2-5e46-ee867cff565f\",\r\n \"name\": \"a2e34c4b-a2ba-2cb2-5e46-ee867cff565f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / Website has been defaced\"\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/4d78b174-3203-a3ac-9e08-41fb35de6354\",\r\n \"name\": \"4d78b174-3203-a3ac-9e08-41fb35de6354\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Compute-VM (cores-vCPUs) subscription limit increases\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/923d6b56-d573-f943-b65d-d69ba79ea21a\",\r\n \"name\": \"923d6b56-d573-f943-b65d-d69ba79ea21a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / My configuration change impacted connectivity\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/9e9faedb-7764-448b-244a-14eca26f5362\",\r\n \"name\": \"9e9faedb-7764-448b-244a-14eca26f5362\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Troubleshoot my network security group (NSG)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/a0456e7c-3e84-2bd5-63e9-2fc8ba7cff73\",\r\n \"name\": \"a0456e7c-3e84-2bd5-63e9-2fc8ba7cff73\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Troubleshoot my VM firewall\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/e5c307e3-50ff-5dc9-c8ae-7d35051f88c9\",\r\n \"name\": \"e5c307e3-50ff-5dc9-c8ae-7d35051f88c9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I have an issue with my public IP\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/f325e249-4f10-e5bd-28f6-a466704826da\",\r\n \"name\": \"f325e249-4f10-e5bd-28f6-a466704826da\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I need to reset my password\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/f44a2b74-6a5c-a93f-a259-81e756e8cc27\",\r\n \"name\": \"f44a2b74-6a5c-a93f-a259-81e756e8cc27\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / I need guidance with serial console access\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/92c2396d-b703-973f-1bca-2eea9425b21a\",\r\n \"name\": \"92c2396d-b703-973f-1bca-2eea9425b21a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot connect to my VM / Failure to connect using RDP or SSH port\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/83e6afa6-4ecd-e1c6-ef63-de73e96d0842\",\r\n \"name\": \"83e6afa6-4ecd-e1c6-ef63-de73e96d0842\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My VM will not start after a configuration change\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/240605e1-1510-255d-b490-cb95f582b1dc\",\r\n \"name\": \"240605e1-1510-255d-b490-cb95f582b1dc\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I received a disk related error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/f47d6b99-6f4b-d21a-feee-1800ad391e10\",\r\n \"name\": \"f47d6b99-6f4b-d21a-feee-1800ad391e10\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I received an allocation failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/c330d1a5-2f80-c72f-9bf5-df862a6629c3\",\r\n \"name\": \"c330d1a5-2f80-c72f-9bf5-df862a6629c3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My VM is unresponsive to start or stop operations\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/391055aa-2419-54f5-a5c1-b7cee895e0b7\",\r\n \"name\": \"391055aa-2419-54f5-a5c1-b7cee895e0b7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / I am unable to resize my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/57f62030-d8ca-14f0-21d8-d13a38da9b44\",\r\n \"name\": \"57f62030-d8ca-14f0-21d8-d13a38da9b44\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot start or stop my VM / My start or stop operation failed\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/5aed3921-4198-0d81-c999-f9c878ac00c8\",\r\n \"name\": \"5aed3921-4198-0d81-c999-f9c878ac00c8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My VMs OS is not booting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/fac9b6c8-5fe8-1380-aac2-beca088aa4f9\",\r\n \"name\": \"fac9b6c8-5fe8-1380-aac2-beca088aa4f9\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My VMs OS is on a reboot loop\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/e677e41f-3296-1eef-cce6-5f4418dd9a15\",\r\n \"name\": \"e677e41f-3296-1eef-cce6-5f4418dd9a15\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / I applied updates and my VM will not boot\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/08e5ecaa-db9a-f0c3-880e-8b19993c5693\",\r\n \"name\": \"08e5ecaa-db9a-f0c3-880e-8b19993c5693\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / I received a failure when starting my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/773b125f-f9a8-f282-abe3-051d8ffe0f26\",\r\n \"name\": \"773b125f-f9a8-f282-abe3-051d8ffe0f26\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"My VM is not booting / My problem is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/0aa484ee-9ff4-730b-4712-db435e6379b1\",\r\n \"name\": \"0aa484ee-9ff4-730b-4712-db435e6379b1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I need guidance preparing an image\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/9cbf3cf0-08ae-c0ee-838d-0e478fd1db59\",\r\n \"name\": \"9cbf3cf0-08ae-c0ee-838d-0e478fd1db59\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I need guidance deploying with managed disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/f0ee0e3f-41b3-3911-fff5-cc68d7853c1e\",\r\n \"name\": \"f0ee0e3f-41b3-3911-fff5-cc68d7853c1e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot custom image deployment failures\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/e2212b28-7a50-21a0-2346-d238a1010cfb\",\r\n \"name\": \"e2212b28-7a50-21a0-2346-d238a1010cfb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot marketplace image deployment failures\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/40e11b22-ffdb-7bab-0ffe-5afe1f671257\",\r\n \"name\": \"40e11b22-ffdb-7bab-0ffe-5afe1f671257\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / My desired region or VM size is unavailable\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/62446684-0e2d-4d89-e8ac-a75e02e52b62\",\r\n \"name\": \"62446684-0e2d-4d89-e8ac-a75e02e52b62\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I received an allocation failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/296a2f1f-4e0e-0a47-b057-408c061a7c58\",\r\n \"name\": \"296a2f1f-4e0e-0a47-b057-408c061a7c58\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I am unable to deploy a captured or generalized image\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/cda07234-3a2f-2362-0f26-1228beb5e938\",\r\n \"name\": \"cda07234-3a2f-2362-0f26-1228beb5e938\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / Troubleshoot my ARM template error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/7fabc8c8-2ca8-a148-3713-a4708abc6626\",\r\n \"name\": \"7fabc8c8-2ca8-a148-3713-a4708abc6626\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot create a VM / I received a provisioning or deployment timeout error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/d0135195-91e8-58c5-d179-52a0b3df9346\",\r\n \"name\": \"d0135195-91e8-58c5-d179-52a0b3df9346\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / My guest OS is causing restarts\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/ee1b9d5c-c229-5771-00cd-4ab0a351650f\",\r\n \"name\": \"ee1b9d5c-c229-5771-00cd-4ab0a351650f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Troubleshoot Windows Update issues\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/fa3319a9-fc1c-6bb3-4fcc-4fd91ae9446e\",\r\n \"name\": \"fa3319a9-fc1c-6bb3-4fcc-4fd91ae9446e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Request Root Cause Statement for recent availability impact\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/fd32c173-79fe-462d-bfff-aeef92800055\",\r\n \"name\": \"fd32c173-79fe-462d-bfff-aeef92800055\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM restarted or stopped unexpectedly / Help diagnose my VM restart issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/ad87fcbe-dbe1-5757-c644-b5511f27f5c4\",\r\n \"name\": \"ad87fcbe-dbe1-5757-c644-b5511f27f5c4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Disk throughput is lower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/8b618100-f5cd-7ad5-1c69-72aaf37d801d\",\r\n \"name\": \"8b618100-f5cd-7ad5-1c69-72aaf37d801d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / CPU usage is higher than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/0cb121be-61df-48e4-5faa-b34f01c7aa16\",\r\n \"name\": \"0cb121be-61df-48e4-5faa-b34f01c7aa16\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Memory usage is higher than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/899926d6-8586-6c43-100d-a363420f10ad\",\r\n \"name\": \"899926d6-8586-6c43-100d-a363420f10ad\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / GPU processing is slower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/ee9dd1ca-39aa-86d7-1465-74ef01856d37\",\r\n \"name\": \"ee9dd1ca-39aa-86d7-1465-74ef01856d37\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Guidance for better VM sizing and throughput\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/2dafb8e0-c8e0-bacc-5ff0-42635d6c2491\",\r\n \"name\": \"2dafb8e0-c8e0-bacc-5ff0-42635d6c2491\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Performance / Unable to resize my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/f55ae157-8eae-55e0-db62-d976220c3b4b\",\r\n \"name\": \"f55ae157-8eae-55e0-db62-d976220c3b4b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot activate my Windows VM / My VM is reporting a specific activation error\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/ebd329a3-fb2f-0895-7d80-e944994bcfab\",\r\n \"name\": \"ebd329a3-fb2f-0895-7d80-e944994bcfab\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot activate my Windows VM / My VM has never been successfully activated\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/5c13b65d-2d3c-a335-d7a0-fac839d34d2b\",\r\n \"name\": \"5c13b65d-2d3c-a335-d7a0-fac839d34d2b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot activate my Windows VM / My VM was previously activated and now isn’t\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/e587028f-8d91-4c0f-a265-b1f08a6d22cf\",\r\n \"name\": \"e587028f-8d91-4c0f-a265-b1f08a6d22cf\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot activate my Windows VM / My Express Route configuration is causing issues with Windows activation\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/d36debab-2411-5fcc-6fcc-f28b5a18a804\",\r\n \"name\": \"d36debab-2411-5fcc-6fcc-f28b5a18a804\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot activate my Windows VM / My KMS server is located on-premises and activation fails\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/1ceb0742-9626-0670-452f-e853aa789deb\",\r\n \"name\": \"1ceb0742-9626-0670-452f-e853aa789deb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot activate my Windows VM / My key or license isn’t working properly\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/7a936404-b37e-01e2-1616-571db2e113b0\",\r\n \"name\": \"7a936404-b37e-01e2-1616-571db2e113b0\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Resizing a virtual disk\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/c9d514fa-07ba-599c-6c86-2856247842a8\",\r\n \"name\": \"c9d514fa-07ba-599c-6c86-2856247842a8\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Attaching or detaching virtual disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/8d76d0aa-e106-79ff-0231-9ffb1a59ed66\",\r\n \"name\": \"8d76d0aa-e106-79ff-0231-9ffb1a59ed66\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Creating or deleting virtual disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/e82eaf5a-b6a2-cc52-9651-571ffb782bbd\",\r\n \"name\": \"e82eaf5a-b6a2-cc52-9651-571ffb782bbd\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Disk throughput is lower than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/b4fc835f-16aa-d11a-7a3b-1900ffeb7bcb\",\r\n \"name\": \"b4fc835f-16aa-d11a-7a3b-1900ffeb7bcb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Restore a VM from snapshot\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/03bac894-54fc-6fa1-df23-bbf21eace375\",\r\n \"name\": \"03bac894-54fc-6fa1-df23-bbf21eace375\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / Issues with Direct Upload for Managed Disks\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/7f21b03f-08e9-238c-ab58-8c460823ee16\",\r\n \"name\": \"7f21b03f-08e9-238c-ab58-8c460823ee16\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Virtual Disk Management / My problem is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/7261042e-2690-5f80-89b1-dbf323a90c03\",\r\n \"name\": \"7261042e-2690-5f80-89b1-dbf323a90c03\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Diagnostic (boot diagnostics) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/134405f7-3ab8-50a5-3f68-2b87855f74f6\",\r\n \"name\": \"134405f7-3ab8-50a5-3f68-2b87855f74f6\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Custom Script (CSE) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/b6dec86c-f1a4-e67f-cc26-1bb9efce43f3\",\r\n \"name\": \"b6dec86c-f1a4-e67f-cc26-1bb9efce43f3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Log Analytics (OMS) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/7f5b5671-3461-1fce-84e5-36eeb0a6f235\",\r\n \"name\": \"7f5b5671-3461-1fce-84e5-36eeb0a6f235\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Desired State Configuration (DSC) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/43b0be02-be8c-ac5a-af46-ab0516762feb\",\r\n \"name\": \"43b0be02-be8c-ac5a-af46-ab0516762feb\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Microsoft Antimalware (security) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/5f941c9f-e41a-2d35-7719-2f2f0bc72408\",\r\n \"name\": \"5f941c9f-e41a-2d35-7719-2f2f0bc72408\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Disk Encryption (ADE) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/52e4c0d8-bfe7-721a-315d-c930b5e33f4f\",\r\n \"name\": \"52e4c0d8-bfe7-721a-315d-c930b5e33f4f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Snapshot (Azure Backup) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/4d0458f2-335f-decc-813c-3a70929463df\",\r\n \"name\": \"4d0458f2-335f-decc-813c-3a70929463df\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Update Management extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/5a105230-54e6-b09a-5667-764d781026a1\",\r\n \"name\": \"5a105230-54e6-b09a-5667-764d781026a1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / GPU Driver extension issue (NVIDIA)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/f8c2e1e4-fa16-52f7-5569-10c956934600\",\r\n \"name\": \"f8c2e1e4-fa16-52f7-5569-10c956934600\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Network Watcher agent extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/fc4d4b63-7ee7-78c1-fc99-ffe694b9f8a2\",\r\n \"name\": \"fc4d4b63-7ee7-78c1-fc99-ffe694b9f8a2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Monitoring agent (MMA) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/501cfa71-4c26-0615-c60e-c800d605e049\",\r\n \"name\": \"501cfa71-4c26-0615-c60e-c800d605e049\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Access (enablevmaccess) extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/4df7c88d-2c5a-27de-fc0e-87a7493fed69\",\r\n \"name\": \"4df7c88d-2c5a-27de-fc0e-87a7493fed69\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / VM Guest Agent issue (crash, hung, not upgrading, or not connecting)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/0969c3f5-eae0-7620-93c2-609254bcac83\",\r\n \"name\": \"0969c3f5-eae0-7620-93c2-609254bcac83\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / Azure Active Directory Login extension issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/62e3cd36-8683-2540-7b90-7a890e8560f2\",\r\n \"name\": \"62e3cd36-8683-2540-7b90-7a890e8560f2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"VM Extensions not operating correctly / GPU Driver extension issue (AMD)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/8be087ad-d9b0-fbd1-aebe-c4b3bf9c2e0e\",\r\n \"name\": \"8be087ad-d9b0-fbd1-aebe-c4b3bf9c2e0e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My encryption has failed due to a pre-req failure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/3cd0b841-0192-fcb7-f056-cccdb669cd4a\",\r\n \"name\": \"3cd0b841-0192-fcb7-f056-cccdb669cd4a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is due to unsupported image or operating system\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/6322d0b2-1b5c-129b-ea42-cace57e14805\",\r\n \"name\": \"6322d0b2-1b5c-129b-ea42-cace57e14805\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My VM is not booting after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/bc6dcea4-b6da-cd06-7ab1-1ddfb603eaee\",\r\n \"name\": \"bc6dcea4-b6da-cd06-7ab1-1ddfb603eaee\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My VM is not reachable after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/14b1d04c-90d1-a0ad-8bfc-d98666f39d30\",\r\n \"name\": \"14b1d04c-90d1-a0ad-8bfc-d98666f39d30\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My data drive or file system is not available after encryption\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/77622630-5414-5a0b-15b2-84be742163e5\",\r\n \"name\": \"77622630-5414-5a0b-15b2-84be742163e5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / I need guidance with Azure Key Vault configuration, permissions, or keys\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/af987d76-3ad6-c91a-5050-24712c6edc1f\",\r\n \"name\": \"af987d76-3ad6-c91a-5050-24712c6edc1f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / Current status of encryption is incorrect for my VM (Portal, CLI, PS)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/fabe7798-6447-21d1-eec1-ff516a8b2716\",\r\n \"name\": \"fabe7798-6447-21d1-eec1-ff516a8b2716\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue with decrypting a virtual disk\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/af1c1222-ca4f-b128-741b-f54511d64201\",\r\n \"name\": \"af1c1222-ca4f-b128-741b-f54511d64201\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is with troubleshooting an encrypted VM (unlocking)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/be276306-0a08-2531-82cb-9e9907e625f3\",\r\n \"name\": \"be276306-0a08-2531-82cb-9e9907e625f3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My encryption is not working as expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/397fe3e8-5101-d675-e61a-babcc02ff874\",\r\n \"name\": \"397fe3e8-5101-d675-e61a-babcc02ff874\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Azure Disk Encryption not operating correctly / My issue is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/e8bf24a4-487b-b723-7bf0-4271febda89c\",\r\n \"name\": \"e8bf24a4-487b-b723-7bf0-4271febda89c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I am having issues configuring or enabling backup\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/b2e9f884-ad9d-43ac-e01f-be03d1856ee3\",\r\n \"name\": \"b2e9f884-ad9d-43ac-e01f-be03d1856ee3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Backup is failing for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/6fddc208-ceac-8c83-a5a9-4cc00dae14be\",\r\n \"name\": \"6fddc208-ceac-8c83-a5a9-4cc00dae14be\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Restore is failing for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/518d9718-b940-0f5f-8e9d-08fde92a884a\",\r\n \"name\": \"518d9718-b940-0f5f-8e9d-08fde92a884a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Backup is taking longer than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/2abbb2fc-32d4-402c-6d5d-e7a28a7dc95e\",\r\n \"name\": \"2abbb2fc-32d4-402c-6d5d-e7a28a7dc95e\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / Restore is taking longer than expected\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/5dd4e579-22b4-ee21-ee22-6b027061b157\",\r\n \"name\": \"5dd4e579-22b4-ee21-ee22-6b027061b157\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I need guidance configuring backup for my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/90c41c9e-f50e-1bf4-370f-44ffb5a9c1ac\",\r\n \"name\": \"90c41c9e-f50e-1bf4-370f-44ffb5a9c1ac\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / I need guidance with restoring my VM\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/4fc9f99b-00f8-a3ca-cd9e-0c4648ce1d90\",\r\n \"name\": \"4fc9f99b-00f8-a3ca-cd9e-0c4648ce1d90\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Cannot backup or restore my VM (Azure Backup) / My issue is not listed above\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/082217f4-bed0-6b03-12c1-173ed77cb03b\",\r\n \"name\": \"082217f4-bed0-6b03-12c1-173ed77cb03b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Guest OS - Windows specific in-place upgrade issue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/4af02697-cd73-222d-c180-4ff928f26312\",\r\n \"name\": \"4af02697-cd73-222d-c180-4ff928f26312\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Create RDS in Azure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/ad486945-9500-f754-c39f-26ac7db9a17d\",\r\n \"name\": \"ad486945-9500-f754-c39f-26ac7db9a17d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / Create a Windows failover cluster\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/7894368f-87ed-8e4b-df9a-4b2f8fa19e71\",\r\n \"name\": \"7894368f-87ed-8e4b-df9a-4b2f8fa19e71\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Configuration and Setup / My issue or question is specific to Hybrid Use Benefit (HUB)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/5ee984fd-2cd9-73b3-e688-91192a300d42\",\r\n \"name\": \"5ee984fd-2cd9-73b3-e688-91192a300d42\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to delete a virtual machine\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/93ee5e82-133c-842f-57fc-a18e959f7939\",\r\n \"name\": \"93ee5e82-133c-842f-57fc-a18e959f7939\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to delete a Resource Group\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/bca84408-0cce-27ce-6ec0-81d3d0bf61d3\",\r\n \"name\": \"bca84408-0cce-27ce-6ec0-81d3d0bf61d3\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Instance Metadata Service\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/7deec2fa-ffd5-a10b-b26e-1891f495242b\",\r\n \"name\": \"7deec2fa-ffd5-a10b-b26e-1891f495242b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage or use RDS in Azure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/6c8b2a76-0250-e93c-ca70-263729a68761\",\r\n \"name\": \"6c8b2a76-0250-e93c-ca70-263729a68761\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage or use a Windows cluster in Azure\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/cd0edcee-79fe-4f6a-5fa8-7ffe6d9e6a5c\",\r\n \"name\": \"cd0edcee-79fe-4f6a-5fa8-7ffe6d9e6a5c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Azure Metadata Service (Scheduled Events)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/727c53ba-c8ff-acae-381d-7659f403d974\",\r\n \"name\": \"727c53ba-c8ff-acae-381d-7659f403d974\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Unable to share Shared Image Gallery, Image Definition or Image Version\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/2dbfdbd8-7942-817a-4614-851940815182\",\r\n \"name\": \"2dbfdbd8-7942-817a-4614-851940815182\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / Manage an instance of SQL Server\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/588be50a-ee0e-8d07-0135-8dde3ee4bb56\",\r\n \"name\": \"588be50a-ee0e-8d07-0135-8dde3ee4bb56\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Management / My issue or question is specific to Hybrid Use Benefit (HUB) for Windows\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/8a82f77d-c3ab-7b08-d915-776b4ff64ff4\",\r\n \"name\": \"8a82f77d-c3ab-7b08-d915-776b4ff64ff4\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Guidance regarding retirement of Classic IAAS resources (ASM)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/1135e3d0-20e2-aec5-4ef0-55fd3dae2d58\",\r\n \"name\": \"1135e3d0-20e2-aec5-4ef0-55fd3dae2d58\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate IAAS resources from Classic (ASM) to Azure Resource Manager (ARM)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/df1436d9-bc4b-555b-eeda-7b5150c974fa\",\r\n \"name\": \"df1436d9-bc4b-555b-eeda-7b5150c974fa\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Managed disks migration\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/0b726570-b04d-be6e-3fab-0e458a65aa90\",\r\n \"name\": \"0b726570-b04d-be6e-3fab-0e458a65aa90\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between storage accounts\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/e99d3660-70d7-d2f6-29a2-8571fe13516d\",\r\n \"name\": \"e99d3660-70d7-d2f6-29a2-8571fe13516d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between regions\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/579bb510-ba46-26a3-19c7-3ce5e37bf1c5\",\r\n \"name\": \"579bb510-ba46-26a3-19c7-3ce5e37bf1c5\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between subscriptions\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/ddd00ce4-eae5-4bb0-d957-bdafe22ca5d7\",\r\n \"name\": \"ddd00ce4-eae5-4bb0-d957-bdafe22ca5d7\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate resources using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/82d8b2f0-bd7e-d0b7-35a0-2d8072acd0bc\",\r\n \"name\": \"82d8b2f0-bd7e-d0b7-35a0-2d8072acd0bc\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate virtual machines from on-premises to Azure using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/d82aa2c5-a0cf-ae56-a486-220246791212\",\r\n \"name\": \"d82aa2c5-a0cf-ae56-a486-220246791212\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Migrate virtual machines from third-party provider to Azure using Azure Site Recovery\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/aaa925f8-bbc6-997b-e8e2-35d9b6c78b2b\",\r\n \"name\": \"aaa925f8-bbc6-997b-e8e2-35d9b6c78b2b\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Migration and Move / Move resources between resource groups\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/bf5eafd5-a438-6e15-458f-e614453346a2\",\r\n \"name\": \"bf5eafd5-a438-6e15-458f-e614453346a2\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Planned Maintenance (Azure Platform)\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/b20d0fe1-828e-d1b8-2278-1c22a0dcb560\",\r\n \"name\": \"b20d0fe1-828e-d1b8-2278-1c22a0dcb560\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / AzureSafeGuards email received\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/98745d3a-6d4f-30a7-a3c9-8ad002a95560\",\r\n \"name\": \"98745d3a-6d4f-30a7-a3c9-8ad002a95560\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / Guidance for security advisories or vulnerabilities\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/34feb588-ad57-369b-158c-f00e25ec5075\",\r\n \"name\": \"34feb588-ad57-369b-158c-f00e25ec5075\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / Malicious activity suspected or detected on system\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/f91b2161-5abf-a1c9-094b-c1aaf6e688ff\",\r\n \"name\": \"f91b2161-5abf-a1c9-094b-c1aaf6e688ff\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / Malware suspected on system\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/fb1a3450-332d-ac43-2959-e46372dad22c\",\r\n \"name\": \"fb1a3450-332d-ac43-2959-e46372dad22c\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / Root cause investigation or advisory\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/3e0f21a7-21e0-b7a8-1027-a4968f854350\",\r\n \"name\": \"3e0f21a7-21e0-b7a8-1027-a4968f854350\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / System has been compromised\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/e5a42d2e-0eb0-8c85-90af-0e82aaa44dd1\",\r\n \"name\": \"e5a42d2e-0eb0-8c85-90af-0e82aaa44dd1\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / System or accounts have been hacked\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/d015a015-6b30-544e-58df-b15a0fb8087d\",\r\n \"name\": \"d015a015-6b30-544e-58df-b15a0fb8087d\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / Virus or Trojan detected on system\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/60323453-3561-e550-d597-f6f16128db2a\",\r\n \"name\": \"60323453-3561-e550-d597-f6f16128db2a\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / Vulnerability information\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/8bf92fac-4aff-92eb-65f3-b58e4f55a672\",\r\n \"name\": \"8bf92fac-4aff-92eb-65f3-b58e4f55a672\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / Vulnerability Scanner results\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Support/services/6f16735c-b0ae-b275-ad3a-03479cfa1396/problemClassifications/a2e34c4b-a2ba-2cb2-5e46-ee867cff565f\",\r\n \"name\": \"a2e34c4b-a2ba-2cb2-5e46-ee867cff565f\",\r\n \"type\": \"Microsoft.Support/problemClassifications\",\r\n \"properties\": {\r\n \"displayName\": \"Suspected Malware, Safety Bulletins, and Security Bulletins / Website has been defaced\"\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
@@ -571,13 +571,13 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "db6070e5-5e34-4fb6-94d9-179d943c704a"
+ "d52ee8eb-7c7b-4d56-9eec-5a3960f4eb9d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.28516.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Support.MicrosoftSupportClient/1.0.0.0"
@@ -591,7 +591,10 @@
"no-cache"
],
"x-ms-ratelimit-remaining-tenant-reads": [
- "11912"
+ "11990"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -600,19 +603,16 @@
"Kestrel"
],
"x-ms-request-id": [
- "af3aaa29-7ea4-4a65-87ab-de2a12f2534c"
+ "b167b413-d83c-4eaa-9df7-13a8788ebe21"
],
"x-ms-correlation-request-id": [
- "af3aaa29-7ea4-4a65-87ab-de2a12f2534c"
+ "b167b413-d83c-4eaa-9df7-13a8788ebe21"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200315T071144Z:af3aaa29-7ea4-4a65-87ab-de2a12f2534c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "CENTRALUSEUAP:20200327T043555Z:b167b413-d83c-4eaa-9df7-13a8788ebe21"
],
"Date": [
- "Sun, 15 Mar 2020 07:11:44 GMT"
+ "Fri, 27 Mar 2020 04:35:54 GMT"
],
"Content-Length": [
"4527"
@@ -631,16 +631,16 @@
"RequestUri": "/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/providers/Microsoft.Support/checkNameAvailability?api-version=2020-04-01",
"EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZjYjc3ZmEtOGIxNy00ZWFiLTk0OTMtYjY1ZGFjZTk5ODEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3VwcG9ydC9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==",
"RequestMethod": "POST",
- "RequestBody": "{\r\n \"name\": \"PowershellScenarioTest3299\",\r\n \"type\": \"Microsoft.Support/supportTickets\"\r\n}",
+ "RequestBody": "{\r\n \"name\": \"PowershellScenarioTest4113\",\r\n \"type\": \"Microsoft.Support/supportTickets\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f84226ef-0495-44d0-9a5e-9daa6f3d4b44"
+ "aa0afe68-0bd3-4709-ac75-af46ce4f555f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.28516.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Support.MicrosoftSupportClient/1.0.0.0"
@@ -660,7 +660,10 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1199"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -669,19 +672,16 @@
"Kestrel"
],
"x-ms-request-id": [
- "c5636170-57b8-4864-971b-e16a4096bffe"
+ "fe190393-e4d6-4e1b-90ed-d13522e6c121"
],
"x-ms-correlation-request-id": [
- "c5636170-57b8-4864-971b-e16a4096bffe"
+ "fe190393-e4d6-4e1b-90ed-d13522e6c121"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200315T071145Z:c5636170-57b8-4864-971b-e16a4096bffe"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "CENTRALUSEUAP:20200327T043555Z:fe190393-e4d6-4e1b-90ed-d13522e6c121"
],
"Date": [
- "Sun, 15 Mar 2020 07:11:44 GMT"
+ "Fri, 27 Mar 2020 04:35:55 GMT"
],
"Content-Length": [
"22"
@@ -697,22 +697,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resources?$filter=resourceGroup%20eq%20'aaronnewgroup'%20and%20resourceType%20eq%20'Microsoft.Compute/virtualMachines'%20and%20name%20eq%20'Testing'&api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZjYjc3ZmEtOGIxNy00ZWFiLTk0OTMtYjY1ZGFjZTk5ODEzL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlR3JvdXAlMjBlcSUyMCdhYXJvbm5ld2dyb3VwJyUyMGFuZCUyMHJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcyclMjBhbmQlMjBuYW1lJTIwZXElMjAnVGVzdGluZycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resources?$filter=resourceId%20eq%20'/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Compute/virtualMachines/Testing'&api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZjYjc3ZmEtOGIxNy00ZWFiLTk0OTMtYjY1ZGFjZTk5ODEzL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlSWQlMjBlcSUyMCcvc3Vic2NyaXB0aW9ucy83NmNiNzdmYS04YjE3LTRlYWItOTQ5My1iNjVkYWNlOTk4MTMvcmVzb3VyY2VHcm91cHMvYWFyb25uZXdncm91cC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL1Rlc3RpbmcnJmFwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "acbe80bd-50f0-4be4-bd54-176918970844"
+ "28e0368e-0262-4c9c-aaa0-70d4d64004e8"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.28516.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
]
},
"ResponseHeaders": {
@@ -723,16 +723,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11998"
],
"x-ms-request-id": [
- "374f8d72-d8d8-40e7-b8a6-53c3ef4076ca"
+ "23059227-de57-439b-a4ee-157d910f16c8"
],
"x-ms-correlation-request-id": [
- "374f8d72-d8d8-40e7-b8a6-53c3ef4076ca"
+ "23059227-de57-439b-a4ee-157d910f16c8"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200315T071145Z:374f8d72-d8d8-40e7-b8a6-53c3ef4076ca"
+ "CENTRALUSEUAP:20200327T043555Z:23059227-de57-439b-a4ee-157d910f16c8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -741,7 +741,7 @@
"nosniff"
],
"Date": [
- "Sun, 15 Mar 2020 07:11:45 GMT"
+ "Fri, 27 Mar 2020 04:35:55 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -757,19 +757,19 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/providers/Microsoft.Support/supportTickets/PowershellScenarioTest3299?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZjYjc3ZmEtOGIxNy00ZWFiLTk0OTMtYjY1ZGFjZTk5ODEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3VwcG9ydC9zdXBwb3J0VGlja2V0cy9Qb3dlcnNoZWxsU2NlbmFyaW9UZXN0MzI5OT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/providers/Microsoft.Support/supportTickets/PowershellScenarioTest4113?api-version=2020-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZjYjc3ZmEtOGIxNy00ZWFiLTk0OTMtYjY1ZGFjZTk5ODEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3VwcG9ydC9zdXBwb3J0VGlja2V0cy9Qb3dlcnNoZWxsU2NlbmFyaW9UZXN0NDExMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"test ticket from azure powershell scenario test. please ignore and close\",\r\n \"problemClassificationId\": \"/providers/Microsoft.Support/services/722ccc66-c988-d2ac-1ec6-b7aebc857f2d/problemClassifications/d234fe02-6908-ebff-7fa9-995a81be7e6e\",\r\n \"severity\": \"Minimal\",\r\n \"require24X7Response\": true,\r\n \"contactDetails\": {\r\n \"firstName\": \"first\",\r\n \"lastName\": \"last\",\r\n \"preferredContactMethod\": \"email\",\r\n \"primaryEmailAddress\": \"user@contoso.com\",\r\n \"additionalEmailAddresses\": [\r\n \"user2@contoso.com\"\r\n ],\r\n \"phoneNumber\": \"2222\",\r\n \"preferredTimeZone\": \"Pacific Standard Time\",\r\n \"country\": \"USA\",\r\n \"preferredSupportLanguage\": \"en-US\"\r\n },\r\n \"title\": \"test ticket from azure powershell scenario test. please ignore and close\",\r\n \"serviceId\": \"/providers/Microsoft.Support/services/722ccc66-c988-d2ac-1ec6-b7aebc857f2d\",\r\n \"technicalTicketDetails\": {\r\n \"resourceId\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Compute/virtualMachines/Testing\"\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "62c8de2b-738a-4757-a62d-9ae743b97aa9"
+ "afc5ac41-b0c9-4a93-9c8b-e61a3b90a52b"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.28516.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Support.MicrosoftSupportClient/1.0.0.0"
@@ -789,34 +789,34 @@
"no-cache"
],
"Location": [
- "https://centraluseuap.management.azure.com/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/providers/Microsoft.Support/operationResults/7b3763f8-68b6-46f1-9e84-fe25c60ed2af?api-version=2020-04-01"
+ "https://centraluseuap.management.azure.com/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/providers/Microsoft.Support/operationResults/967b5ec8-0bd9-485d-9f45-d0b030a7f626?api-version=2020-04-01"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"Azure-AsyncOperation": [
- "https://centraluseuap.management.azure.com/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/providers/Microsoft.Support/operationsStatus/7b3763f8-68b6-46f1-9e84-fe25c60ed2af?api-version=2020-04-01"
+ "https://centraluseuap.management.azure.com/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/providers/Microsoft.Support/operationsStatus/967b5ec8-0bd9-485d-9f45-d0b030a7f626?api-version=2020-04-01"
],
"Server": [
"Kestrel"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1199"
],
"x-ms-request-id": [
- "f16a1db0-fdff-415b-afda-1432e1e9f3a0"
+ "ce9d9657-bfa8-4415-9f39-195361e12839"
],
"x-ms-correlation-request-id": [
- "f16a1db0-fdff-415b-afda-1432e1e9f3a0"
+ "ce9d9657-bfa8-4415-9f39-195361e12839"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200315T071146Z:f16a1db0-fdff-415b-afda-1432e1e9f3a0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "CENTRALUSEUAP:20200327T043557Z:ce9d9657-bfa8-4415-9f39-195361e12839"
],
"Date": [
- "Sun, 15 Mar 2020 07:11:46 GMT"
+ "Fri, 27 Mar 2020 04:35:57 GMT"
],
"Expires": [
"-1"
@@ -829,13 +829,13 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/providers/Microsoft.Support/operationsStatus/7b3763f8-68b6-46f1-9e84-fe25c60ed2af?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZjYjc3ZmEtOGIxNy00ZWFiLTk0OTMtYjY1ZGFjZTk5ODEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3VwcG9ydC9vcGVyYXRpb25zU3RhdHVzLzdiMzc2M2Y4LTY4YjYtNDZmMS05ZTg0LWZlMjVjNjBlZDJhZj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/providers/Microsoft.Support/operationsStatus/967b5ec8-0bd9-485d-9f45-d0b030a7f626?api-version=2020-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZjYjc3ZmEtOGIxNy00ZWFiLTk0OTMtYjY1ZGFjZTk5ODEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3VwcG9ydC9vcGVyYXRpb25zU3RhdHVzLzk2N2I1ZWM4LTBiZDktNDg1ZC05ZjQ1LWQwYjAzMGE3ZjYyNj9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.28516.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Support.MicrosoftSupportClient/1.0.0.0"
@@ -849,7 +849,10 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11999"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -858,19 +861,16 @@
"Kestrel"
],
"x-ms-request-id": [
- "01f0bb64-6c04-4230-a6e5-ffd186058518"
+ "5056faaf-f036-43bb-b255-579924cd86ad"
],
"x-ms-correlation-request-id": [
- "01f0bb64-6c04-4230-a6e5-ffd186058518"
+ "5056faaf-f036-43bb-b255-579924cd86ad"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200315T071216Z:01f0bb64-6c04-4230-a6e5-ffd186058518"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "CENTRALUSEUAP:20200327T043628Z:5056faaf-f036-43bb-b255-579924cd86ad"
],
"Date": [
- "Sun, 15 Mar 2020 07:12:16 GMT"
+ "Fri, 27 Mar 2020 04:36:28 GMT"
],
"Content-Length": [
"212"
@@ -882,17 +882,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/providers/Microsoft.Support/operationsStatus/7b3763f8-68b6-46f1-9e84-fe25c60ed2af\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"supportTicketCreationWarning\": \"\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/providers/Microsoft.Support/operationsStatus/967b5ec8-0bd9-485d-9f45-d0b030a7f626\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"supportTicketCreationWarning\": \"\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/providers/Microsoft.Support/supportTickets/PowershellScenarioTest3299?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZjYjc3ZmEtOGIxNy00ZWFiLTk0OTMtYjY1ZGFjZTk5ODEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3VwcG9ydC9zdXBwb3J0VGlja2V0cy9Qb3dlcnNoZWxsU2NlbmFyaW9UZXN0MzI5OT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/providers/Microsoft.Support/supportTickets/PowershellScenarioTest4113?api-version=2020-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzZjYjc3ZmEtOGIxNy00ZWFiLTk0OTMtYjY1ZGFjZTk5ODEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3VwcG9ydC9zdXBwb3J0VGlja2V0cy9Qb3dlcnNoZWxsU2NlbmFyaW9UZXN0NDExMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.28516.03",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.Support.MicrosoftSupportClient/1.0.0.0"
@@ -906,7 +906,10 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11998"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -915,19 +918,16 @@
"Kestrel"
],
"x-ms-request-id": [
- "8353719b-1880-4bf1-bb03-b5b494a51beb"
+ "91551041-905e-4785-a29a-6e324dda7b8c"
],
"x-ms-correlation-request-id": [
- "8353719b-1880-4bf1-bb03-b5b494a51beb"
+ "91551041-905e-4785-a29a-6e324dda7b8c"
],
"x-ms-routing-request-id": [
- "CENTRALUSEUAP:20200315T071217Z:8353719b-1880-4bf1-bb03-b5b494a51beb"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "CENTRALUSEUAP:20200327T043629Z:91551041-905e-4785-a29a-6e324dda7b8c"
],
"Date": [
- "Sun, 15 Mar 2020 07:12:16 GMT"
+ "Fri, 27 Mar 2020 04:36:29 GMT"
],
"Content-Length": [
"1605"
@@ -939,13 +939,13 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/providers/Microsoft.Support/supportTickets/PowershellScenarioTest3299\",\r\n \"name\": \"PowershellScenarioTest3299\",\r\n \"type\": \"Microsoft.Support/supportTickets\",\r\n \"properties\": {\r\n \"description\": \"test ticket from azure powershell scenario test. please ignore and close\",\r\n \"problemClassificationId\": \"/providers/Microsoft.Support/services/722ccc66-c988-d2ac-1ec6-b7aebc857f2d/problemClassifications/d234fe02-6908-ebff-7fa9-995a81be7e6e\",\r\n \"problemClassificationDisplayName\": \"Configuration and Setup / NetScaler\",\r\n \"severity\": \"Minimal\",\r\n \"require24X7Response\": true,\r\n \"enrollmentId\": \"\",\r\n \"contactDetails\": {\r\n \"firstName\": \"first\",\r\n \"lastName\": \"last\",\r\n \"preferredContactMethod\": \"Email\",\r\n \"primaryEmailAddress\": \"user@contoso.com\",\r\n \"additionalEmailAddresses\": [\r\n \"user2@contoso.com\"\r\n ],\r\n \"phoneNumber\": \"2222\",\r\n \"preferredTimeZone\": \"Pacific Standard Time\",\r\n \"country\": \"USA\",\r\n \"preferredSupportLanguage\": \"en-US\"\r\n },\r\n \"technicalTicketDetails\": {\r\n \"resourceId\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Compute/virtualMachines/Testing\"\r\n },\r\n \"serviceLevelAgreement\": {\r\n \"startTime\": \"2020-03-16T13:00:00Z\",\r\n \"expirationTime\": \"2020-03-16T17:00:00Z\",\r\n \"slaMinutes\": 240\r\n },\r\n \"supportEngineer\": {},\r\n \"supportPlanType\": \"Premier\",\r\n \"supportTicketId\": \"120031521000086\",\r\n \"title\": \"test ticket from azure powershell scenario test. please ignore and close\",\r\n \"serviceId\": \"/providers/Microsoft.Support/services/722ccc66-c988-d2ac-1ec6-b7aebc857f2d\",\r\n \"serviceDisplayName\": \"Virtual Machine running Citrix\",\r\n \"status\": \"Open\",\r\n \"createdDate\": \"2020-03-15T07:11:52Z\",\r\n \"modifiedDate\": \"2020-03-15T07:11:54Z\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/providers/Microsoft.Support/supportTickets/PowershellScenarioTest4113\",\r\n \"name\": \"PowershellScenarioTest4113\",\r\n \"type\": \"Microsoft.Support/supportTickets\",\r\n \"properties\": {\r\n \"description\": \"test ticket from azure powershell scenario test. please ignore and close\",\r\n \"problemClassificationId\": \"/providers/Microsoft.Support/services/722ccc66-c988-d2ac-1ec6-b7aebc857f2d/problemClassifications/d234fe02-6908-ebff-7fa9-995a81be7e6e\",\r\n \"problemClassificationDisplayName\": \"Configuration and Setup / NetScaler\",\r\n \"severity\": \"Minimal\",\r\n \"require24X7Response\": true,\r\n \"enrollmentId\": \"\",\r\n \"contactDetails\": {\r\n \"firstName\": \"first\",\r\n \"lastName\": \"last\",\r\n \"preferredContactMethod\": \"Email\",\r\n \"primaryEmailAddress\": \"user@contoso.com\",\r\n \"additionalEmailAddresses\": [\r\n \"user2@contoso.com\"\r\n ],\r\n \"phoneNumber\": \"2222\",\r\n \"preferredTimeZone\": \"Pacific Standard Time\",\r\n \"country\": \"USA\",\r\n \"preferredSupportLanguage\": \"en-US\"\r\n },\r\n \"technicalTicketDetails\": {\r\n \"resourceId\": \"/subscriptions/76cb77fa-8b17-4eab-9493-b65dace99813/resourceGroups/aaronnewgroup/providers/Microsoft.Compute/virtualMachines/Testing\"\r\n },\r\n \"serviceLevelAgreement\": {\r\n \"startTime\": \"2020-03-27T13:00:00Z\",\r\n \"expirationTime\": \"2020-03-27T17:00:00Z\",\r\n \"slaMinutes\": 240\r\n },\r\n \"supportEngineer\": {},\r\n \"supportPlanType\": \"Premier\",\r\n \"supportTicketId\": \"120032721000240\",\r\n \"title\": \"test ticket from azure powershell scenario test. please ignore and close\",\r\n \"serviceId\": \"/providers/Microsoft.Support/services/722ccc66-c988-d2ac-1ec6-b7aebc857f2d\",\r\n \"serviceDisplayName\": \"Virtual Machine running Citrix\",\r\n \"status\": \"Open\",\r\n \"createdDate\": \"2020-03-27T04:36:04Z\",\r\n \"modifiedDate\": \"2020-03-27T04:36:07Z\"\r\n }\r\n}",
"StatusCode": 200
}
],
"Names": {
"": [
- "PowershellScenarioTest3299"
+ "PowershellScenarioTest4113"
]
},
"Variables": {
diff --git a/src/Support/Support/Az.Support.psd1 b/src/Support/Support/Az.Support.psd1
index 6417c22af525..0a37363e3ec2 100644
--- a/src/Support/Support/Az.Support.psd1
+++ b/src/Support/Support/Az.Support.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
-# Generated on: 2/13/2020
+# Generated on: 3/24/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '0.1.0'
+ModuleVersion = '1.0.0'
# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'
@@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.6.4'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Support.dll'
@@ -110,15 +110,7 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Preview release of ''Az.Support'' module. Added following cmdlets for creation and management of support tickets.
- - Get-AzSupportService
- - Get-AzSupportProblemClassification
- - New-AzSupportContactProfileObject
- - New-AzSupportTicket
- - Get-AzSupportTicket
- - Update-AzSupportTicket
- - New-AzSupportTicketCommunication
- - Get-AzSupportTicketCommunication'
+ ReleaseNotes = '* General availability of ''Az.Support'' module'
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/Support/Support/ChangeLog.md b/src/Support/Support/ChangeLog.md
index 042053dda74c..56f9adb57ef0 100644
--- a/src/Support/Support/ChangeLog.md
+++ b/src/Support/Support/ChangeLog.md
@@ -20,6 +20,9 @@
## Upcoming Release
+## Version 1.0.0
+* General availability of `Az.Support` module
+
## Version 0.1.0
* Preview release of `Az.Support` module. Added following cmdlets for creation and management of support tickets.
- Get-AzSupportService
diff --git a/src/Support/Support/Properties/AssemblyInfo.cs b/src/Support/Support/Properties/AssemblyInfo.cs
index 5b413ae1bc11..a83d1b9efa61 100644
--- a/src/Support/Support/Properties/AssemblyInfo.cs
+++ b/src/Support/Support/Properties/AssemblyInfo.cs
@@ -25,5 +25,5 @@
[assembly: ComVisible(false)]
[assembly: CLSCompliant(false)]
[assembly: Guid("22d73af7-38c2-4bf6-b56f-4dc9db05d97a")]
-[assembly: AssemblyVersion("0.1.0")]
-[assembly: AssemblyFileVersion("0.1.0")]
+[assembly: AssemblyVersion("1.0.0")]
+[assembly: AssemblyFileVersion("1.0.0")]
diff --git a/src/Support/Support/SupportTickets/NewAzSupportTicket.cs b/src/Support/Support/SupportTickets/NewAzSupportTicket.cs
index 7a5ac9196436..8ba88cf2b73b 100644
--- a/src/Support/Support/SupportTickets/NewAzSupportTicket.cs
+++ b/src/Support/Support/SupportTickets/NewAzSupportTicket.cs
@@ -186,18 +186,6 @@ public override void ExecuteCmdlet()
throw new PSArgumentException(string.Format("TechnicalResourceId {0} does not belong to subscription {1}.", this.TechnicalTicketResourceId, this.SupportClient.SubscriptionId));
}
- var resourceClient = AzureSession.Instance.ClientFactory.CreateArmClient(
- DefaultProfile.DefaultContext,
- AzureEnvironment.Endpoint.ResourceManager);
-
- var oDataQuery = new ODataQuery($"resourceGroup eq '{technicalResourceId.ResourceGroupName}' and resourceType eq '{technicalResourceId.ResourceType}' and name eq '{technicalResourceId.ResourceName}'");
-
- var result = resourceClient.Resources.List(oDataQuery);
-
- if (result.Count() != 1)
- {
- throw new Exception(string.Format("TechnicalResourceId {0} was not found in subscription {1}.", this.TechnicalTicketResourceId, this.SupportClient.SubscriptionId));
- }
}
var customHeaders = new Dictionary>();
diff --git a/src/TrafficManager/TrafficManager/Az.TrafficManager.psd1 b/src/TrafficManager/TrafficManager/Az.TrafficManager.psd1
index d043d3f6a6d7..62d55abd8857 100644
--- a/src/TrafficManager/TrafficManager/Az.TrafficManager.psd1
+++ b/src/TrafficManager/TrafficManager/Az.TrafficManager.psd1
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.TrafficManager.dll'
diff --git a/src/Websites/Websites.Test/ScenarioTests/RoutingRuleTests.cs b/src/Websites/Websites.Test/ScenarioTests/RoutingRuleTests.cs
new file mode 100644
index 000000000000..5a5c543bb360
--- /dev/null
+++ b/src/Websites/Websites.Test/ScenarioTests/RoutingRuleTests.cs
@@ -0,0 +1,61 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+
+using Microsoft.Azure.ServiceManagement.Common.Models;
+using Microsoft.WindowsAzure.Commands.ScenarioTest;
+using Microsoft.WindowsAzure.Commands.Test.Utilities.Common;
+using Xunit;
+using Xunit.Abstractions;
+
+namespace Microsoft.Azure.Commands.Websites.Test.ScenarioTests
+{
+ public class RoutingRuleTests: RMTestBase
+ {
+ public XunitTracingInterceptor _logger;
+ public RoutingRuleTests(ITestOutputHelper output)
+ {
+ _logger = new XunitTracingInterceptor(output);
+ XunitTracingInterceptor.AddToContext(_logger);
+ }
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void TestAddWebAppTrafficRoutingRule()
+ {
+ WebsitesController.NewInstance.RunPsTest(_logger, "Test-AddWebAppTrafficRoutingRule");
+ }
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void TestRemoveWebAppTrafficRoutingRule()
+ {
+ WebsitesController.NewInstance.RunPsTest(_logger, "Test-RemoveWebAppTrafficRoutingRule");
+ }
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void TestGetWebAppTrafficRoutingRule()
+ {
+ WebsitesController.NewInstance.RunPsTest(_logger, "Test-GetWebAppTrafficRoutingRule");
+ }
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void TestUpdateWebAppTrafficRoutingRule()
+ {
+ WebsitesController.NewInstance.RunPsTest(_logger, "Test-UpdateWebAppTrafficRoutingRule");
+ }
+ }
+}
diff --git a/src/Websites/Websites.Test/ScenarioTests/RoutingRuleTests.ps1 b/src/Websites/Websites.Test/ScenarioTests/RoutingRuleTests.ps1
new file mode 100644
index 000000000000..78d6fe73d224
--- /dev/null
+++ b/src/Websites/Websites.Test/ScenarioTests/RoutingRuleTests.ps1
@@ -0,0 +1,246 @@
+# ----------------------------------------------------------------------------------
+#
+# Copyright Microsoft Corporation
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+# http://www.apache.org/licenses/LICENSE-2.0
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+# ----------------------------------------------------------------------------------
+
+<#
+.SYNOPSIS
+Tests creating a new Routing Rule.
+#>
+function Test-AddWebAppTrafficRoutingRule
+{
+ # Setup
+ $ReroutePercentage="15"
+ $rgname = Get-ResourceGroupName
+ $appname = Get-WebsiteName
+ $location = Get-Location
+ $slotName = "staging"
+ $planName = Get-WebHostPlanName
+ $tier = "Standard"
+ $resourceType = "Microsoft.Web/sites"
+ try
+ {
+ #Setup
+ New-AzResourceGroup -Name $rgname -Location $location
+ $serverFarm = New-AzAppServicePlan -ResourceGroupName $rgname -Name $planName -Location $location -Tier $tier
+
+ # Create new web app
+ $actual = New-AzWebApp -ResourceGroupName $rgname -Name $appname -Location $location -AppServicePlan $planName
+
+ # Assert
+ Assert-AreEqual $appname $actual.Name
+ Assert-AreEqual $serverFarm.Id $actual.ServerFarmId
+
+ # Create deployment slot
+ $job = New-AzWebAppSlot -ResourceGroupName $rgname -Name $appname -Slot $slotName -AsJob
+ $job | Wait-Job
+ $slot = $job | Receive-Job
+
+ $appWithSlotName = "$appname/$slotName"
+
+ # Assert
+ Assert-AreEqual $appWithSlotName $slot.Name
+ Assert-AreEqual $serverFarm.Id $slot.ServerFarmId
+
+ #Add Routing Rule for $slot
+ $rule=Add-AzWebAppTrafficRouting -ResourceGroupName $rgname -WebAppName $appname -RoutingRule @{ActionHostName=$slot.DefaultHostName;ReroutePercentage=$ReroutePercentage;Name=$slotName}
+
+ # Assert
+ Assert-AreEqual $ReroutePercentage $rule.ReroutePercentage
+ Assert-AreEqual $slot.DefaultHostName $rule.ActionHostName
+ Assert-AreEqual $slotName $rule.Name
+ }
+ finally
+ {
+ # Cleanup
+ Remove-AzResourceGroup -Name $rgname -Force
+ }
+}
+
+<#
+.SYNOPSIS
+Tests Removing the given Routing Rule.
+#>
+function Test-RemoveWebAppTrafficRoutingRule
+{
+ # Setup
+ $ReroutePercentage="15"
+ $rgname = Get-ResourceGroupName
+ $appname = Get-WebsiteName
+ $location = Get-Location
+ $slotName = "staging"
+ $planName = Get-WebHostPlanName
+ $tier = "Standard"
+ $resourceType = "Microsoft.Web/sites"
+ try
+ {
+ #Setup
+ New-AzResourceGroup -Name $rgname -Location $location
+ $serverFarm = New-AzAppServicePlan -ResourceGroupName $rgname -Name $planName -Location $location -Tier $tier
+
+ # Create new web app
+ $actual = New-AzWebApp -ResourceGroupName $rgname -Name $appname -Location $location -AppServicePlan $planName
+
+ # Assert
+ Assert-AreEqual $appname $actual.Name
+ Assert-AreEqual $serverFarm.Id $actual.ServerFarmId
+
+ # Create deployment slot
+ $job = New-AzWebAppSlot -ResourceGroupName $rgname -Name $appname -Slot $slotName -AsJob
+ $job | Wait-Job
+ $slot = $job | Receive-Job
+
+ $appWithSlotName = "$appname/$slotName"
+
+ # Assert
+ Assert-AreEqual $appWithSlotName $slot.Name
+ Assert-AreEqual $serverFarm.Id $slot.ServerFarmId
+
+ #Add Routing Rule for $slot
+ $rule=Add-AzWebAppTrafficRouting -ResourceGroupName $rgname -WebAppName $appname -RoutingRule @{ActionHostName=$slot.DefaultHostName;ReroutePercentage=$ReroutePercentage;Name=$slotName}
+
+ # Assert
+ Assert-AreEqual $ReroutePercentage $rule.ReroutePercentage
+ Assert-AreEqual $slot.DefaultHostName $rule.ActionHostName
+ Assert-AreEqual $slotName $rule.Name
+
+ #remove
+ $rule=Remove-AzWebAppTrafficRouting -ResourceGroupName $rgname -WebAppName $appname -RuleName $rule.Name
+
+ #Assert
+ Assert-Null -eq $rule
+ }
+ finally
+ {
+ # Cleanup
+ Remove-AzResourceGroup -Name $rgname -Force
+ }
+}
+
+<#
+.SYNOPSIS
+Tests Returns the given Routing Rule.
+#>
+function Test-GetWebAppTrafficRoutingRule
+{
+ # Setup
+ $ReroutePercentage="15"
+ $rgname = Get-ResourceGroupName
+ $appname = Get-WebsiteName
+ $location = Get-Location
+ $slotName = "staging"
+ $planName = Get-WebHostPlanName
+ $tier = "Standard"
+ $resourceType = "Microsoft.Web/sites"
+ try
+ {
+ #Setup
+ New-AzResourceGroup -Name $rgname -Location $location
+ $serverFarm = New-AzAppServicePlan -ResourceGroupName $rgname -Name $planName -Location $location -Tier $tier
+
+ # Create new web app
+ $actual = New-AzWebApp -ResourceGroupName $rgname -Name $appname -Location $location -AppServicePlan $planName
+
+ # Assert
+ Assert-AreEqual $appname $actual.Name
+ Assert-AreEqual $serverFarm.Id $actual.ServerFarmId
+
+ # Create deployment slot
+ $job = New-AzWebAppSlot -ResourceGroupName $rgname -Name $appname -Slot $slotName -AsJob
+ $job | Wait-Job
+ $slot = $job | Receive-Job
+
+ $appWithSlotName = "$appname/$slotName"
+
+ # Assert
+ Assert-AreEqual $appWithSlotName $slot.Name
+ Assert-AreEqual $serverFarm.Id $slot.ServerFarmId
+
+ #Add Routing Rule for $slot
+ Add-AzWebAppTrafficRouting -ResourceGroupName $rgname -WebAppName $appname -RoutingRule @{ActionHostName=$slot.DefaultHostName;ReroutePercentage=$ReroutePercentage;Name=$slotName}
+ #Get
+ $rule= Get-AzWebAppTrafficRouting -ResourceGroupName $rgname -WebAppName $appname -RuleName $slotName
+
+ # Assert
+ Assert-AreEqual $ReroutePercentage $rule.ReroutePercentage
+ Assert-AreEqual $slot.DefaultHostName $rule.ActionHostName
+ Assert-AreEqual $slotName $rule.Name
+ }
+ finally
+ {
+ # Cleanup
+ Remove-AzResourceGroup -Name $rgname -Force
+ }
+}
+
+<#
+.SYNOPSIS
+Tests Updates the given Routing Rule.
+#>
+function Test-UpdateWebAppTrafficRoutingRule
+{
+ # Setup
+ $ReroutePercentage="15"
+ $updatedReroutePercentage="20"
+ $rgname = Get-ResourceGroupName
+ $appname = Get-WebsiteName
+ $location = Get-Location
+ $slotName = "staging"
+ $planName = Get-WebHostPlanName
+ $tier = "Standard"
+ $resourceType = "Microsoft.Web/sites"
+ try
+ {
+ #Setup
+ New-AzResourceGroup -Name $rgname -Location $location
+ $serverFarm = New-AzAppServicePlan -ResourceGroupName $rgname -Name $planName -Location $location -Tier $tier
+
+ # Create new web app
+ $actual = New-AzWebApp -ResourceGroupName $rgname -Name $appname -Location $location -AppServicePlan $planName
+
+ # Assert
+ Assert-AreEqual $appname $actual.Name
+ Assert-AreEqual $serverFarm.Id $actual.ServerFarmId
+
+ # Create deployment slot
+ $job = New-AzWebAppSlot -ResourceGroupName $rgname -Name $appname -Slot $slotName -AsJob
+ $job | Wait-Job
+ $slot = $job | Receive-Job
+
+ $appWithSlotName = "$appname/$slotName"
+
+ # Assert
+ Assert-AreEqual $appWithSlotName $slot.Name
+ Assert-AreEqual $serverFarm.Id $slot.ServerFarmId
+
+ #Add Routing Rule for $slot
+ $rule=Add-AzWebAppTrafficRouting -ResourceGroupName $rgname -WebAppName $appname -RoutingRule @{ActionHostName=$slot.DefaultHostName;ReroutePercentage=$ReroutePercentage;Name=$slotName}
+
+ # Assert
+ Assert-AreEqual $ReroutePercentage $rule.ReroutePercentage
+ Assert-AreEqual $slot.DefaultHostName $rule.ActionHostName
+ Assert-AreEqual $slotName $rule.Name
+
+ #Update Routing Rule for $slot
+ $rule=Update-AzWebAppTrafficRouting -ResourceGroupName $rgname -WebAppName $appname -RoutingRule @{ActionHostName=$slot.DefaultHostName;ReroutePercentage=$updatedReroutePercentage;Name=$slotName}
+
+ # Assert
+ Assert-AreEqual $updatedReroutePercentage $rule.ReroutePercentage
+ Assert-AreEqual $slot.DefaultHostName $rule.ActionHostName
+ Assert-AreEqual $slotName $rule.Name
+ }
+ finally
+ {
+ # Cleanup
+ Remove-AzResourceGroup -Name $rgname -Force
+ }
+}
\ No newline at end of file
diff --git a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.RoutingRuleTests/TestAddWebAppTrafficRoutingRule.json b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.RoutingRuleTests/TestAddWebAppTrafficRoutingRule.json
new file mode 100644
index 000000000000..8a6dd49b79c4
--- /dev/null
+++ b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.RoutingRuleTests/TestAddWebAppTrafficRoutingRule.json
@@ -0,0 +1,3068 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Byb3ZpZGVycy8/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "eb65c42a-60ea-4605-b219-f8eb5ebe490a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-request-id": [
+ "443e0049-4d50-41a8-a600-dcc15341da48"
+ ],
+ "x-ms-correlation-request-id": [
+ "443e0049-4d50-41a8-a600-dcc15341da48"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110518Z:443e0049-4d50-41a8-a600-dcc15341da48"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:05:18 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "727422"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ResourceHealth\",\r\n \"namespace\": \"Microsoft.ResourceHealth\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8bdebf23-c0fe-4187-a378-717ad86f6a53\",\r\n \"roleDefinitionId\": \"cc026344-c8b1-4561-83ba-59eba84b27cc\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilityStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-rc\",\r\n \"2018-08-01-preview\",\r\n \"2018-07-01-rc\",\r\n \"2018-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"childAvailabilityStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-06-beta\",\r\n \"2018-08-01-rc\",\r\n \"2018-08-01-preview\",\r\n \"2018-07-01-rc\",\r\n \"2018-07-01-preview\",\r\n \"2018-07-01-beta\",\r\n \"2017-07-01-rc\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01-beta\",\r\n \"2015-01-01-rc\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"childResources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-06-beta\",\r\n \"2018-08-01-rc\",\r\n \"2018-08-01-preview\",\r\n \"2018-07-01-rc\",\r\n \"2018-07-01-preview\",\r\n \"2018-07-01-beta\",\r\n \"2017-07-01-rc\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01-beta\",\r\n \"2015-01-01-rc\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"events\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-rc\",\r\n \"2018-07-01-preview\",\r\n \"2018-07-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"metadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-rc\",\r\n \"2018-07-01-preview\",\r\n \"2018-07-01-beta\",\r\n \"2018-07-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"emergingissues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-06-beta\",\r\n \"2018-07-01-rc\",\r\n \"2018-07-01-preview\",\r\n \"2018-07-01-beta\",\r\n \"2018-07-01-alpha\",\r\n \"2018-07-01\",\r\n \"2017-07-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifications\",\r\n \"locations\": [\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"ea2f600a-4980-45b7-89bf-d34da487bda1\",\r\n \"roleDefinitionId\": \"54d7f2e3-5040-48a7-ae90-eebf629cfa0b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\",\r\n \"2018-12-01-preview\",\r\n \"2018-09-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-01-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-01-01-preview\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"denyAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\r\n \"2018-07-01-preview\",\r\n \"2018-07-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-09-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-01-01\",\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"policySetDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-01-01\",\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-01-01\",\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity, SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"dataAliases\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"elevateAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"findOrphanRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"roleAssignmentsUsageMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.MachineLearningServices\",\r\n \"namespace\": \"Microsoft.MachineLearningServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n {\r\n \"applicationId\": \"18a66f5f-dbdf-4c17-9dd7-1634712a9cbe\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n {\r\n \"applicationId\": \"9fcb3732-5f52-4135-8c08-9d4bbaf203ea\",\r\n \"roleDefinitionId\": \"703B89C7-CE2C-431B-BDD8-FA34E39AF696\",\r\n \"managedByRoleDefinitionId\": \"90B8E153-EBFF-4073-A95F-4DAD56B14C78\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"Canada Central\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/computes\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/eventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/computeOperationsStatus\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/workspaceOperationsStatus\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmsizes\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/updatequotas\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.CertificateRegistration\",\r\n \"namespace\": \"Microsoft.CertificateRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3c21649-0979-4721-ac85-b0216b2cf413\",\r\n \"roleDefinitionId\": \"933fba7e-2ed3-4da8-973d-8bd8298a9b40\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"certificateOrders\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"certificateOrders/certificates\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateCertificateRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validate\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"isusernameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/getNetworkPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"France Central\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/networkConfig\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/networkConfig\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2015-01-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2015-01-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"West India\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-02-01\",\r\n \"2019-01-01\",\r\n \"2018-11-01\",\r\n \"2018-08-01\",\r\n \"2018-05-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-02-01\",\r\n \"2018-11-01\",\r\n \"2018-08-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-02-01\",\r\n \"2018-11-01\",\r\n \"2018-08-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedSites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedSites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-11-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"customApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/listWsdlInterfaces\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extractApiDefinitionFromWsdl\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runtimes\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/apiOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connectionGateways\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/connectionGatewayInstallations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingMeters\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"verifyHostingEnvironmentVnet\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/eventGridFilters\",\r\n \"locations\": [\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/eventGridFilters\",\r\n \"locations\": [\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2015-01-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/eventGridFilters\",\r\n \"locations\": [\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2015-01-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ManagedIdentity\",\r\n \"namespace\": \"Microsoft.ManagedIdentity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Identities\",\r\n \"locations\": [\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-30\",\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"userAssignedIdentities\",\r\n \"locations\": [\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-30\",\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-30\",\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6bccf540-eb86-4037-af03-7fa058c2db75\",\r\n \"roleDefinitionId\": \"89dcede2-9219-403a-9723-d3c6473f9472\"\r\n },\r\n {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n {\r\n \"applicationId\": \"035f9e1d-4f00-4419-bf50-bf2d87eb4878\",\r\n \"roleDefinitionId\": \"323795fe-ba3d-4f5a-ad42-afb4e1ea9485\"\r\n },\r\n {\r\n \"applicationId\": \"f5c26e74-f226-4ae8-85f0-b4af0080ac9e\",\r\n \"roleDefinitionId\": \"529d7ae6-e892-4d43-809d-8547aeb90643\"\r\n },\r\n {\r\n \"applicationId\": \"b503eb83-1222-4dcc-b116-b98ed5216e05\",\r\n \"roleDefinitionId\": \"68699c37-c689-44d4-9248-494b782d46ae\"\r\n },\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n },\r\n {\r\n \"applicationId\": \"3af5a1e8-2459-45cb-8683-bcd6cccbcc13\",\r\n \"roleDefinitionId\": \"b1309299-720d-4159-9897-6158a61aee41\"\r\n },\r\n {\r\n \"applicationId\": \"6a0a243c-0886-468a-a4c2-eff52c7445da\",\r\n \"roleDefinitionId\": \"d2eda64b-c5e6-4930-8642-2d80ecd7c2e2\"\r\n },\r\n {\r\n \"applicationId\": \"707be275-6b9d-4ee7-88f9-c0c2bd646e0f\",\r\n \"roleDefinitionId\": \"fa027d90-6ba0-4c33-9a54-59edaf2327e7\"\r\n },\r\n {\r\n \"applicationId\": \"461e8683-5575-4561-ac7f-899cc907d62a\",\r\n \"roleDefinitionId\": \"68699c37-c689-44d4-9248-494b782d46ae\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/query\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Australia Southeast\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/events\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"scheduledqueryrules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-16\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/pricingPlans\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"migrateToNewPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rollbackToLegacyPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listMigrationdate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logprofiles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"migratealertrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricalerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2016-09-01-preview\",\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vmInsightsOnboardingStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-27-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2015-07-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"extendedDiagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"logDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"eventCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"metricbatch\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"actiongroups\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2018-09-01\",\r\n \"2018-03-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"activityLogAlerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"baseline\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"metricbaselines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"calculatebaseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"workbooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"South Africa North\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-17-preview\",\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"workbooktemplates\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"South Africa North\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"myWorkbooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-17-preview\",\r\n \"2018-06-15-preview\",\r\n \"2018-06-01-preview\",\r\n \"2016-06-15-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"transactions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"topology\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"privateLinkScopes\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateLinkScopes/privateEndpointConnections\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateLinkScopes/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateLinkScopes/scopedResources\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateLinkScopeOperationStatuses\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-11-15\",\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domainNames/internalLoadBalancers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/serviceCertificates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"moveSubscriptionResources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateSubscriptionMoveAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystems\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystemFamilies\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/remoteVirtualNetworkPeeringProxies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections/peerings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"osImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"osPlatformImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n },\r\n {\r\n \"applicationId\": \"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"372140e0-b3b7-4226-8ef9-d57986796201\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab\",\r\n \"roleDefinitionId\": \"6efa92ca-56b6-40af-a468-5e3d2b5232f0\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"proximityPlacementGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/artifactPublishers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diskEncryptionSets\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations/vsmoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UK West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"France South\",\r\n \"West US 2\",\r\n \"Japan West\",\r\n \"France Central\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n {\r\n \"applicationId\": \"737d58c1-397a-46e7-9d12-7d8c830883c2\",\r\n \"roleDefinitionId\": \"716bb53a-0390-4428-bf41-b1bedde7d751\"\r\n },\r\n {\r\n \"applicationId\": \"918d0db8-4a38-4938-93c1-9313bdfe0272\",\r\n \"roleDefinitionId\": \"dcd2d2c9-3f80-4d72-95a8-2593111b4b12\"\r\n },\r\n {\r\n \"applicationId\": \"d2fa1650-4805-4a83-bcb9-cf41fe63539c\",\r\n \"roleDefinitionId\": \"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2\"\r\n },\r\n {\r\n \"applicationId\": \"a4c95b9e-3994-40cc-8953-5dc66d48348d\",\r\n \"roleDefinitionId\": \"dc88c655-90fa-48d9-8d51-003cc8738508\"\r\n },\r\n {\r\n \"applicationId\": \"62c559cd-db0c-4da0-bab2-972528c65d42\",\r\n \"roleDefinitionId\": \"437b639a-6d74-491d-959f-d172e8c5c1fc\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"registries/scopeMaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/tokens\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/generateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/privateEndpointConnections\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/privateLinkResources\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/importImage\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/scheduleRun\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/runs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/taskRuns\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/runs/listLogSasUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/runs/cancel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/tasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"registries/tasks/listDetails\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/getBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/queueBuild\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/getLogLink\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/cancel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/listSourceRepositoryProperties\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps/listBuildArguments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/replications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/ping\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/getCallbackConfig\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/listEvents\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setupAuth\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/authorize\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listUsages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/updatePolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/eventGridFilters\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n {\r\n \"applicationId\": \"6201d19e-14fb-4472-a2d6-5634a5c97568\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/networkrulesets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableClusterRegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n },\r\n {\r\n \"applicationId\": \"589d5083-6f11-4d30-a62a-a4b316a14abf\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/eventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n },\r\n {\r\n \"applicationId\": \"19947cfd-0303-466c-ac3c-fcc19a7a1570\",\r\n \"roleDefinitionId\": \"d813ab6c-bfb7-413e-9462-005b21f0ce09\"\r\n },\r\n {\r\n \"applicationId\": \"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd\",\r\n \"roleDefinitionId\": \"8141843c-c51c-4c1e-a5bf-0d351594b86c\"\r\n },\r\n {\r\n \"applicationId\": \"328fd23b-de6e-462c-9433-e207470a5727\",\r\n \"roleDefinitionId\": \"79e29e06-4056-41e5-a6b2-959f1f47747e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"privateEndpointRedirectMaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceEndpointPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkIntentPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPPrefixes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ddosCustomPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/flowLogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/pingMeshes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serviceTags\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availablePrivateEndpointTypes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableServiceAliases\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkPrivateLinkServiceVisibility\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/autoApprovedPrivateLinkServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getDnsResourceReference\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"internalNotify\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/virtualNetworkLinks\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableServerVariables\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableRequestHeaders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableResponseHeaders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualWans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnSites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnServerConfigurations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"p2sVpnGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"firewallPolicies\",\r\n \"locations\": [\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ipGroups\",\r\n \"locations\": [\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/nfvOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/nfvOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"azureFirewalls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewallFqdnTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkTaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"privateLinkServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"networkProfiles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFrontdoorNameAvailability\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontdoors\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-03-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallManagedRuleSets\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkExperimentProfiles\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/bareMetalTenants\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"bastionHosts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualRouters\",\r\n \"locations\": [\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80a10ef9-8168-493d-abf9-3297c4ef6e3c\",\r\n \"roleDefinitionId\": \"2b7763f7-bbe2-4e19-befe-28c79f1cf7f7\"\r\n },\r\n {\r\n \"applicationId\": \"eb070ea5-bd17-41f1-ad68-5851f6e71774\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/networkrulesets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"premiumMessagingRegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventgridfilters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ServiceFabric\",\r\n \"namespace\": \"Microsoft.ServiceFabric\",\r\n \"authorization\": {\r\n \"applicationId\": \"74cb6831-0dbb-4be1-8206-fd4df301cdc2\",\r\n \"roleDefinitionId\": \"e55cc65f-6903-4917-b4ef-f8d4640b57f5\",\r\n \"managedByRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/clusterVersions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/environments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ServiceFabricMesh\",\r\n \"namespace\": \"Microsoft.ServiceFabricMesh\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d10de03d-5ba3-497a-90e6-7ff8c9736059\",\r\n \"roleDefinitionId\": \"BC13595A-E262-4621-929E-56FF90E6BF18\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"networks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"volumes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"secrets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/applicationOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/networkOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/volumeOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/gatewayOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/secretOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e4ab13ed-33cb-41b4-9140-6e264582cf85\",\r\n \"roleDefinitionId\": \"ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec\"\r\n },\r\n {\r\n \"applicationId\": \"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9\",\r\n \"roleDefinitionId\": \"45e8abf8-0ec4-44f3-9c37-cff4f7779302\"\r\n },\r\n {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n {\r\n \"applicationId\": \"76c7f279-7959-468f-8943-3954880e0d8c\",\r\n \"roleDefinitionId\": \"7f7513a8-73f9-4c5f-97a2-c41f0ea783ef\"\r\n },\r\n {\r\n \"applicationId\": \"022907d3-0f1b-48f7-badc-1ba6abab6d66\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/encryptionProtector\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceEncryptionProtectorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceEncryptionProtectorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/communicationLinks\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administrators\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAdministratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAdministratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/geoBackupPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/backupLongTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/backupShortTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/automaticTuning\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/automaticTuning\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/transparentDataEncryption\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/extendedAuditingSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-09-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAccounts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAgents\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAgents/jobs\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAgents/jobs/steps\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAgents/jobs/executions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/disasterRecoveryConfiguration\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/dnsAliases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/failoverGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/aggregatedDatabaseMetrics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries/queryText\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPools/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/extensions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPoolEstimates\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditRecords\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentScans\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/workloadGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessment\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/recommendedSensitivityLabels\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups/syncMembers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/syncAgents\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"instancePools\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/instancePoolOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instancePoolAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/administrators\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/recoverableDatabases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/metrics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/metricDefinitions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/backupLongTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionManagedInstances\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionManagedInstanceBackups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceLongTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceLongTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionManagedInstanceBackupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionManagedInstanceBackupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseCompleteRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseCompleteRestoreOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualClusters\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualClusterAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualClusterOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncMemberOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncDatabaseIds\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedShortTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedShortTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/notifyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Subscription\",\r\n \"namespace\": \"Microsoft.Subscription\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3335adb-5ca0-40dc-b8d3-bedc094e523b\"\r\n },\r\n {\r\n \"applicationId\": \"5da7367f-09c8-493e-8fd4-638089cddec3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SubscriptionDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SubscriptionOperations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CreateSubscription\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cancel\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rename\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enable\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Advisor\",\r\n \"namespace\": \"Microsoft.Advisor\",\r\n \"authorization\": {\r\n \"applicationId\": \"c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7\",\r\n \"roleDefinitionId\": \"8a63b04c-3731-409b-9765-f1175c047872\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"suppressions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"configurations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2017-04-19\",\r\n \"2017-03-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"generateRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.PolicyInsights\",\r\n \"namespace\": \"Microsoft.PolicyInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"1d78a85d-813d-46f0-b496-dd72f50a3ec0\",\r\n \"roleDefinitionId\": \"63d2b225-4c34-4641-8768-21a1f7c68ce8\"\r\n },\r\n {\r\n \"applicationId\": \"8cae6e77-e04e-42ce-b5cb-50d82bce26b1\",\r\n \"roleDefinitionId\": \"4a2d3d6b-a6ea-45e2-9882-c9ba3e726ed7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyEvents\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"policyStates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"asyncOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"remediations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"policyTrackedResources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.AlertsManagement\",\r\n \"namespace\": \"Microsoft.AlertsManagement\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"3af5a1e8-2459-45cb-8683-bcd6cccbcc13\",\r\n \"roleDefinitionId\": \"b1309299-720d-4159-9897-6158a61aee41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-05-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-11-02-privatepreview\",\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"alertsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-05-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"smartGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-05-preview\",\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorAlertRules\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"actionRules\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-05-preview\",\r\n \"2018-11-02-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"alertsList\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-02-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertsSummaryList\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-02-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertsMetaData\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-05-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ChangeAnalysis\",\r\n \"namespace\": \"Microsoft.ChangeAnalysis\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cfc91a4-7baa-4a8f-a6c9-5f3d279060b8\",\r\n \"roleDefinitionId\": \"f5a6bd90-af71-455c-9030-c486e8c42c95\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Security\",\r\n \"namespace\": \"Microsoft.Security\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8edd93e1-2103-40b4-bd70-6e34e586362d\",\r\n \"roleDefinitionId\": \"855AF4C4-82F6-414C-B1A2-628025628B9A\"\r\n },\r\n {\r\n \"applicationId\": \"fc780465-2017-40d4-a0c5-307022471b92\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatuses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"regulatoryComplianceStandards\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"regulatoryComplianceStandards/regulatoryComplianceControls\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"regulatoryComplianceStandards/regulatoryComplianceControls/regulatoryComplianceAssessments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoDismissAlertsRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionAgents\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"pricings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AutoProvisioningSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Compliances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"securityContacts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaceSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"complianceResults\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"policies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"assessments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"assessmentMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"subAssessments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"allowedConnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allowedConnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topologies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/topologies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatusesSummaries\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"InformationProtectionPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"advancedThreatProtectionSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"deviceSecurityGroups\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"iotSecuritySolutions\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"iotSecuritySolutions/analyticsModels\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"iotSecuritySolutions/analyticsModels/aggregatedAlerts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"iotSecuritySolutions/analyticsModels/aggregatedRecommendations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"settings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverVulnerabilityAssessments\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"adaptiveNetworkHardenings\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"automations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"France Central\",\r\n \"France South\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/84codes.CloudAMQP\",\r\n \"namespace\": \"84codes.CloudAMQP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Conexlink.MyCloudIT\",\r\n \"namespace\": \"Conexlink.MyCloudIT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Crypteron.DataSecurity\",\r\n \"namespace\": \"Crypteron.DataSecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/LiveArena.Broadcast\",\r\n \"namespace\": \"LiveArena.Broadcast\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Mailjet.Email\",\r\n \"namespace\": \"Mailjet.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-10-01\",\r\n \"2017-05-29\",\r\n \"2017-02-03\",\r\n \"2016-11-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.AAD\",\r\n \"namespace\": \"Microsoft.AAD\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"443155a6-77f3-45e3-882b-22b3a8d431fb\",\r\n \"roleDefinitionId\": \"7389DE79-3180-4F07-B2BA-C5BA1F01B03A\"\r\n },\r\n {\r\n \"applicationId\": \"abba844e-bc0e-44b0-947a-dc74e5d09022\",\r\n \"roleDefinitionId\": \"63BC473E-7767-42A5-A3BF-08EB71200E04\"\r\n },\r\n {\r\n \"applicationId\": \"d87dcbc6-a371-462e-88e3-28ad15ec4e64\",\r\n \"roleDefinitionId\": \"861776c5-e0df-4f95-be4f-ac1eec193323\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DomainServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"DomainServices/oucontainer\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Addons\",\r\n \"namespace\": \"Microsoft.Addons\",\r\n \"authorization\": {\r\n \"applicationId\": \"24d3987b-be4a-48e0-a3e7-11c186f39e41\",\r\n \"roleDefinitionId\": \"8004BAAB-A4CB-4981-8571-F7E44D039D93\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"supportProviders\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"addsservices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"aadsupportcases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servicehealthmetrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"anonymousapiusers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.AnalysisServices\",\r\n \"namespace\": \"Microsoft.AnalysisServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Canada East\",\r\n \"Central India\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"France Central\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.AppConfiguration\",\r\n \"namespace\": \"Microsoft.AppConfiguration\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"35ffadb3-7fc1-497e-b61b-381d28e744cc\",\r\n \"roleDefinitionId\": \"fffa409e-a8cc-4cbf-8e1c-6d940b33040e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"configurationStores\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"configurationStores/eventGridFilters\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.AppPlatform\",\r\n \"namespace\": \"Microsoft.AppPlatform\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Spring\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatus\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Attestation\",\r\n \"namespace\": \"Microsoft.Attestation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c61423b7-1d1f-430d-b444-0eee53298103\",\r\n \"roleDefinitionId\": \"7299b0b1-11da-4858-8943-7db197005959\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"attestationProviders\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"fc75330b-179d-49af-87dd-3b1acf6827fa\",\r\n \"roleDefinitionId\": \"95fd5de3-d071-4362-92bf-cf341c1de832\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-13-preview\",\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/configurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"West US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/webhooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Australia East\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/softwareUpdateConfigurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/jobs\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/privateLinkResources\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-13-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/privateEndpointConnections\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-13-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-13-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.AzureActiveDirectory\",\r\n \"namespace\": \"Microsoft.AzureActiveDirectory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"b2cDirectories\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-privatepreview\",\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-privatepreview\",\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"b2ctenants\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-02-10-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.AzureData\",\r\n \"namespace\": \"Microsoft.AzureData\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sqlServerRegistrations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-10-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-10-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sqlServerRegistrations/sqlServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-10-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.AzureStack\",\r\n \"namespace\": \"Microsoft.AzureStack\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registrations/products\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations/customerSubscriptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudManifestFiles\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.BatchAI\",\r\n \"namespace\": \"Microsoft.BatchAI\",\r\n \"authorization\": {\r\n \"applicationId\": \"9fcb3732-5f52-4135-8c08-9d4bbaf203ea\",\r\n \"roleDefinitionId\": \"703B89C7-CE2C-431B-BDD8-FA34E39AF696\",\r\n \"managedByRoleDefinitionId\": \"90B8E153-EBFF-4073-A95F-4DAD56B14C78\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/clusters\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/fileservers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments/jobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Billing\",\r\n \"namespace\": \"Microsoft.Billing\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80dbdb39-4f33-4799-8b6f-711b5e3e61b6\",\r\n \"roleDefinitionId\": \"acdc79db-513f-461d-a542-61908d543bdc\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"billingPeriods\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"invoices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingRoleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"billingRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"createBillingRoleAssignment\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/createBillingRoleAssignment\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/createBillingRoleAssignment\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/createBillingRoleAssignment\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingPermissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingRoleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingPermissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/billingRoleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/billingRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/billingPermissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/customers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/instructions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/billingRoleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/billingRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/billingPermissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/billingPermissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/elevate\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/createInvoiceSectionOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/patchOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/patchOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/productMoveOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/billingSubscriptionMoveOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/listInvoiceSectionsWithCreateSubscriptionPermission\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/BillingProfiles/patchOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-06-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/enrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-06-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/paymentMethods\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/availableBalance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoices/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingSubscriptions/invoices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/products/updateAutoRenew\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/products/updateAutoRenew\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-06-30\",\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/initiateTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/initiateTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/transfers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/transfers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers/acceptTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers/declineTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers/validateTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/initiateTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/transfers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingProperty\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/policies\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/policies\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoices/pricesheet\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/pricesheet\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/pricesheetDownloadOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/billingSubscriptions/transfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/products/transfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/products/transfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/productTransfersResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers/operationStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/agreements\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/lineOfCredit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/paymentMethods\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateAddress\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Blockchain\",\r\n \"namespace\": \"Microsoft.Blockchain\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"78827f38-7b69-4d5e-a627-d6fdd9c759a0\",\r\n \"roleDefinitionId\": \"9c68eaf3-8315-4e5c-b857-641b16b21f8f\"\r\n },\r\n {\r\n \"applicationId\": \"049d4938-2ef2-4274-aa8f-630fc9bc33d1\",\r\n \"roleDefinitionId\": \"c6dd0893-0495-488a-ac21-ee5f1ba89769\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"watchers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"blockchainMembers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/watcherOperationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/blockchainMemberOperationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/listConsortiums\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Blueprint\",\r\n \"namespace\": \"Microsoft.Blueprint\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"f71766dc-90d9-4b7d-bd9d-4499c4331c3f\",\r\n \"roleDefinitionId\": \"cb180127-cf6d-4672-9e75-e29a487f9658\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"blueprints\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"blueprints/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity, SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments/assignmentOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.BotService\",\r\n \"namespace\": \"Microsoft.BotService\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3723d34-6ff5-4ceb-a148-d99dcd2511fc\",\r\n \"roleDefinitionId\": \"71213c26-43ed-41d8-9905-3c12971517a3\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"botServices\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"botServices/channels\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"botServices/connections\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAuthServiceProviders\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Capacity\",\r\n \"namespace\": \"Microsoft.Capacity\",\r\n \"authorization\": {\r\n \"applicationId\": \"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b\",\r\n \"roleDefinitionId\": \"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-06-01\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations/revisions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliedReservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatePrice\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculateExchange\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"exchange\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/calculateRefund\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/return\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/split\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/merge\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/swap\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateReservationOrder\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/availableScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations/availableScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commercialReservationOrders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatePurchasePrice\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-privatepreview\",\r\n \"2019-06-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"placePurchaseOrder\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-privatepreview\",\r\n \"2019-06-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkPurchaseStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-privatepreview\",\r\n \"2019-06-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"authorizations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/customdomains\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/originresults\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/customdomainresults\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkResourceUsage\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateProbe\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"edgenodes\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CdnWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"CdnWebApplicationFirewallManagedRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ClassicInfrastructureMigrate\",\r\n \"namespace\": \"Microsoft.ClassicInfrastructureMigrate\",\r\n \"authorization\": {\r\n \"applicationId\": \"5e5abe2b-83cd-4786-826a-a05653ebb103\",\r\n \"roleDefinitionId\": \"766c4d9b-ef83-4f73-8352-1450a506a69b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicInfrastructureResources\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ClassicSubscription\",\r\n \"namespace\": \"Microsoft.ClassicSubscription\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.CognitiveServices\",\r\n \"namespace\": \"Microsoft.CognitiveServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"7d312290-28c8-473c-a0ed-8e53749b6d6d\",\r\n \"roleDefinitionId\": \"5cb87f79-a7c3-4a95-9414-45b65974b51b\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkSkuAvailability\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-18\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Commerce\",\r\n \"namespace\": \"Microsoft.Commerce\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"UsageAggregates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RateCard\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-31-preview\",\r\n \"2015-06-01-preview\",\r\n \"2015-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Consumption\",\r\n \"namespace\": \"Microsoft.Consumption\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c5b17a4f-cc6f-4649-9480-684280a2af3a\",\r\n \"roleDefinitionId\": \"4a2e6ae9-2713-4cc9-a3b3-312899d687c3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Forecasts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"AggregatedCost\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ReservationRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ReservationSummaries\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ReservationTransactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Balances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Marketplaces\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Pricesheets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ReservationDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Budgets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"CostTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Terms\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"UsageDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-05-01\",\r\n \"2019-04-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Charges\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"credits\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"events\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"lots\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"OperationStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-05-01\",\r\n \"2019-04-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"OperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-05-01\",\r\n \"2019-04-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ContainerInstance\",\r\n \"namespace\": \"Microsoft.ContainerInstance\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9\",\r\n \"roleDefinitionId\": \"3c60422b-a83a-428d-9830-22609c77aa6c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerGroups\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"serviceAssociationLinks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cachedImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ContainerService\",\r\n \"namespace\": \"Microsoft.ContainerService\",\r\n \"authorization\": {\r\n \"applicationId\": \"7319c514-987d-4e9b-ac3d-d38c4f427f4c\",\r\n \"roleDefinitionId\": \"1b4a0c7f-2217-416f-acfa-cf73452fdc1c\",\r\n \"managedByRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\",\r\n \"managedByAuthorization\": {\r\n \"allowManagedByInheritance\": true\r\n }\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerServices\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"managedClusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Germany North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany West Central\",\r\n \"UAE North\",\r\n \"Norway East\",\r\n \"Norway West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-08-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-08-01-preview\",\r\n \"2018-03-31\",\r\n \"2017-08-31\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"openShiftManagedClusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Central India\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-30-preview\",\r\n \"2019-04-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/openShiftClusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Central India\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-30-preview\",\r\n \"2019-04-30\",\r\n \"2018-09-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE North\",\r\n \"Norway East\",\r\n \"Norway West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE North\",\r\n \"Norway East\",\r\n \"Norway West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-31\",\r\n \"2018-03-31\",\r\n \"2017-08-31\",\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/orchestrators\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE North\",\r\n \"Norway East\",\r\n \"Norway West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-08-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2017-09-30\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.CostManagement\",\r\n \"namespace\": \"Microsoft.CostManagement\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"3184af01-7a88-49e0-8b55-8ecdce0aa950\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Connectors\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"CloudConnectors\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts/Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts/Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions/Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions/Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Forecast\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2018-12-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions/Forecast\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2018-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts/Forecast\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2018-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Settings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"register\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-10-01-preview\",\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-10-01-preview\",\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Budgets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions/Alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts/Alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"showbackRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\r\n \"2019-02-03-alpha\",\r\n \"2019-02-02-alpha\",\r\n \"2019-02-01-alpha\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Exports\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Reports\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-12-01-preview\",\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Reportconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Views\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.CostManagementExports\",\r\n \"namespace\": \"Microsoft.CostManagementExports\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e5408ad0-c4e2-43aa-b6f2-3b4951286d99\",\r\n \"roleDefinitionId\": \"5e4888b3-2747-4e5b-9897-ec0865b91bcf\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.CustomerLockbox\",\r\n \"namespace\": \"Microsoft.CustomerLockbox\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a0551534-cfc9-4e1f-9a7a-65093b32bb38\"\r\n },\r\n {\r\n \"applicationId\": \"01fc33a7-78ba-4d2f-a4b7-768e336e890e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"requests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.CustomProviders\",\r\n \"namespace\": \"Microsoft.CustomProviders\",\r\n \"authorization\": {\r\n \"applicationId\": \"bf8eb16c-7ba7-4b47-86be-ac5e4b2007a5\",\r\n \"roleDefinitionId\": \"FACF09C9-A5D0-4D34-8B1F-B623AC29C6F7\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceProviders\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"associations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DataBox\",\r\n \"namespace\": \"Microsoft.DataBox\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"5613cb5c-a7c9-4099-8034-511fd7616cb2\",\r\n \"roleDefinitionId\": \"382D72D1-63DC-4243-9B99-CB69FDD473D8\",\r\n \"managedByRoleDefinitionId\": \"f4c0a4f9-768c-4927-ab83-d319111d6ef4\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateAddress\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableSkus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateInputs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/regionConfiguration\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DataBoxEdge\",\r\n \"namespace\": \"Microsoft.DataBoxEdge\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2368d027-f996-4edb-bf48-928f98f2ab8c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Databricks\",\r\n \"namespace\": \"Microsoft.Databricks\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d9327919-6775-4843-9037-3fb0fb0473cb\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"applicationId\": \"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Brazil South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/dbWorkspaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Brazil South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"UAE North\",\r\n \"Brazil South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Brazil South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/getNetworkPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"authorization\": {\r\n \"applicationId\": \"213f5f78-fb30-46c7-9e98-91c720a1c026\",\r\n \"roleDefinitionId\": \"D55E2225-A6AB-481C-A5BE-1B7687C293FA\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01-preview\",\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01-preview\",\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0947a342-ab4a-43be-93b3-b8243fc161e5\",\r\n \"roleDefinitionId\": \"f0a6aa2a-e9d8-4bae-bcc2-36b405e8a5da\"\r\n },\r\n {\r\n \"applicationId\": \"5d13f7d7-0567-429c-9880-320e9555e5fc\",\r\n \"roleDefinitionId\": \"956a8f20-9168-4c71-8e27-3c0460ac39a4\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"factories\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"factories/integrationRuntimes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/configureFactoryRepo\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/getFeatureValue\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/eventGridFilters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DataMigration\",\r\n \"namespace\": \"Microsoft.DataMigration\",\r\n \"authorization\": {\r\n \"applicationId\": \"a4bad4aa-bf02-4631-9f78-a64ffdba8150\",\r\n \"roleDefinitionId\": \"b831a21d-db98-4760-89cb-bef871952df1\",\r\n \"managedByRoleDefinitionId\": \"6256fb55-9e59-4018-a9e1-76b11c0a4c89\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"services/projects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DataShare\",\r\n \"namespace\": \"Microsoft.DataShare\",\r\n \"authorization\": {\r\n \"applicationId\": \"799f1985-1517-4fe1-af2b-ba3d87d4996b\",\r\n \"roleDefinitionId\": \"0146496b-e06f-439a-83be-49fac884edf5\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares/datasets\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares/synchronizationSettings\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares/invitations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/sharesubscriptions\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares/providersharesubscriptions\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/sharesubscriptions/datasetmappings\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/sharesubscriptions/triggers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/sharesubscriptions/consumerSourceDataSets\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listinvitations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/rejectInvitation\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2018-11-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consumerInvitations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2018-11-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2018-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DBforMariaDB\",\r\n \"namespace\": \"Microsoft.DBforMariaDB\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/waitStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateLinkResources\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateEndpointConnections\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DBforMySQL\",\r\n \"namespace\": \"Microsoft.DBforMySQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UAE North\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/waitStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateLinkResources\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateEndpointConnections\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DBforPostgreSQL\",\r\n \"namespace\": \"Microsoft.DBforPostgreSQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"serversv2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-29-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-29-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/waitStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateLinkResources\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateEndpointConnections\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DeploymentManager\",\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"5b306cba-9c71-49db-96c3-d17ca2379c4d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"artifactSources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceTopologies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceTopologies/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceTopologies/services/serviceUnits\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"steps\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DesktopVirtualization\",\r\n \"namespace\": \"Microsoft.DesktopVirtualization\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"50e95039-b200-4007-bc97-8d5790743a63\",\r\n \"roleDefinitionId\": \"CAD30215-AD1C-43BF-BE90-7BFA8B493E62\"\r\n },\r\n {\r\n \"applicationId\": \"9cdead84-a844-4324-93f2-b2e6bb768d07\"\r\n },\r\n {\r\n \"applicationId\": \"a85cf173-4192-42f8-81fa-777a763e6e2c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-23-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0cd79364-7a90-4354-9984-6e36c841418d\",\r\n \"roleDefinitionId\": \"C121DF10-FE58-4BC4-97F9-8296879F7BBB\"\r\n },\r\n {\r\n \"applicationId\": \"29f411f1-b2cf-4043-8ac8-2185d7316811\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-04\",\r\n \"2019-09-01\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22-preview\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-09-25-preview\",\r\n \"2017-08-21-preview\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-31\",\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DevOps\",\r\n \"namespace\": \"Microsoft.DevOps\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"pipelines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DevSpaces\",\r\n \"namespace\": \"Microsoft.DevSpaces\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"controllers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia SouthEast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"controllers/listConnectionDetails\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia SouthEast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia SouthEast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia SouthEast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia SouthEast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkContainerHostMapping\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia SouthEast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs/environments\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"schedules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs/virtualMachines\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs/serviceRunners\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"57c0fc58-a83a-41d0-8ae9-08952659bdfd\",\r\n \"roleDefinitionId\": \"FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282\"\r\n },\r\n {\r\n \"applicationId\": \"36e2398c-9dd3-4f29-9a72-d9f2cfc47ad9\",\r\n \"roleDefinitionId\": \"D5A795DE-916D-4818-B015-33C9E103E39B\"\r\n },\r\n {\r\n \"applicationId\": \"a232010e-820c-4083-83bb-3ace5fc29d0b\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.EnterpriseKnowledgeGraph\",\r\n \"namespace\": \"Microsoft.EnterpriseKnowledgeGraph\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-03\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-03\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-03\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-03\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.EventGrid\",\r\n \"namespace\": \"Microsoft.EventGrid\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"4962773b-9cdb-44cf-a8bf-237846a00ab7\",\r\n \"roleDefinitionId\": \"7FE036D8-246F-48BF-A78F-AB3EE699C8F3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"topics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2018-09-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/topics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2018-09-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extensionTopics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationsStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"systemTopics\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"systemTopics/eventSubscriptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"partnerNamespaces\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"partnerTopics\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"partnerTopics/eventSubscriptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"partnerNamespaces/eventChannels\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Experimentation\",\r\n \"namespace\": \"Microsoft.Experimentation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e00d2f8a-f6c8-46e4-b379-e66082e28ca8\",\r\n \"roleDefinitionId\": \"d3a360d9-17f9-410e-9465-5c914c8cf570\",\r\n \"managedByRoleDefinitionId\": \"fa096ccd-4e8f-49de-9594-64449b3ac6b3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"featureProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptionFeatureRegistrations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.GuestConfiguration\",\r\n \"namespace\": \"Microsoft.GuestConfiguration\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e935b4a5-8968-416d-8414-caed51c782a9\",\r\n \"roleDefinitionId\": \"9c6ffa40-421e-4dc0-9739-76b0699a11de\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"guestConfigurationAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-20\",\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"software\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"softwareUpdates\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"softwareUpdateProfile\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-20\",\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.HanaOnAzure\",\r\n \"namespace\": \"Microsoft.HanaOnAzure\",\r\n \"authorization\": {\r\n \"applicationId\": \"cc5476ec-3074-44d1-8461-711f5d9b0e39\",\r\n \"roleDefinitionId\": \"4a10987e-dbcf-4c3d-8e3d-7ddcd9c771c2\",\r\n \"managedByRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hanaInstances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sapMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.HardwareSecurityModules\",\r\n \"namespace\": \"Microsoft.HardwareSecurityModules\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0eb690b7-d23e-4fb0-b43e-cd161ac80cc3\",\r\n \"roleDefinitionId\": \"48397dc8-3910-486a-8165-ab2df987447f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-31-preview\",\r\n \"2018-10-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-31-preview\",\r\n \"2018-10-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9191c4da-09fe-49d9-a5f1-d41cbe92ad95\",\r\n \"roleDefinitionId\": \"d102a6f3-d9cb-4633-8950-1243b975886c\",\r\n \"managedByRoleDefinitionId\": \"346da55d-e1db-4a5a-89db-33ab3cdb6fc6\"\r\n },\r\n {\r\n \"applicationId\": \"7865c1d2-f040-46cc-875f-831a1ef6a28a\",\r\n \"roleDefinitionId\": \"e27c0895-d168-46d5-8b65-870eb2350378\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/billingSpecs\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureasyncoperations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateCreateRequest\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.HealthcareApis\",\r\n \"namespace\": \"Microsoft.HealthcareApis\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"4f6778d8-5aef-43dc-a1ff-b073724b9495\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-16\",\r\n \"2018-08-20-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-16\",\r\n \"2018-08-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-16\",\r\n \"2018-08-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-16\",\r\n \"2018-08-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-16\",\r\n \"2018-08-20-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.HybridCompute\",\r\n \"namespace\": \"Microsoft.HybridCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"machines\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-12\",\r\n \"2019-08-02-preview\",\r\n \"2019-03-18-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-12\",\r\n \"2019-08-02-preview\",\r\n \"2019-03-18-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.HybridData\",\r\n \"namespace\": \"Microsoft.HybridData\",\r\n \"authorization\": {\r\n \"applicationId\": \"621269cf-1195-44a3-a835-c613d103dd15\",\r\n \"roleDefinitionId\": \"00320cd4-8823-47f2-bbe4-5c9da031311d\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataManagers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Hydra\",\r\n \"namespace\": \"Microsoft.Hydra\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"37ae09d4-a310-41e1-803d-8e85cec4bf23\",\r\n \"roleDefinitionId\": \"37ae09d4-a310-41e1-803d-8e85cec4bf23\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ImportExport\",\r\n \"namespace\": \"Microsoft.ImportExport\",\r\n \"authorization\": {\r\n \"applicationId\": \"7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a\",\r\n \"roleDefinitionId\": \"9f7aa6bb-9454-46b6-8c01-a4b0f33ca151\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.IoTCentral\",\r\n \"namespace\": \"Microsoft.IoTCentral\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9edfcdd9-0bc5-4bd4-b287-c3afc716aac7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"IoTApps\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Central US\",\r\n \"West Central US\",\r\n \"Australia\",\r\n \"Asia Pacific\",\r\n \"Europe\",\r\n \"Japan\",\r\n \"UK\",\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkSubdomainAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appTemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.IoTSpaces\",\r\n \"namespace\": \"Microsoft.IoTSpaces\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0b07f429-9f4b-4714-9392-cc5e8e80c8b0\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"West US 2\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"Graph\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"West US 2\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Kubernetes\",\r\n \"namespace\": \"Microsoft.Kubernetes\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"64b12d6e-6549-484c-8cc6-6281839ba394\",\r\n \"roleDefinitionId\": \"1d1d44cf-68a1-4def-a2b6-cd7efc3515af\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2019-09-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Kusto\",\r\n \"namespace\": \"Microsoft.Kusto\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2746ea77-4702-4b45-80ca-3c97e680e8b7\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/attacheddatabaseconfigurations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/principalassignments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-09\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases/eventhubconnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases/dataconnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases/principalassignments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-09\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/sharedidentities\",\r\n \"locations\": [\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-09\",\r\n \"2019-09-07\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.LabServices\",\r\n \"namespace\": \"Microsoft.LabServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labaccounts\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"users\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2019-01-01-beta\",\r\n \"2019-01-01-alpha\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\",\r\n \"2017-12-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"integrationAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"integrationServiceEnvironments\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"integrationServiceEnvironments/managedApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.MachineLearning\",\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"webServices\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commitmentPlans\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Maintenance\",\r\n \"namespace\": \"Microsoft.Maintenance\",\r\n \"authorization\": {\r\n \"applicationId\": \"f18474f2-a66a-4bb0-a3c9-9b8d892092fa\",\r\n \"roleDefinitionId\": \"2f1ef7b0-d5c4-4d3c-98fa-6a9fa8e74aa5\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"maintenanceConfigurations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-06-01-preview\",\r\n \"2017-04-26\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"updates\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-06-01-preview\",\r\n \"2017-04-26\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"configurationAssignments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-06-01-preview\",\r\n \"2017-04-26\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"applyUpdates\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-06-01-preview\",\r\n \"2017-04-26\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ManagedServices\",\r\n \"namespace\": \"Microsoft.ManagedServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"66c6d0d1-f2e7-4a18-97a9-ed10f3347016\",\r\n \"roleDefinitionId\": \"1e86f807-6ec0-40b3-8b5f-686b7e43a0a2\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registrationDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01-preview\",\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"registrationAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01-preview\",\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"marketplaceRegistrationDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Management\",\r\n \"namespace\": \"Microsoft.Management\",\r\n \"authorization\": {\r\n \"applicationId\": \"f2c304cf-8e7e-4c3f-8164-16299ad9d272\",\r\n \"roleDefinitionId\": \"c1cf3708-588a-4647-be7f-f400bbe214cf\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managementGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getEntities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managementGroups/settings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults/asyncOperation\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenantBackfillStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"startTenantBackfill\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Maps\",\r\n \"namespace\": \"Microsoft.Maps\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"608f6f31-fed0-4f7b-809f-90f6c9b3de78\",\r\n \"roleDefinitionId\": \"3431F0E6-63BC-482D-A96E-0AB819610A5F\"\r\n },\r\n {\r\n \"applicationId\": \"ba1ea022-5807-41d5-bbeb-292c7e1cf5f6\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/eventGridFilters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"authorization\": {\r\n \"applicationId\": \"a0e1e353-1a3e-42cf-a8ea-3a9746eec58c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"register\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privategalleryitems\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs/importImage\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/agreements\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAvailableOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishers/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishers/offers/amendments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateStoreClient\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-beta\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateStores\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateStores/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.MarketplaceApps\",\r\n \"namespace\": \"Microsoft.MarketplaceApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicDevServices\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offertypes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Media\",\r\n \"namespace\": \"Microsoft.Media\",\r\n \"authorization\": {\r\n \"applicationId\": \"374b2a64-3b6b-436b-934c-b820eacca870\",\r\n \"roleDefinitionId\": \"aab70789-0cec-44b5-95d7-84b64c9487af\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mediaservices\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/assets\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/contentKeyPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingLocators\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/eventGridFilters\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms/jobs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpoints\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents/liveOutputs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpointOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEventOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveOutputOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/assets/assetFilters\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/accountFilters\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2018-02-05\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Migrate\",\r\n \"namespace\": \"Microsoft.Migrate\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3bfd6ac-eace-4438-9dc1-eed439e738de\",\r\n \"roleDefinitionId\": \"e88f4159-1d71-4b12-8ef0-38c039cb051e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"projects\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"migrateprojects\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"assessmentProjects\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/assessmentOptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.MixedReality\",\r\n \"namespace\": \"Microsoft.MixedReality\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c7ddd9b4-5172-4e28-bd29-1e0792947d18\",\r\n \"roleDefinitionId\": \"b67ee066-e058-4ddb-92bc-83cdd74bc38a\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-02-preview\",\r\n \"2019-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-02-preview\",\r\n \"2019-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-02-preview\",\r\n \"2019-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"spatialAnchorsAccounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-02-preview\",\r\n \"2019-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.NetApp\",\r\n \"namespace\": \"Microsoft.NetApp\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"12fb057d-b751-47cd-857c-f2934bb677b4\",\r\n \"roleDefinitionId\": \"e4796bef-6b6d-4cbc-ba1e-27f1a308d860\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"West US (Stage)\",\r\n \"West US 2 (Stage)\",\r\n \"South Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2017-08-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ObjectStore\",\r\n \"namespace\": \"Microsoft.ObjectStore\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"osNamespaces\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.OffAzure\",\r\n \"namespace\": \"Microsoft.OffAzure\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"728a93e3-065d-4678-93b1-3cc281223341\",\r\n \"roleDefinitionId\": \"b9967bf7-a345-4af8-95f0-49916f760fc6\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"VMwareSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\",\r\n \"2019-06-06\",\r\n \"2019-05-01-preview\",\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"HyperVSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-06-06\",\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ServerSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ImportSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-06-06\",\r\n \"2018-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"86695298-2eb9-48a7-9ec3-2fdb38b6878b\"\r\n },\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2017-03-15-preview\",\r\n \"2017-03-03-preview\",\r\n \"2017-01-01-preview\",\r\n \"2015-11-01-preview\",\r\n \"2015-03-20\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01-preview\",\r\n \"2017-04-26-preview\",\r\n \"2017-03-15-preview\",\r\n \"2017-03-03-preview\",\r\n \"2017-01-01-preview\",\r\n \"2015-11-01-preview\",\r\n \"2015-03-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01-preview\",\r\n \"2017-04-26-preview\",\r\n \"2017-03-15-preview\",\r\n \"2017-03-03-preview\",\r\n \"2017-01-01-preview\",\r\n \"2015-11-01-preview\",\r\n \"2015-03-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/privateEndpointConnections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01-preview\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/privateLinkResources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01-preview\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01-preview\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/scopedPrivateLinkProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01-preview\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/query\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Australia Southeast\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland West\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/dataSources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/linkedServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01-preview\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.OperationsManagement\",\r\n \"namespace\": \"Microsoft.OperationsManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"aa249101-6816-4966-aafa-08175d795f14\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"solutions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central Us\",\r\n \"East Us 2\",\r\n \"East Asia\",\r\n \"West Us\",\r\n \"South Central Us\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementconfigurations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central Us\",\r\n \"East Us 2\",\r\n \"East Asia\",\r\n \"West Us\",\r\n \"South Central Us\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementassociations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"views\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central Us\",\r\n \"East Us 2\",\r\n \"East Asia\",\r\n \"West Us\",\r\n \"South Central Us\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Peering\",\r\n \"namespace\": \"Microsoft.Peering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"peerings\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"East Asia\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West India\",\r\n \"South India\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"peeringLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"legacyPeerings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"peerAsns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"peeringServiceCountries\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"peeringServiceLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"peeringServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceProviderAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Portal\",\r\n \"namespace\": \"Microsoft.Portal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dashboards\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-10-01-preview\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"consoles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consoles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.PowerBI\",\r\n \"namespace\": \"Microsoft.PowerBI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaceCollections\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.PowerBIDedicated\",\r\n \"namespace\": \"Microsoft.PowerBIDedicated\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"capacities\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South Africa North\",\r\n \"Canada East\",\r\n \"South Africa West\",\r\n \"UK West\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South Africa West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ProjectBabylon\",\r\n \"namespace\": \"Microsoft.ProjectBabylon\",\r\n \"authorization\": {\r\n \"applicationId\": \"73c2949e-da2d-457a-9607-fcc665198967\",\r\n \"roleDefinitionId\": \"1BC09725-0C9B-4F57-A3D0-FCCF4EB40120\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ProviderHub\",\r\n \"namespace\": \"Microsoft.ProviderHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"providerRegistrations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerRegistrations/resourceTypeRegistrations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"availableAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.RecoveryServices\",\r\n \"namespace\": \"Microsoft.RecoveryServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6\"\r\n },\r\n {\r\n \"applicationId\": \"3b2fa68d-a091-48c9-95be-88d572e08fb7\",\r\n \"roleDefinitionId\": \"47d68fae-99c7-4c10-b9db-2316116a061e\"\r\n },\r\n {\r\n \"applicationId\": \"9bdab391-7bbe-42e8-8132-e4491dc29cc0\",\r\n \"roleDefinitionId\": \"0383f7f5-023d-4379-b2c7-9ef786459969\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15\",\r\n \"2019-05-13-preview\",\r\n \"2019-05-13\",\r\n \"2018-12-20-preview\",\r\n \"2018-07-10-preview\",\r\n \"2018-07-10\",\r\n \"2018-01-10\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-12-01\",\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2016-05-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocatedStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocateStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupValidateFeatures\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupPreValidateProtection\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupCrrJobs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupCrrJob\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupAadProperties\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupCrossRegionRestore\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupCrrOperationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupCrrOperationsStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"backupProtectedItems\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"replicationEligibilityResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-10\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Relay\",\r\n \"namespace\": \"Microsoft.Relay\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ResourceGraph\",\r\n \"namespace\": \"Microsoft.ResourceGraph\",\r\n \"authorization\": {\r\n \"applicationId\": \"509e4652-da8d-478d-a730-e9d4a1996ca4\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourcesHistory\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceChanges\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceChangeDetails\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptionsStatus\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"applicationId\": \"3b990c8b-9607-4c2a-8b04-1d41985facca\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.SaaS\",\r\n \"namespace\": \"Microsoft.SaaS\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"f738ef14-47dc-4564-b53b-45069484ccc7\",\r\n \"roleDefinitionId\": \"b131dd2d-387a-4cae-bb9b-3d021f80d1e6\"\r\n },\r\n {\r\n \"applicationId\": \"20e940b3-4c77-4b0b-9a53-9e16a1b010a7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkModernEligibility\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"saasresources\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-Preview\",\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.SecurityInsights\",\r\n \"namespace\": \"Microsoft.SecurityInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"98785600-1bb7-4fb9-b9fa-19afe2c8a360\",\r\n \"roleDefinitionId\": \"ef1c46aa-ae81-4091-ab83-f75f28efb7b8\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertRules\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"alertRuleTemplates\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"cases\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"bookmarks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"dataConnectors\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"dataConnectorsCheckRequirements\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"entities\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"incidents\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"officeConsents\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"settings\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"aggregations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"entityQueries\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.SerialConsole\",\r\n \"namespace\": \"Microsoft.SerialConsole\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"consoleServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consoleServices\",\r\n \"locations\": [\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Services\",\r\n \"namespace\": \"Microsoft.Services\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"providerRegistrations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerRegistrations/resourceTypeRegistrations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.SignalRService\",\r\n \"namespace\": \"Microsoft.SignalRService\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cdad765c-f191-43ba-b9f5-7aef392f811d\",\r\n \"roleDefinitionId\": \"346b504e-4aec-45d1-be25-a6e10f3cb4fe\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SignalR\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SignalR/eventGridFilters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.SoftwarePlan\",\r\n \"namespace\": \"Microsoft.SoftwarePlan\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hybridUseBenefits\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Solutions\",\r\n \"namespace\": \"Microsoft.Solutions\",\r\n \"authorization\": {\r\n \"applicationId\": \"ba4bc2bd-843f-4d61-9d33-199178eae34e\",\r\n \"roleDefinitionId\": \"6cb99a0b-29a8-49bc-b57b-057acc68cd9a\",\r\n \"managedByRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\",\r\n \"managedByAuthorization\": {\r\n \"managedByResourceRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\"\r\n }\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"applicationDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"jitRequests\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.SqlVirtualMachine\",\r\n \"namespace\": \"Microsoft.SqlVirtualMachine\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"bd93b475-f9e2-476e-963d-b2daf143ffb9\",\r\n \"roleDefinitionId\": \"f96bd990-ffdf-4c17-8ee3-77454d9c3f5d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SqlVirtualMachineGroups\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"SqlVirtualMachines\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"SqlVirtualMachineGroups/AvailabilityGroupListeners\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/OperationTypes\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/sqlVirtualMachineOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/sqlVirtualMachineGroupOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/availabilityGroupListenerOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.StorageCache\",\r\n \"namespace\": \"Microsoft.StorageCache\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"4392ab71-2ce2-4b0d-8770-b352745c73f5\",\r\n \"roleDefinitionId\": \"e27430df-bd6b-4f3a-bd6d-d52ad1a7d075\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.StorageSync\",\r\n \"namespace\": \"Microsoft.StorageSync\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9469b9f5-6722-4481-a2b2-14ed560b706f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageSyncServices\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/cloudEndpoints\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/serverEndpoints\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/registeredServers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/workflows\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.StorSimple\",\r\n \"namespace\": \"Microsoft.StorSimple\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"managers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-05-15\",\r\n \"2017-01-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"authorization\": {\r\n \"applicationId\": \"66f1e791-7bfb-4e18-aed8-1720056421c7\",\r\n \"roleDefinitionId\": \"15f6e7b0-eec0-4f18-a552-c97e000cbc61\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-11-01\",\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-11-01\",\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-11-01\",\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-11-01\",\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"959678cf-d004-4c22-82a6-d2ce549a58b8\",\r\n \"roleDefinitionId\": \"81a3dd11-5123-4ec3-9485-772b0a27d1bd\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services/problemclassifications\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationsstatus\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Synapse\",\r\n \"namespace\": \"Microsoft.Synapse\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9e09aefc-b2e5-4d19-9f74-3e3e8b11a57b\",\r\n \"roleDefinitionId\": \"a53b114a-452b-4d20-bcd6-c51c3c8c5878\",\r\n \"managedByRoleDefinitionId\": \"ede175bc-31e5-4074-ba98-e62b895797aa\"\r\n },\r\n {\r\n \"applicationId\": \"1ac05c7e-12d2-4605-bf9d-549d7041c6b3\",\r\n \"roleDefinitionId\": \"48e77487-c9fa-4abe-8484-71ebdebdbbc2\"\r\n },\r\n {\r\n \"applicationId\": \"ec52d13d-2e85-410e-a89a-8c79fb6a32ac\",\r\n \"roleDefinitionId\": \"c3a447c3-a63a-4905-a125-c6856f9d0e17\"\r\n },\r\n {\r\n \"applicationId\": \"5ebe1e69-13dd-4953-84fa-a74ed591db2e\",\r\n \"roleDefinitionId\": \"e8ebe3e8-569b-4ad3-bea1-5b274fe0c49f\"\r\n },\r\n {\r\n \"applicationId\": \"2e458d69-0892-4655-b713-4f7b182315dd\",\r\n \"roleDefinitionId\": \"45EA3B16-D4DD-48CA-BF0D-BBE644C0C0AF\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.TimeSeriesInsights\",\r\n \"namespace\": \"Microsoft.TimeSeriesInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"120d688d-1518-4cf7-bd38-182f158850b6\",\r\n \"roleDefinitionId\": \"5a43abdf-bb87-42c4-9e56-1c24bf364150\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/eventsources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/referenceDataSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/accessPolicies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Token\",\r\n \"namespace\": \"Microsoft.Token\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"fe053c5f-3692-4f14-aef2-ee34fc081cae\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"stores\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"stores/accessPolicies\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"stores/services\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"stores/services/tokens\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.VirtualMachineImages\",\r\n \"namespace\": \"Microsoft.VirtualMachineImages\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cf32a0cc-373c-47c9-9156-0db11f6a6dfc\",\r\n \"roleDefinitionId\": \"0ee55a0b-f45f-4392-92ec-e8bf1b4b5da5\",\r\n \"managedByRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2019-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"account/extension\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.VMwareCloudSimple\",\r\n \"namespace\": \"Microsoft.VMwareCloudSimple\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d96199e7-4674-4bbf-a1c6-ddf93682f5ee\",\r\n \"roleDefinitionId\": \"533012ca-a3e7-44e4-93b4-3143f8b9409d\",\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"CloudSimpleExtension\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dedicatedCloudNodes\",\r\n \"locations\": [\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dedicatedCloudServices\",\r\n \"locations\": [\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availabilities\",\r\n \"locations\": [\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds\",\r\n \"locations\": [\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds/virtualNetworks\",\r\n \"locations\": [\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds/virtualMachineTemplates\",\r\n \"locations\": [\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds/resourcePools\",\r\n \"locations\": [\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.VnfManager\",\r\n \"namespace\": \"Microsoft.VnfManager\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"b8ed041c-aa91-418e-8f47-20c70abc2de1\",\r\n \"roleDefinitionId\": \"c8d69fc0-f0ed-43b3-bf1d-4dfdaacc6d2d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/OperationStatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.VSOnline\",\r\n \"namespace\": \"Microsoft.VSOnline\",\r\n \"authorizations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West Us 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-07-01-beta\",\r\n \"2019-07-01-alpha\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"plans\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West Us 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-07-01-beta\",\r\n \"2019-07-01-alpha\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-07-01-beta\",\r\n \"2019-07-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.WindowsESU\",\r\n \"namespace\": \"Microsoft.WindowsESU\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e6c69915-bcc7-4335-b655-c62f949d691b\",\r\n \"roleDefinitionId\": \"9bccffcd-2d3d-4b7c-a2cb-bb26e77b4810\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-16-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-16-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/OperationStatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.WindowsIoT\",\r\n \"namespace\": \"Microsoft.WindowsIoT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DeviceServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-02-16-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-02-16-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.WorkloadMonitor\",\r\n \"namespace\": \"Microsoft.WorkloadMonitor\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"componentsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitorInstancesSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitorInstances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"monitors\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"notificationSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Myget.PackageManagement\",\r\n \"namespace\": \"Myget.PackageManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Paraleap.CloudMonix\",\r\n \"namespace\": \"Paraleap.CloudMonix\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Pokitdok.Platform\",\r\n \"namespace\": \"Pokitdok.Platform\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/RavenHq.Db\",\r\n \"namespace\": \"RavenHq.Db\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Raygun.CrashReporting\",\r\n \"namespace\": \"Raygun.CrashReporting\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Sparkpost.Basic\",\r\n \"namespace\": \"Sparkpost.Basic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/stackify.retrace\",\r\n \"namespace\": \"stackify.retrace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/U2uconsult.TheIdentityHub\",\r\n \"namespace\": \"U2uconsult.TheIdentityHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/ps9712?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlZ3JvdXBzL3BzOTcxMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"West US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "46539192-d821-4468-80c4-e0c8f26f3e25"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "29"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "bea011a5-1a53-4633-bed1-6e45f3d7af4c"
+ ],
+ "x-ms-correlation-request-id": [
+ "bea011a5-1a53-4633-bed1-6e45f3d7af4c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110523Z:bea011a5-1a53-4633-bed1-6e45f3d7af4c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:05:23 GMT"
+ ],
+ "Content-Length": [
+ "165"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712\",\r\n \"name\": \"ps9712\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/serverfarms/ps8024?api-version=2018-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTcxMi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9wczgwMjQ/YXBpLXZlcnNpb249MjAxOC0wMi0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"perSiteScaling\": false,\r\n \"isXenon\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "486b3b8d-95f3-46c6-afd2-89a4cf871428"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "187"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7a472b4c-4b8a-45a0-aa87-ea0363d7731e"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "67fa7510-329c-4208-8015-e53e151d74df"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110537Z:67fa7510-329c-4208-8015-e53e151d74df"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:05:37 GMT"
+ ],
+ "Content-Length": [
+ "1267"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/serverfarms/ps8024\",\r\n \"name\": \"ps8024\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"serverFarmId\": 10811,\r\n \"name\": \"ps8024\",\r\n \"workerSize\": \"Default\",\r\n \"workerSizeId\": 0,\r\n \"workerTierName\": null,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": \"Default\",\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": \"Ready\",\r\n \"webSpace\": \"ps9712-WestUSwebspace\",\r\n \"subscription\": \"04b0639d-85d8-445a-bada-8da78e50ff30\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": \"Dedicated\",\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"maximumElasticWorkerCount\": 1,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"isSpot\": false,\r\n \"spotExpirationTime\": null,\r\n \"freeOfferExpirationTime\": null,\r\n \"tags\": null,\r\n \"kind\": \"app\",\r\n \"resourceGroup\": \"ps9712\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"mdmId\": \"waws-prod-bay-141_10811\",\r\n \"targetWorkerCount\": 0,\r\n \"targetWorkerSizeId\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"webSiteId\": null,\r\n \"existingServerFarmIds\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Web/checknameavailability?api-version=2018-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NoZWNrbmFtZWF2YWlsYWJpbGl0eT9hcGktdmVyc2lvbj0yMDE4LTAyLTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"name\": \"ps245\",\r\n \"type\": \"Site\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "292acfeb-677e-4a88-948d-6908e39abdf7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "42"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "25229f05-0d1b-47b9-a538-aa24d5eba620"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "19941378-7263-4de7-8dc4-9f8aecf9eae8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110539Z:19941378-7263-4de7-8dc4-9f8aecf9eae8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:05:39 GMT"
+ ],
+ "Content-Length": [
+ "47"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"nameAvailable\": true,\r\n \"reason\": \"\",\r\n \"message\": \"\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/serverfarms/ps8024?api-version=2018-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTcxMi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9wczgwMjQ/YXBpLXZlcnNpb249MjAxOC0wMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1bb17e7b-ea6f-4282-9cdd-e1087279249f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ef29dc07-e423-45af-b8fe-16d19c76185e"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "f72f8386-7036-4a8f-8cbd-1c415f4a0af8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110541Z:f72f8386-7036-4a8f-8cbd-1c415f4a0af8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:05:40 GMT"
+ ],
+ "Content-Length": [
+ "1267"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/serverfarms/ps8024\",\r\n \"name\": \"ps8024\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"serverFarmId\": 10811,\r\n \"name\": \"ps8024\",\r\n \"workerSize\": \"Default\",\r\n \"workerSizeId\": 0,\r\n \"workerTierName\": null,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": \"Default\",\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": \"Ready\",\r\n \"webSpace\": \"ps9712-WestUSwebspace\",\r\n \"subscription\": \"04b0639d-85d8-445a-bada-8da78e50ff30\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": \"Dedicated\",\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"maximumElasticWorkerCount\": 1,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"isSpot\": false,\r\n \"spotExpirationTime\": null,\r\n \"freeOfferExpirationTime\": null,\r\n \"tags\": null,\r\n \"kind\": \"app\",\r\n \"resourceGroup\": \"ps9712\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"mdmId\": \"waws-prod-bay-141_10811\",\r\n \"targetWorkerCount\": 0,\r\n \"targetWorkerSizeId\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"webSiteId\": null,\r\n \"existingServerFarmIds\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/serverfarms/ps8024?api-version=2018-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTcxMi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9wczgwMjQ/YXBpLXZlcnNpb249MjAxOC0wMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "30b68fb9-b63f-4489-8f96-eb262bcd99fa"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a94b04f3-3822-4651-98b7-19343abe6040"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-correlation-request-id": [
+ "10c55330-8974-42e1-a34f-b956c1a12e15"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110542Z:10c55330-8974-42e1-a34f-b956c1a12e15"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:05:41 GMT"
+ ],
+ "Content-Length": [
+ "1267"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/serverfarms/ps8024\",\r\n \"name\": \"ps8024\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"serverFarmId\": 10811,\r\n \"name\": \"ps8024\",\r\n \"workerSize\": \"Default\",\r\n \"workerSizeId\": 0,\r\n \"workerTierName\": null,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": \"Default\",\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": \"Ready\",\r\n \"webSpace\": \"ps9712-WestUSwebspace\",\r\n \"subscription\": \"04b0639d-85d8-445a-bada-8da78e50ff30\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": \"Dedicated\",\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"maximumElasticWorkerCount\": 1,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"isSpot\": false,\r\n \"spotExpirationTime\": null,\r\n \"freeOfferExpirationTime\": null,\r\n \"tags\": null,\r\n \"kind\": \"app\",\r\n \"resourceGroup\": \"ps9712\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"mdmId\": \"waws-prod-bay-141_10811\",\r\n \"targetWorkerCount\": 0,\r\n \"targetWorkerSizeId\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"webSiteId\": null,\r\n \"existingServerFarmIds\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/serverfarms/ps8024?api-version=2018-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTcxMi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9wczgwMjQ/YXBpLXZlcnNpb249MjAxOC0wMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1110f252-a153-4982-abb4-89b4d0dd1543"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1039f755-1e50-42fc-b39c-6412fb071ca9"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-correlation-request-id": [
+ "fc7141bd-a8d2-4fba-a355-2b89aab4084c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110542Z:fc7141bd-a8d2-4fba-a355-2b89aab4084c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:05:41 GMT"
+ ],
+ "Content-Length": [
+ "1267"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/serverfarms/ps8024\",\r\n \"name\": \"ps8024\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"serverFarmId\": 10811,\r\n \"name\": \"ps8024\",\r\n \"workerSize\": \"Default\",\r\n \"workerSizeId\": 0,\r\n \"workerTierName\": null,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": \"Default\",\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": \"Ready\",\r\n \"webSpace\": \"ps9712-WestUSwebspace\",\r\n \"subscription\": \"04b0639d-85d8-445a-bada-8da78e50ff30\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": \"Dedicated\",\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"maximumElasticWorkerCount\": 1,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"isSpot\": false,\r\n \"spotExpirationTime\": null,\r\n \"freeOfferExpirationTime\": null,\r\n \"tags\": null,\r\n \"kind\": \"app\",\r\n \"resourceGroup\": \"ps9712\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"mdmId\": \"waws-prod-bay-141_10811\",\r\n \"targetWorkerCount\": 0,\r\n \"targetWorkerSizeId\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"webSiteId\": null,\r\n \"existingServerFarmIds\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/sites/ps245?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTcxMi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI0NT9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cfcae76d-48b0-408c-b2aa-bc5896adeaea"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "be4a5262-0bf5-4cb7-a8a7-8d1bf35d75e6"
+ ],
+ "x-ms-correlation-request-id": [
+ "be4a5262-0bf5-4cb7-a8a7-8d1bf35d75e6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110541Z:be4a5262-0bf5-4cb7-a8a7-8d1bf35d75e6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:05:40 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "135"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Web/sites/ps245' under resource group 'ps9712' was not found.\"\r\n }\r\n}",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/sites/ps245?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTcxMi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI0NT9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4d429751-f2d5-42ab-8cdf-63086c771ad7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1D5F214DBAA4095\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5d461282-2d06-48e7-b42b-1592d47d91d3"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-correlation-request-id": [
+ "797da331-a7ca-4dab-8c6c-4a42250b8dbc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110608Z:797da331-a7ca-4dab-8c6c-4a42250b8dbc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:06:07 GMT"
+ ],
+ "Content-Length": [
+ "3036"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/sites/ps245\",\r\n \"name\": \"ps245\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"name\": \"ps245\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"ps245.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"ps9712-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-141.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/ps9712-WestUSwebspace/sites/ps245\",\r\n \"repositorySiteName\": \"ps245\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"ps245.azurewebsites.net\",\r\n \"ps245.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"ps245.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"ps245.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/serverfarms/ps8024\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-03-04T11:05:47.5933333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"ps245\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"1C070147F36DA544F87B294FDA7F586F1C03DDD8C8129C23A5A85A9F5CE81F4D\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"40.112.243.8\",\r\n \"possibleInboundIpAddresses\": \"40.112.243.8\",\r\n \"outboundIpAddresses\": \"40.112.243.8,52.160.87.144,52.160.81.29,40.83.173.84,52.160.87.145\",\r\n \"possibleOutboundIpAddresses\": \"40.112.243.8,52.160.87.144,52.160.81.29,40.83.173.84,52.160.87.145,52.160.69.205,40.118.207.199,52.160.67.221,52.160.67.220,52.160.67.45\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-141\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"ps9712\",\r\n \"defaultHostName\": \"ps245.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/sites/ps245?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTcxMi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI0NT9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "41aaf934-f3df-4bbd-a7da-8eba6730d3fa"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1D5F214DBAA4095\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "02611c13-a5ce-470c-a912-39abc3ea1e5a"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-correlation-request-id": [
+ "27afc9e8-7e61-45a1-a4c9-c5589b020e4e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110633Z:27afc9e8-7e61-45a1-a4c9-c5589b020e4e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:06:33 GMT"
+ ],
+ "Content-Length": [
+ "3036"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/sites/ps245\",\r\n \"name\": \"ps245\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"name\": \"ps245\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"ps245.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"ps9712-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-141.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/ps9712-WestUSwebspace/sites/ps245\",\r\n \"repositorySiteName\": \"ps245\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"ps245.azurewebsites.net\",\r\n \"ps245.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"ps245.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"ps245.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/serverfarms/ps8024\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-03-04T11:05:47.5933333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"ps245\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"1C070147F36DA544F87B294FDA7F586F1C03DDD8C8129C23A5A85A9F5CE81F4D\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"40.112.243.8\",\r\n \"possibleInboundIpAddresses\": \"40.112.243.8\",\r\n \"outboundIpAddresses\": \"40.112.243.8,52.160.87.144,52.160.81.29,40.83.173.84,52.160.87.145\",\r\n \"possibleOutboundIpAddresses\": \"40.112.243.8,52.160.87.144,52.160.81.29,40.83.173.84,52.160.87.145,52.160.69.205,40.118.207.199,52.160.67.221,52.160.67.220,52.160.67.45\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-141\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"ps9712\",\r\n \"defaultHostName\": \"ps245.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/ps9712?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlZ3JvdXBzL3BzOTcxMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8a823c51-4d8c-475d-80f2-cfddc2e63e49"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-request-id": [
+ "a53a9c1f-0619-4597-8ce3-d102de5c896e"
+ ],
+ "x-ms-correlation-request-id": [
+ "a53a9c1f-0619-4597-8ce3-d102de5c896e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110541Z:a53a9c1f-0619-4597-8ce3-d102de5c896e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:05:41 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "165"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712\",\r\n \"name\": \"ps9712\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/sites/ps245?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTcxMi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI0NT9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/serverFarms/ps8024\"\r\n },\r\n \"location\": \"West US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "dbf388f9-6697-4b6c-ad12-abf7073bdb62"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "194"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1D5F214DBAA4095\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "92a116aa-6e29-44c9-888b-c01c1074215f"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "499"
+ ],
+ "x-ms-correlation-request-id": [
+ "5491e08f-059e-49d5-a9a0-6e749ffa2ca8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110606Z:5491e08f-059e-49d5-a9a0-6e749ffa2ca8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:06:05 GMT"
+ ],
+ "Content-Length": [
+ "3038"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/sites/ps245\",\r\n \"name\": \"ps245\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"name\": \"ps245\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"ps245.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"ps9712-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-141.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/ps9712-WestUSwebspace/sites/ps245\",\r\n \"repositorySiteName\": \"ps245\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"ps245.azurewebsites.net\",\r\n \"ps245.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"ps245.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"ps245.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/serverfarms/ps8024\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-03-04T11:05:47.5166667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"ps245\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"1C070147F36DA544F87B294FDA7F586F1C03DDD8C8129C23A5A85A9F5CE81F4D\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"40.112.243.8\",\r\n \"possibleInboundIpAddresses\": \"40.112.243.8\",\r\n \"outboundIpAddresses\": \"40.112.243.8,52.160.87.144,52.160.81.29,40.83.173.84,52.160.87.145\",\r\n \"possibleOutboundIpAddresses\": \"40.112.243.8,52.160.87.144,52.160.81.29,40.83.173.84,52.160.87.145,52.160.69.205,40.118.207.199,52.160.67.221,52.160.67.220,52.160.67.45\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-141\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"ps9712\",\r\n \"defaultHostName\": \"ps245.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/sites/ps245/config/web?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTcxMi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI0NS9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTgtMTEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "aec618b3-c837-4848-a6d4-43cca7b75d45"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7c7ac9a8-deae-4af1-ab58-a401e9db6c0f"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-correlation-request-id": [
+ "7b8f98f7-7320-4ece-90ea-f1172c202474"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110606Z:7b8f98f7-7320-4ece-90ea-f1172c202474"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:06:05 GMT"
+ ],
+ "Content-Length": [
+ "2990"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/sites/ps245/config/web\",\r\n \"name\": \"ps245\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps245\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"reservedInstanceCount\": 0,\r\n \"preWarmedInstanceCount\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/sites/ps245/config/web?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTcxMi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI0NS9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTgtMTEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0a94970f-f467-4a3b-8517-e0c20a9ec3b3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c6bba787-4fda-4909-bb3d-d428d9ca342e"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-correlation-request-id": [
+ "e2b47759-ab6b-4947-a008-8b3c2e558eb4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110608Z:e2b47759-ab6b-4947-a008-8b3c2e558eb4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:06:07 GMT"
+ ],
+ "Content-Length": [
+ "2990"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/sites/ps245/config/web\",\r\n \"name\": \"ps245\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps245\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"reservedInstanceCount\": 0,\r\n \"preWarmedInstanceCount\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/sites/ps245/config/web?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTcxMi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI0NS9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTgtMTEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "65938190-b5ff-4e8b-8f7f-174289aebfa6"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9e10fa10-2191-47fd-91dc-f5dd75251b42"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "x-ms-correlation-request-id": [
+ "fdb29381-792c-42eb-aea6-e2377818dad7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110633Z:fdb29381-792c-42eb-aea6-e2377818dad7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:06:33 GMT"
+ ],
+ "Content-Length": [
+ "2990"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/sites/ps245/config/web\",\r\n \"name\": \"ps245\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps245\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"reservedInstanceCount\": 0,\r\n \"preWarmedInstanceCount\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/sites/ps245/config/appsettings/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTcxMi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI0NS9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "708dfa18-1e61-475e-96eb-dccbc54646a7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "395ef249-b337-4c79-a164-1d252bc38409"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "396be41d-fc84-41d4-9d12-496f342f572d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110607Z:396be41d-fc84-41d4-9d12-496f342f572d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:06:06 GMT"
+ ],
+ "Content-Length": [
+ "269"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/sites/ps245/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"6.9.1\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/sites/ps245/config/appsettings/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTcxMi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI0NS9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f026be8b-a4b7-4857-9dee-d636f8aa26e2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a38c4c12-ba28-40de-b0da-5209cdbc3234"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11997"
+ ],
+ "x-ms-correlation-request-id": [
+ "9df95ba4-52d0-4925-b312-1b6477fe78ec"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110609Z:9df95ba4-52d0-4925-b312-1b6477fe78ec"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:06:08 GMT"
+ ],
+ "Content-Length": [
+ "269"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/sites/ps245/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"6.9.1\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/sites/ps245/config/appsettings/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTcxMi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI0NS9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "48716c17-54d9-438e-a4b9-78b7b133dd6a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "54408d0b-25a3-4d2d-887d-61fc774bb363"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11994"
+ ],
+ "x-ms-correlation-request-id": [
+ "96431fe0-36e4-4e6e-bc22-9253914d9e5d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110633Z:96431fe0-36e4-4e6e-bc22-9253914d9e5d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:06:33 GMT"
+ ],
+ "Content-Length": [
+ "269"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/sites/ps245/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"6.9.1\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/sites/ps245/config/connectionstrings/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTcxMi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI0NS9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c53e65ee-814d-4582-82a3-62ecc77df2f5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8bc980b6-c302-46e1-aeeb-e6d61a14923f"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "188830ea-cb2c-43e5-8d5a-dd0e62584e2f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110607Z:188830ea-cb2c-43e5-8d5a-dd0e62584e2f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:06:06 GMT"
+ ],
+ "Content-Length": [
+ "243"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/sites/ps245/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/sites/ps245/config/connectionstrings/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTcxMi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI0NS9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e5f4f98f-92c4-4728-9a99-71efd1433154"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "17016648-3fee-4c2f-95df-756f4e2fdb26"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11996"
+ ],
+ "x-ms-correlation-request-id": [
+ "f84f3fb2-1f5d-47bd-9429-9d676539d413"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110609Z:f84f3fb2-1f5d-47bd-9429-9d676539d413"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:06:08 GMT"
+ ],
+ "Content-Length": [
+ "243"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/sites/ps245/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/sites/ps245/config/connectionstrings/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTcxMi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI0NS9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "53d4112f-0f64-4457-80d9-f757f8a262b0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ae311219-1c98-428a-b68b-c79c5f9773f5"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11993"
+ ],
+ "x-ms-correlation-request-id": [
+ "7f5b937d-0db5-4080-8d65-a50c39e67aad"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110634Z:7f5b937d-0db5-4080-8d65-a50c39e67aad"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:06:34 GMT"
+ ],
+ "Content-Length": [
+ "243"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/sites/ps245/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/sites/ps245/publishxml?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTcxMi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI0NS9wdWJsaXNoeG1sP2FwaS12ZXJzaW9uPTIwMTgtMTEtMDE=",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"format\": \"WebDeploy\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8ce16abd-83a1-4d5f-9394-4c470e2f1cb8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "29"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11999"
+ ],
+ "x-ms-request-id": [
+ "ae5d69ec-8178-4e03-b425-eb2e053e1ea5"
+ ],
+ "x-ms-correlation-request-id": [
+ "ae5d69ec-8178-4e03-b425-eb2e053e1ea5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110607Z:ae5d69ec-8178-4e03-b425-eb2e053e1ea5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:06:06 GMT"
+ ],
+ "Content-Length": [
+ "1483"
+ ],
+ "Content-Type": [
+ "application/xml"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/sites/ps245/config/azurestorageaccounts/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTcxMi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI0NS9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a41ba7f0-3927-41df-8b28-4b5203f8ccb3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "933267eb-a746-42cd-9c95-a7384165072e"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11995"
+ ],
+ "x-ms-correlation-request-id": [
+ "e9ab4d39-d68c-4c0f-a50c-eba89a4aa743"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110609Z:e9ab4d39-d68c-4c0f-a50c-eba89a4aa743"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:06:08 GMT"
+ ],
+ "Content-Length": [
+ "240"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/sites/ps245/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/sites/ps245/config/azurestorageaccounts/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTcxMi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI0NS9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "023d55f6-fa51-4717-baaf-a194a139a094"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "30d518af-e3a8-4199-8408-f74f690b0220"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11992"
+ ],
+ "x-ms-correlation-request-id": [
+ "0e96f078-7e37-42ad-b016-10012be21d86"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110634Z:0e96f078-7e37-42ad-b016-10012be21d86"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:06:34 GMT"
+ ],
+ "Content-Length": [
+ "240"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/sites/ps245/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/sites/ps245/slots/staging?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTcxMi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI0NS9zbG90cy9zdGFnaW5nP2FwaS12ZXJzaW9uPTIwMTgtMTEtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/serverfarms/ps8024\"\r\n },\r\n \"location\": \"West US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "517811a8-0f09-4360-8026-1a68926423e8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "194"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1D5F214DBAA4095\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1c68d018-98da-4118-bcd2-88dadb637590"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "499"
+ ],
+ "x-ms-correlation-request-id": [
+ "d2539d40-7a27-47fa-9b0b-7c06f7cf8a85"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110631Z:d2539d40-7a27-47fa-9b0b-7c06f7cf8a85"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:06:31 GMT"
+ ],
+ "Content-Length": [
+ "3123"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/sites/ps245/slots/staging\",\r\n \"name\": \"ps245/staging\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"name\": \"ps245(staging)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"ps245-staging.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"ps9712-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-141.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/ps9712-WestUSwebspace/sites/ps245\",\r\n \"repositorySiteName\": \"ps245\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"ps245-staging.azurewebsites.net\",\r\n \"ps245-staging.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"ps245-staging.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"ps245-staging.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/serverfarms/ps8024\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-03-04T11:06:13.3\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"ps245__1c51\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"D7A0217BBC593B7077098D5678FF0AFF60B2F73BBF083392CED576631D3300E9\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"40.112.243.8\",\r\n \"possibleInboundIpAddresses\": \"40.112.243.8\",\r\n \"outboundIpAddresses\": \"40.112.243.8,52.160.87.144,52.160.81.29,40.83.173.84,52.160.87.145\",\r\n \"possibleOutboundIpAddresses\": \"40.112.243.8,52.160.87.144,52.160.81.29,40.83.173.84,52.160.87.145,52.160.69.205,40.118.207.199,52.160.67.221,52.160.67.220,52.160.67.45\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-141\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"ps9712\",\r\n \"defaultHostName\": \"ps245-staging.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/sites/ps245/slots/staging/config/web?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTcxMi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI0NS9zbG90cy9zdGFnaW5nL2NvbmZpZy93ZWI/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "49663185-1e06-45e6-a551-7893bbe77766"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "72522c0d-1181-41f9-93b3-1750d6b3f582"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-correlation-request-id": [
+ "5644b283-e802-4f7b-ab38-d41065b584d1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110631Z:5644b283-e802-4f7b-ab38-d41065b584d1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:06:31 GMT"
+ ],
+ "Content-Length": [
+ "3017"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/sites/ps245/slots/staging/config/web\",\r\n \"name\": \"ps245\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps245__staging\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"reservedInstanceCount\": 0,\r\n \"preWarmedInstanceCount\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/sites/ps245/slots/staging/config/appsettings/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTcxMi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI0NS9zbG90cy9zdGFnaW5nL2NvbmZpZy9hcHBzZXR0aW5ncy9saXN0P2FwaS12ZXJzaW9uPTIwMTgtMTEtMDE=",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5f798df5-6d20-44be-b663-c9c519929440"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "128b3155-bc81-48ec-9c3d-23fc36703ac0"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "122312b2-2bd0-45a3-a533-ff6cc5bf4dd3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110632Z:122312b2-2bd0-45a3-a533-ff6cc5bf4dd3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:06:31 GMT"
+ ],
+ "Content-Length": [
+ "283"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/sites/ps245/slots/staging/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"6.9.1\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/sites/ps245/slots/staging/config/connectionstrings/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTcxMi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI0NS9zbG90cy9zdGFnaW5nL2NvbmZpZy9jb25uZWN0aW9uc3RyaW5ncy9saXN0P2FwaS12ZXJzaW9uPTIwMTgtMTEtMDE=",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "af60fd9a-abeb-48e4-bd28-87845b848856"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "fc4edd9e-82b4-4e89-9571-5817c539faf5"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "d0bcd703-b621-4ae4-9189-9cf3dbbcae6e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110632Z:d0bcd703-b621-4ae4-9189-9cf3dbbcae6e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:06:32 GMT"
+ ],
+ "Content-Length": [
+ "257"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/sites/ps245/slots/staging/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/sites/ps245/slots/staging/config/azurestorageaccounts/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTcxMi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI0NS9zbG90cy9zdGFnaW5nL2NvbmZpZy9henVyZXN0b3JhZ2VhY2NvdW50cy9saXN0P2FwaS12ZXJzaW9uPTIwMTgtMTEtMDE=",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f66e3689-5784-41aa-8249-d328cfc37c20"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3414f5df-8d07-411a-b01d-daaf81f71f94"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11997"
+ ],
+ "x-ms-correlation-request-id": [
+ "9b418631-c642-44c3-9b7d-4c726b812765"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110632Z:9b418631-c642-44c3-9b7d-4c726b812765"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:06:32 GMT"
+ ],
+ "Content-Length": [
+ "254"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/sites/ps245/slots/staging/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/sites/ps245/config/web?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTcxMi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczI0NS9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTgtMTEtMDE=",
+ "RequestMethod": "PATCH",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"httpLoggingEnabled\": false,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps245\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_NODE_DEFAULT_VERSION\",\r\n \"value\": \"6.9.1\"\r\n }\r\n ],\r\n \"connectionStrings\": [],\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false\r\n }\r\n ],\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"ps245-staging.azurewebsites.net\",\r\n \"reroutePercentage\": 15.0,\r\n \"name\": \"staging\"\r\n }\r\n ]\r\n },\r\n \"autoHealEnabled\": false,\r\n \"vnetName\": \"\",\r\n \"localMySqlEnabled\": false,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"reservedInstanceCount\": 0\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d8ae4e38-685d-4507-adba-bc2649972d0b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "2092"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1D5F214DBAA4095\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "844264a2-e57e-4b75-8096-8cabf5c7636a"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-correlation-request-id": [
+ "904a570f-2234-4a7d-8f51-deda0d75220a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110636Z:904a570f-2234-4a7d-8f51-deda0d75220a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:06:36 GMT"
+ ],
+ "Content-Length": [
+ "3440"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9712/providers/Microsoft.Web/sites/ps245\",\r\n \"name\": \"ps245\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps245\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [\r\n {\r\n \"actionHostName\": \"ps245-staging.azurewebsites.net\",\r\n \"reroutePercentage\": 15.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"staging\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"ps245-staging.azurewebsites.net\",\r\n \"reroutePercentage\": 15.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"staging\"\r\n }\r\n ]\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"reservedInstanceCount\": 0,\r\n \"preWarmedInstanceCount\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/ps9712?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlZ3JvdXBzL3BzOTcxMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e6eaa1f0-7ca4-407a-8073-8acfa1215c16"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-request-id": [
+ "5f7d27c1-06d8-42c6-a845-871e68c68b38"
+ ],
+ "x-ms-correlation-request-id": [
+ "5f7d27c1-06d8-42c6-a845-871e68c68b38"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110642Z:5f7d27c1-06d8-42c6-a845-871e68c68b38"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:06:41 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprM01USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-request-id": [
+ "b863d86a-65e5-4b15-a30c-2e231d1da8ab"
+ ],
+ "x-ms-correlation-request-id": [
+ "b863d86a-65e5-4b15-a30c-2e231d1da8ab"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110658Z:b863d86a-65e5-4b15-a30c-2e231d1da8ab"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:06:58 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprM01USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-request-id": [
+ "c6287356-ad3a-403c-ae14-7be3783e3713"
+ ],
+ "x-ms-correlation-request-id": [
+ "c6287356-ad3a-403c-ae14-7be3783e3713"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110713Z:c6287356-ad3a-403c-ae14-7be3783e3713"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:07:13 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprM01USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-request-id": [
+ "10fec0cb-9811-4f82-a225-646e4004df6f"
+ ],
+ "x-ms-correlation-request-id": [
+ "10fec0cb-9811-4f82-a225-646e4004df6f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110729Z:10fec0cb-9811-4f82-a225-646e4004df6f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:07:28 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprM01USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-request-id": [
+ "7ba59525-c01b-4832-8fb6-2168f5ceda5d"
+ ],
+ "x-ms-correlation-request-id": [
+ "7ba59525-c01b-4832-8fb6-2168f5ceda5d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110744Z:7ba59525-c01b-4832-8fb6-2168f5ceda5d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:07:44 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprM01USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-request-id": [
+ "565eb981-7e42-4b4a-a608-1f25cde86d2f"
+ ],
+ "x-ms-correlation-request-id": [
+ "565eb981-7e42-4b4a-a608-1f25cde86d2f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110800Z:565eb981-7e42-4b4a-a608-1f25cde86d2f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:07:59 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprM01USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-request-id": [
+ "647786b3-4e6e-42dd-bf56-f8063a0f85f8"
+ ],
+ "x-ms-correlation-request-id": [
+ "647786b3-4e6e-42dd-bf56-f8063a0f85f8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110815Z:647786b3-4e6e-42dd-bf56-f8063a0f85f8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:08:14 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprM01USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-request-id": [
+ "f4826eb1-1a97-4611-a183-87ad828b4ee0"
+ ],
+ "x-ms-correlation-request-id": [
+ "f4826eb1-1a97-4611-a183-87ad828b4ee0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110831Z:f4826eb1-1a97-4611-a183-87ad828b4ee0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:08:31 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprM01USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-request-id": [
+ "f0a2d6c7-76c9-4fc7-a312-76b6c6e82955"
+ ],
+ "x-ms-correlation-request-id": [
+ "f0a2d6c7-76c9-4fc7-a312-76b6c6e82955"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110846Z:f0a2d6c7-76c9-4fc7-a312-76b6c6e82955"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:08:46 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprM01USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "x-ms-request-id": [
+ "786e9b10-4698-407e-9b8d-152995f1da0b"
+ ],
+ "x-ms-correlation-request-id": [
+ "786e9b10-4698-407e-9b8d-152995f1da0b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110902Z:786e9b10-4698-407e-9b8d-152995f1da0b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:09:01 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprM01USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "x-ms-request-id": [
+ "1777e470-e144-423a-9efa-d7e7e0541dbe"
+ ],
+ "x-ms-correlation-request-id": [
+ "1777e470-e144-423a-9efa-d7e7e0541dbe"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110917Z:1777e470-e144-423a-9efa-d7e7e0541dbe"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:09:16 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprM01USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
+ ],
+ "x-ms-request-id": [
+ "e251ccda-7918-4da4-b69c-b0d455c43fe5"
+ ],
+ "x-ms-correlation-request-id": [
+ "e251ccda-7918-4da4-b69c-b0d455c43fe5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110933Z:e251ccda-7918-4da4-b69c-b0d455c43fe5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:09:32 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprM01USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11986"
+ ],
+ "x-ms-request-id": [
+ "68761f0e-828b-41ba-a5d2-31194df9bb3a"
+ ],
+ "x-ms-correlation-request-id": [
+ "68761f0e-828b-41ba-a5d2-31194df9bb3a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T110948Z:68761f0e-828b-41ba-a5d2-31194df9bb3a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:09:47 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprM01USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11985"
+ ],
+ "x-ms-request-id": [
+ "f404fa71-49a2-4bb7-9d97-cdb6c2ab1f49"
+ ],
+ "x-ms-correlation-request-id": [
+ "f404fa71-49a2-4bb7-9d97-cdb6c2ab1f49"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111004Z:f404fa71-49a2-4bb7-9d97-cdb6c2ab1f49"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:10:04 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprM01USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11984"
+ ],
+ "x-ms-request-id": [
+ "26d5d85d-1f02-4606-ad40-b663c6580a6d"
+ ],
+ "x-ms-correlation-request-id": [
+ "26d5d85d-1f02-4606-ad40-b663c6580a6d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111019Z:26d5d85d-1f02-4606-ad40-b663c6580a6d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:10:19 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprM01USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11983"
+ ],
+ "x-ms-request-id": [
+ "135f94f2-7f74-4a87-a95a-1994c0ca5258"
+ ],
+ "x-ms-correlation-request-id": [
+ "135f94f2-7f74-4a87-a95a-1994c0ca5258"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111035Z:135f94f2-7f74-4a87-a95a-1994c0ca5258"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:10:34 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk3MTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprM01USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11982"
+ ],
+ "x-ms-request-id": [
+ "d9eb86b5-4e6f-45d1-bb96-1c47db623ca6"
+ ],
+ "x-ms-correlation-request-id": [
+ "d9eb86b5-4e6f-45d1-bb96-1c47db623ca6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111035Z:d9eb86b5-4e6f-45d1-bb96-1c47db623ca6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:10:35 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-AddWebAppTrafficRoutingRule": [
+ "ps9712",
+ "ps245",
+ "ps8024"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "04b0639d-85d8-445a-bada-8da78e50ff30"
+ }
+}
\ No newline at end of file
diff --git a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.RoutingRuleTests/TestGetWebAppTrafficRoutingRule.json b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.RoutingRuleTests/TestGetWebAppTrafficRoutingRule.json
new file mode 100644
index 000000000000..c04277a7e180
--- /dev/null
+++ b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.RoutingRuleTests/TestGetWebAppTrafficRoutingRule.json
@@ -0,0 +1,3416 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Byb3ZpZGVycy8/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "64865742-516f-4b3d-9fb3-5d58d30c0f9c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-request-id": [
+ "8ece2d5f-2086-4eb8-ad40-6bac1aa3dd73"
+ ],
+ "x-ms-correlation-request-id": [
+ "8ece2d5f-2086-4eb8-ad40-6bac1aa3dd73"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112026Z:8ece2d5f-2086-4eb8-ad40-6bac1aa3dd73"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:20:25 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "727422"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ResourceHealth\",\r\n \"namespace\": \"Microsoft.ResourceHealth\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8bdebf23-c0fe-4187-a378-717ad86f6a53\",\r\n \"roleDefinitionId\": \"cc026344-c8b1-4561-83ba-59eba84b27cc\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilityStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-rc\",\r\n \"2018-08-01-preview\",\r\n \"2018-07-01-rc\",\r\n \"2018-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"childAvailabilityStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-06-beta\",\r\n \"2018-08-01-rc\",\r\n \"2018-08-01-preview\",\r\n \"2018-07-01-rc\",\r\n \"2018-07-01-preview\",\r\n \"2018-07-01-beta\",\r\n \"2017-07-01-rc\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01-beta\",\r\n \"2015-01-01-rc\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"childResources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-06-beta\",\r\n \"2018-08-01-rc\",\r\n \"2018-08-01-preview\",\r\n \"2018-07-01-rc\",\r\n \"2018-07-01-preview\",\r\n \"2018-07-01-beta\",\r\n \"2017-07-01-rc\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01-beta\",\r\n \"2015-01-01-rc\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"events\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-rc\",\r\n \"2018-07-01-preview\",\r\n \"2018-07-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"metadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-rc\",\r\n \"2018-07-01-preview\",\r\n \"2018-07-01-beta\",\r\n \"2018-07-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"emergingissues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-06-beta\",\r\n \"2018-07-01-rc\",\r\n \"2018-07-01-preview\",\r\n \"2018-07-01-beta\",\r\n \"2018-07-01-alpha\",\r\n \"2018-07-01\",\r\n \"2017-07-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifications\",\r\n \"locations\": [\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"ea2f600a-4980-45b7-89bf-d34da487bda1\",\r\n \"roleDefinitionId\": \"54d7f2e3-5040-48a7-ae90-eebf629cfa0b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\",\r\n \"2018-12-01-preview\",\r\n \"2018-09-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-01-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-01-01-preview\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"denyAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\r\n \"2018-07-01-preview\",\r\n \"2018-07-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-09-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-01-01\",\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"policySetDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-01-01\",\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-01-01\",\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity, SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"dataAliases\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"elevateAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"findOrphanRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"roleAssignmentsUsageMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.MachineLearningServices\",\r\n \"namespace\": \"Microsoft.MachineLearningServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n {\r\n \"applicationId\": \"18a66f5f-dbdf-4c17-9dd7-1634712a9cbe\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n {\r\n \"applicationId\": \"9fcb3732-5f52-4135-8c08-9d4bbaf203ea\",\r\n \"roleDefinitionId\": \"703B89C7-CE2C-431B-BDD8-FA34E39AF696\",\r\n \"managedByRoleDefinitionId\": \"90B8E153-EBFF-4073-A95F-4DAD56B14C78\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"Canada Central\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/computes\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/eventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/computeOperationsStatus\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/workspaceOperationsStatus\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmsizes\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/updatequotas\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.CertificateRegistration\",\r\n \"namespace\": \"Microsoft.CertificateRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3c21649-0979-4721-ac85-b0216b2cf413\",\r\n \"roleDefinitionId\": \"933fba7e-2ed3-4da8-973d-8bd8298a9b40\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"certificateOrders\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"certificateOrders/certificates\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateCertificateRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validate\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"isusernameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/getNetworkPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"France Central\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/networkConfig\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/networkConfig\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2015-01-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2015-01-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"West India\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-02-01\",\r\n \"2019-01-01\",\r\n \"2018-11-01\",\r\n \"2018-08-01\",\r\n \"2018-05-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-02-01\",\r\n \"2018-11-01\",\r\n \"2018-08-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-02-01\",\r\n \"2018-11-01\",\r\n \"2018-08-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedSites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedSites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-11-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"customApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/listWsdlInterfaces\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extractApiDefinitionFromWsdl\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runtimes\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/apiOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connectionGateways\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/connectionGatewayInstallations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingMeters\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"verifyHostingEnvironmentVnet\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/eventGridFilters\",\r\n \"locations\": [\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/eventGridFilters\",\r\n \"locations\": [\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2015-01-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/eventGridFilters\",\r\n \"locations\": [\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2015-01-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ManagedIdentity\",\r\n \"namespace\": \"Microsoft.ManagedIdentity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Identities\",\r\n \"locations\": [\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-30\",\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"userAssignedIdentities\",\r\n \"locations\": [\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-30\",\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-30\",\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6bccf540-eb86-4037-af03-7fa058c2db75\",\r\n \"roleDefinitionId\": \"89dcede2-9219-403a-9723-d3c6473f9472\"\r\n },\r\n {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n {\r\n \"applicationId\": \"035f9e1d-4f00-4419-bf50-bf2d87eb4878\",\r\n \"roleDefinitionId\": \"323795fe-ba3d-4f5a-ad42-afb4e1ea9485\"\r\n },\r\n {\r\n \"applicationId\": \"f5c26e74-f226-4ae8-85f0-b4af0080ac9e\",\r\n \"roleDefinitionId\": \"529d7ae6-e892-4d43-809d-8547aeb90643\"\r\n },\r\n {\r\n \"applicationId\": \"b503eb83-1222-4dcc-b116-b98ed5216e05\",\r\n \"roleDefinitionId\": \"68699c37-c689-44d4-9248-494b782d46ae\"\r\n },\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n },\r\n {\r\n \"applicationId\": \"3af5a1e8-2459-45cb-8683-bcd6cccbcc13\",\r\n \"roleDefinitionId\": \"b1309299-720d-4159-9897-6158a61aee41\"\r\n },\r\n {\r\n \"applicationId\": \"6a0a243c-0886-468a-a4c2-eff52c7445da\",\r\n \"roleDefinitionId\": \"d2eda64b-c5e6-4930-8642-2d80ecd7c2e2\"\r\n },\r\n {\r\n \"applicationId\": \"707be275-6b9d-4ee7-88f9-c0c2bd646e0f\",\r\n \"roleDefinitionId\": \"fa027d90-6ba0-4c33-9a54-59edaf2327e7\"\r\n },\r\n {\r\n \"applicationId\": \"461e8683-5575-4561-ac7f-899cc907d62a\",\r\n \"roleDefinitionId\": \"68699c37-c689-44d4-9248-494b782d46ae\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/query\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Australia Southeast\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/events\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"scheduledqueryrules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-16\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/pricingPlans\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"migrateToNewPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rollbackToLegacyPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listMigrationdate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logprofiles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"migratealertrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricalerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2016-09-01-preview\",\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vmInsightsOnboardingStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-27-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2015-07-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"extendedDiagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"logDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"eventCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"metricbatch\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"actiongroups\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2018-09-01\",\r\n \"2018-03-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"activityLogAlerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"baseline\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"metricbaselines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"calculatebaseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"workbooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"South Africa North\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-17-preview\",\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"workbooktemplates\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"South Africa North\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"myWorkbooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-17-preview\",\r\n \"2018-06-15-preview\",\r\n \"2018-06-01-preview\",\r\n \"2016-06-15-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"transactions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"topology\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"privateLinkScopes\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateLinkScopes/privateEndpointConnections\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateLinkScopes/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateLinkScopes/scopedResources\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateLinkScopeOperationStatuses\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-11-15\",\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domainNames/internalLoadBalancers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/serviceCertificates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"moveSubscriptionResources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateSubscriptionMoveAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystems\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystemFamilies\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/remoteVirtualNetworkPeeringProxies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections/peerings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"osImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"osPlatformImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n },\r\n {\r\n \"applicationId\": \"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"372140e0-b3b7-4226-8ef9-d57986796201\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab\",\r\n \"roleDefinitionId\": \"6efa92ca-56b6-40af-a468-5e3d2b5232f0\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"proximityPlacementGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/artifactPublishers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diskEncryptionSets\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations/vsmoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UK West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"France South\",\r\n \"West US 2\",\r\n \"Japan West\",\r\n \"France Central\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n {\r\n \"applicationId\": \"737d58c1-397a-46e7-9d12-7d8c830883c2\",\r\n \"roleDefinitionId\": \"716bb53a-0390-4428-bf41-b1bedde7d751\"\r\n },\r\n {\r\n \"applicationId\": \"918d0db8-4a38-4938-93c1-9313bdfe0272\",\r\n \"roleDefinitionId\": \"dcd2d2c9-3f80-4d72-95a8-2593111b4b12\"\r\n },\r\n {\r\n \"applicationId\": \"d2fa1650-4805-4a83-bcb9-cf41fe63539c\",\r\n \"roleDefinitionId\": \"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2\"\r\n },\r\n {\r\n \"applicationId\": \"a4c95b9e-3994-40cc-8953-5dc66d48348d\",\r\n \"roleDefinitionId\": \"dc88c655-90fa-48d9-8d51-003cc8738508\"\r\n },\r\n {\r\n \"applicationId\": \"62c559cd-db0c-4da0-bab2-972528c65d42\",\r\n \"roleDefinitionId\": \"437b639a-6d74-491d-959f-d172e8c5c1fc\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"registries/scopeMaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/tokens\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/generateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/privateEndpointConnections\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/privateLinkResources\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/importImage\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/scheduleRun\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/runs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/taskRuns\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/runs/listLogSasUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/runs/cancel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/tasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"registries/tasks/listDetails\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/getBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/queueBuild\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/getLogLink\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/cancel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/listSourceRepositoryProperties\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps/listBuildArguments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/replications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/ping\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/getCallbackConfig\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/listEvents\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setupAuth\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/authorize\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listUsages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/updatePolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/eventGridFilters\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n {\r\n \"applicationId\": \"6201d19e-14fb-4472-a2d6-5634a5c97568\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/networkrulesets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableClusterRegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n },\r\n {\r\n \"applicationId\": \"589d5083-6f11-4d30-a62a-a4b316a14abf\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/eventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n },\r\n {\r\n \"applicationId\": \"19947cfd-0303-466c-ac3c-fcc19a7a1570\",\r\n \"roleDefinitionId\": \"d813ab6c-bfb7-413e-9462-005b21f0ce09\"\r\n },\r\n {\r\n \"applicationId\": \"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd\",\r\n \"roleDefinitionId\": \"8141843c-c51c-4c1e-a5bf-0d351594b86c\"\r\n },\r\n {\r\n \"applicationId\": \"328fd23b-de6e-462c-9433-e207470a5727\",\r\n \"roleDefinitionId\": \"79e29e06-4056-41e5-a6b2-959f1f47747e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"privateEndpointRedirectMaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceEndpointPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkIntentPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPPrefixes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ddosCustomPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/flowLogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/pingMeshes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serviceTags\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availablePrivateEndpointTypes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableServiceAliases\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkPrivateLinkServiceVisibility\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/autoApprovedPrivateLinkServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getDnsResourceReference\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"internalNotify\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/virtualNetworkLinks\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableServerVariables\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableRequestHeaders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableResponseHeaders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualWans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnSites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnServerConfigurations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"p2sVpnGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"firewallPolicies\",\r\n \"locations\": [\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ipGroups\",\r\n \"locations\": [\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/nfvOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/nfvOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"azureFirewalls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewallFqdnTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkTaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"privateLinkServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"networkProfiles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFrontdoorNameAvailability\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontdoors\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-03-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallManagedRuleSets\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkExperimentProfiles\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/bareMetalTenants\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"bastionHosts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualRouters\",\r\n \"locations\": [\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80a10ef9-8168-493d-abf9-3297c4ef6e3c\",\r\n \"roleDefinitionId\": \"2b7763f7-bbe2-4e19-befe-28c79f1cf7f7\"\r\n },\r\n {\r\n \"applicationId\": \"eb070ea5-bd17-41f1-ad68-5851f6e71774\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/networkrulesets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"premiumMessagingRegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventgridfilters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ServiceFabric\",\r\n \"namespace\": \"Microsoft.ServiceFabric\",\r\n \"authorization\": {\r\n \"applicationId\": \"74cb6831-0dbb-4be1-8206-fd4df301cdc2\",\r\n \"roleDefinitionId\": \"e55cc65f-6903-4917-b4ef-f8d4640b57f5\",\r\n \"managedByRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/clusterVersions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/environments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ServiceFabricMesh\",\r\n \"namespace\": \"Microsoft.ServiceFabricMesh\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d10de03d-5ba3-497a-90e6-7ff8c9736059\",\r\n \"roleDefinitionId\": \"BC13595A-E262-4621-929E-56FF90E6BF18\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"networks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"volumes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"secrets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/applicationOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/networkOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/volumeOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/gatewayOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/secretOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e4ab13ed-33cb-41b4-9140-6e264582cf85\",\r\n \"roleDefinitionId\": \"ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec\"\r\n },\r\n {\r\n \"applicationId\": \"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9\",\r\n \"roleDefinitionId\": \"45e8abf8-0ec4-44f3-9c37-cff4f7779302\"\r\n },\r\n {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n {\r\n \"applicationId\": \"76c7f279-7959-468f-8943-3954880e0d8c\",\r\n \"roleDefinitionId\": \"7f7513a8-73f9-4c5f-97a2-c41f0ea783ef\"\r\n },\r\n {\r\n \"applicationId\": \"022907d3-0f1b-48f7-badc-1ba6abab6d66\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/encryptionProtector\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceEncryptionProtectorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceEncryptionProtectorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/communicationLinks\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administrators\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAdministratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAdministratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/geoBackupPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/backupLongTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/backupShortTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/automaticTuning\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/automaticTuning\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/transparentDataEncryption\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/extendedAuditingSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-09-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAccounts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAgents\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAgents/jobs\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAgents/jobs/steps\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAgents/jobs/executions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/disasterRecoveryConfiguration\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/dnsAliases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/failoverGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/aggregatedDatabaseMetrics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries/queryText\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPools/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/extensions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPoolEstimates\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditRecords\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentScans\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/workloadGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessment\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/recommendedSensitivityLabels\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups/syncMembers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/syncAgents\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"instancePools\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/instancePoolOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instancePoolAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/administrators\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/recoverableDatabases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/metrics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/metricDefinitions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/backupLongTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionManagedInstances\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionManagedInstanceBackups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceLongTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceLongTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionManagedInstanceBackupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionManagedInstanceBackupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseCompleteRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseCompleteRestoreOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualClusters\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualClusterAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualClusterOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncMemberOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncDatabaseIds\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedShortTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedShortTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/notifyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Subscription\",\r\n \"namespace\": \"Microsoft.Subscription\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3335adb-5ca0-40dc-b8d3-bedc094e523b\"\r\n },\r\n {\r\n \"applicationId\": \"5da7367f-09c8-493e-8fd4-638089cddec3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SubscriptionDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SubscriptionOperations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CreateSubscription\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cancel\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rename\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enable\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Advisor\",\r\n \"namespace\": \"Microsoft.Advisor\",\r\n \"authorization\": {\r\n \"applicationId\": \"c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7\",\r\n \"roleDefinitionId\": \"8a63b04c-3731-409b-9765-f1175c047872\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"suppressions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"configurations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2017-04-19\",\r\n \"2017-03-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"generateRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.PolicyInsights\",\r\n \"namespace\": \"Microsoft.PolicyInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"1d78a85d-813d-46f0-b496-dd72f50a3ec0\",\r\n \"roleDefinitionId\": \"63d2b225-4c34-4641-8768-21a1f7c68ce8\"\r\n },\r\n {\r\n \"applicationId\": \"8cae6e77-e04e-42ce-b5cb-50d82bce26b1\",\r\n \"roleDefinitionId\": \"4a2d3d6b-a6ea-45e2-9882-c9ba3e726ed7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyEvents\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"policyStates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"asyncOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"remediations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"policyTrackedResources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.AlertsManagement\",\r\n \"namespace\": \"Microsoft.AlertsManagement\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"3af5a1e8-2459-45cb-8683-bcd6cccbcc13\",\r\n \"roleDefinitionId\": \"b1309299-720d-4159-9897-6158a61aee41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-05-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-11-02-privatepreview\",\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"alertsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-05-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"smartGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-05-preview\",\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorAlertRules\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"actionRules\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-05-preview\",\r\n \"2018-11-02-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"alertsList\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-02-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertsSummaryList\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-02-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertsMetaData\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-05-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ChangeAnalysis\",\r\n \"namespace\": \"Microsoft.ChangeAnalysis\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cfc91a4-7baa-4a8f-a6c9-5f3d279060b8\",\r\n \"roleDefinitionId\": \"f5a6bd90-af71-455c-9030-c486e8c42c95\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Security\",\r\n \"namespace\": \"Microsoft.Security\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8edd93e1-2103-40b4-bd70-6e34e586362d\",\r\n \"roleDefinitionId\": \"855AF4C4-82F6-414C-B1A2-628025628B9A\"\r\n },\r\n {\r\n \"applicationId\": \"fc780465-2017-40d4-a0c5-307022471b92\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatuses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"regulatoryComplianceStandards\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"regulatoryComplianceStandards/regulatoryComplianceControls\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"regulatoryComplianceStandards/regulatoryComplianceControls/regulatoryComplianceAssessments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoDismissAlertsRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionAgents\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"pricings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AutoProvisioningSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Compliances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"securityContacts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaceSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"complianceResults\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"policies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"assessments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"assessmentMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"subAssessments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"allowedConnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allowedConnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topologies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/topologies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatusesSummaries\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"InformationProtectionPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"advancedThreatProtectionSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"deviceSecurityGroups\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"iotSecuritySolutions\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"iotSecuritySolutions/analyticsModels\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"iotSecuritySolutions/analyticsModels/aggregatedAlerts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"iotSecuritySolutions/analyticsModels/aggregatedRecommendations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"settings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverVulnerabilityAssessments\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"adaptiveNetworkHardenings\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"automations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"France Central\",\r\n \"France South\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/84codes.CloudAMQP\",\r\n \"namespace\": \"84codes.CloudAMQP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Conexlink.MyCloudIT\",\r\n \"namespace\": \"Conexlink.MyCloudIT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Crypteron.DataSecurity\",\r\n \"namespace\": \"Crypteron.DataSecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/LiveArena.Broadcast\",\r\n \"namespace\": \"LiveArena.Broadcast\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Mailjet.Email\",\r\n \"namespace\": \"Mailjet.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-10-01\",\r\n \"2017-05-29\",\r\n \"2017-02-03\",\r\n \"2016-11-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.AAD\",\r\n \"namespace\": \"Microsoft.AAD\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"443155a6-77f3-45e3-882b-22b3a8d431fb\",\r\n \"roleDefinitionId\": \"7389DE79-3180-4F07-B2BA-C5BA1F01B03A\"\r\n },\r\n {\r\n \"applicationId\": \"abba844e-bc0e-44b0-947a-dc74e5d09022\",\r\n \"roleDefinitionId\": \"63BC473E-7767-42A5-A3BF-08EB71200E04\"\r\n },\r\n {\r\n \"applicationId\": \"d87dcbc6-a371-462e-88e3-28ad15ec4e64\",\r\n \"roleDefinitionId\": \"861776c5-e0df-4f95-be4f-ac1eec193323\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DomainServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"DomainServices/oucontainer\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Addons\",\r\n \"namespace\": \"Microsoft.Addons\",\r\n \"authorization\": {\r\n \"applicationId\": \"24d3987b-be4a-48e0-a3e7-11c186f39e41\",\r\n \"roleDefinitionId\": \"8004BAAB-A4CB-4981-8571-F7E44D039D93\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"supportProviders\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"addsservices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"aadsupportcases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servicehealthmetrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"anonymousapiusers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.AnalysisServices\",\r\n \"namespace\": \"Microsoft.AnalysisServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Canada East\",\r\n \"Central India\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"France Central\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.AppConfiguration\",\r\n \"namespace\": \"Microsoft.AppConfiguration\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"35ffadb3-7fc1-497e-b61b-381d28e744cc\",\r\n \"roleDefinitionId\": \"fffa409e-a8cc-4cbf-8e1c-6d940b33040e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"configurationStores\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"configurationStores/eventGridFilters\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.AppPlatform\",\r\n \"namespace\": \"Microsoft.AppPlatform\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Spring\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatus\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Attestation\",\r\n \"namespace\": \"Microsoft.Attestation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c61423b7-1d1f-430d-b444-0eee53298103\",\r\n \"roleDefinitionId\": \"7299b0b1-11da-4858-8943-7db197005959\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"attestationProviders\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"fc75330b-179d-49af-87dd-3b1acf6827fa\",\r\n \"roleDefinitionId\": \"95fd5de3-d071-4362-92bf-cf341c1de832\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-13-preview\",\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/configurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"West US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/webhooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Australia East\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/softwareUpdateConfigurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/jobs\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/privateLinkResources\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-13-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/privateEndpointConnections\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-13-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-13-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.AzureActiveDirectory\",\r\n \"namespace\": \"Microsoft.AzureActiveDirectory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"b2cDirectories\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-privatepreview\",\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-privatepreview\",\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"b2ctenants\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-02-10-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.AzureData\",\r\n \"namespace\": \"Microsoft.AzureData\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sqlServerRegistrations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-10-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-10-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sqlServerRegistrations/sqlServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-10-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.AzureStack\",\r\n \"namespace\": \"Microsoft.AzureStack\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registrations/products\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations/customerSubscriptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudManifestFiles\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.BatchAI\",\r\n \"namespace\": \"Microsoft.BatchAI\",\r\n \"authorization\": {\r\n \"applicationId\": \"9fcb3732-5f52-4135-8c08-9d4bbaf203ea\",\r\n \"roleDefinitionId\": \"703B89C7-CE2C-431B-BDD8-FA34E39AF696\",\r\n \"managedByRoleDefinitionId\": \"90B8E153-EBFF-4073-A95F-4DAD56B14C78\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/clusters\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/fileservers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments/jobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Billing\",\r\n \"namespace\": \"Microsoft.Billing\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80dbdb39-4f33-4799-8b6f-711b5e3e61b6\",\r\n \"roleDefinitionId\": \"acdc79db-513f-461d-a542-61908d543bdc\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"billingPeriods\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"invoices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingRoleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"billingRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"createBillingRoleAssignment\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/createBillingRoleAssignment\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/createBillingRoleAssignment\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/createBillingRoleAssignment\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingPermissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingRoleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingPermissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/billingRoleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/billingRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/billingPermissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/customers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/instructions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/billingRoleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/billingRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/billingPermissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/billingPermissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/elevate\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/createInvoiceSectionOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/patchOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/patchOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/productMoveOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/billingSubscriptionMoveOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/listInvoiceSectionsWithCreateSubscriptionPermission\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/BillingProfiles/patchOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-06-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/enrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-06-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/paymentMethods\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/availableBalance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoices/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingSubscriptions/invoices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/products/updateAutoRenew\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/products/updateAutoRenew\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-06-30\",\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/initiateTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/initiateTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/transfers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/transfers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers/acceptTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers/declineTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers/validateTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/initiateTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/transfers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingProperty\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/policies\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/policies\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoices/pricesheet\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/pricesheet\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/pricesheetDownloadOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/billingSubscriptions/transfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/products/transfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/products/transfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/productTransfersResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers/operationStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/agreements\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/lineOfCredit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/paymentMethods\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateAddress\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Blockchain\",\r\n \"namespace\": \"Microsoft.Blockchain\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"78827f38-7b69-4d5e-a627-d6fdd9c759a0\",\r\n \"roleDefinitionId\": \"9c68eaf3-8315-4e5c-b857-641b16b21f8f\"\r\n },\r\n {\r\n \"applicationId\": \"049d4938-2ef2-4274-aa8f-630fc9bc33d1\",\r\n \"roleDefinitionId\": \"c6dd0893-0495-488a-ac21-ee5f1ba89769\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"watchers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"blockchainMembers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/watcherOperationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/blockchainMemberOperationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/listConsortiums\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Blueprint\",\r\n \"namespace\": \"Microsoft.Blueprint\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"f71766dc-90d9-4b7d-bd9d-4499c4331c3f\",\r\n \"roleDefinitionId\": \"cb180127-cf6d-4672-9e75-e29a487f9658\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"blueprints\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"blueprints/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity, SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments/assignmentOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.BotService\",\r\n \"namespace\": \"Microsoft.BotService\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3723d34-6ff5-4ceb-a148-d99dcd2511fc\",\r\n \"roleDefinitionId\": \"71213c26-43ed-41d8-9905-3c12971517a3\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"botServices\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"botServices/channels\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"botServices/connections\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAuthServiceProviders\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Capacity\",\r\n \"namespace\": \"Microsoft.Capacity\",\r\n \"authorization\": {\r\n \"applicationId\": \"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b\",\r\n \"roleDefinitionId\": \"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-06-01\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations/revisions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliedReservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatePrice\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculateExchange\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"exchange\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/calculateRefund\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/return\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/split\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/merge\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/swap\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateReservationOrder\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/availableScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations/availableScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commercialReservationOrders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatePurchasePrice\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-privatepreview\",\r\n \"2019-06-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"placePurchaseOrder\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-privatepreview\",\r\n \"2019-06-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkPurchaseStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-privatepreview\",\r\n \"2019-06-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"authorizations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/customdomains\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/originresults\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/customdomainresults\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkResourceUsage\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateProbe\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"edgenodes\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CdnWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"CdnWebApplicationFirewallManagedRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ClassicInfrastructureMigrate\",\r\n \"namespace\": \"Microsoft.ClassicInfrastructureMigrate\",\r\n \"authorization\": {\r\n \"applicationId\": \"5e5abe2b-83cd-4786-826a-a05653ebb103\",\r\n \"roleDefinitionId\": \"766c4d9b-ef83-4f73-8352-1450a506a69b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicInfrastructureResources\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ClassicSubscription\",\r\n \"namespace\": \"Microsoft.ClassicSubscription\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.CognitiveServices\",\r\n \"namespace\": \"Microsoft.CognitiveServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"7d312290-28c8-473c-a0ed-8e53749b6d6d\",\r\n \"roleDefinitionId\": \"5cb87f79-a7c3-4a95-9414-45b65974b51b\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkSkuAvailability\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-18\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Commerce\",\r\n \"namespace\": \"Microsoft.Commerce\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"UsageAggregates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RateCard\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-31-preview\",\r\n \"2015-06-01-preview\",\r\n \"2015-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Consumption\",\r\n \"namespace\": \"Microsoft.Consumption\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c5b17a4f-cc6f-4649-9480-684280a2af3a\",\r\n \"roleDefinitionId\": \"4a2e6ae9-2713-4cc9-a3b3-312899d687c3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Forecasts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"AggregatedCost\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ReservationRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ReservationSummaries\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ReservationTransactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Balances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Marketplaces\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Pricesheets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ReservationDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Budgets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"CostTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Terms\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"UsageDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-05-01\",\r\n \"2019-04-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Charges\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"credits\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"events\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"lots\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"OperationStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-05-01\",\r\n \"2019-04-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"OperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-05-01\",\r\n \"2019-04-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ContainerInstance\",\r\n \"namespace\": \"Microsoft.ContainerInstance\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9\",\r\n \"roleDefinitionId\": \"3c60422b-a83a-428d-9830-22609c77aa6c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerGroups\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"serviceAssociationLinks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cachedImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ContainerService\",\r\n \"namespace\": \"Microsoft.ContainerService\",\r\n \"authorization\": {\r\n \"applicationId\": \"7319c514-987d-4e9b-ac3d-d38c4f427f4c\",\r\n \"roleDefinitionId\": \"1b4a0c7f-2217-416f-acfa-cf73452fdc1c\",\r\n \"managedByRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\",\r\n \"managedByAuthorization\": {\r\n \"allowManagedByInheritance\": true\r\n }\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerServices\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"managedClusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Germany North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany West Central\",\r\n \"UAE North\",\r\n \"Norway East\",\r\n \"Norway West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-08-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-08-01-preview\",\r\n \"2018-03-31\",\r\n \"2017-08-31\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"openShiftManagedClusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Central India\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-30-preview\",\r\n \"2019-04-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/openShiftClusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Central India\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-30-preview\",\r\n \"2019-04-30\",\r\n \"2018-09-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE North\",\r\n \"Norway East\",\r\n \"Norway West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE North\",\r\n \"Norway East\",\r\n \"Norway West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-31\",\r\n \"2018-03-31\",\r\n \"2017-08-31\",\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/orchestrators\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE North\",\r\n \"Norway East\",\r\n \"Norway West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-08-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2017-09-30\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.CostManagement\",\r\n \"namespace\": \"Microsoft.CostManagement\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"3184af01-7a88-49e0-8b55-8ecdce0aa950\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Connectors\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"CloudConnectors\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts/Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts/Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions/Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions/Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Forecast\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2018-12-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions/Forecast\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2018-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts/Forecast\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2018-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Settings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"register\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-10-01-preview\",\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-10-01-preview\",\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Budgets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions/Alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts/Alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"showbackRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\r\n \"2019-02-03-alpha\",\r\n \"2019-02-02-alpha\",\r\n \"2019-02-01-alpha\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Exports\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Reports\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-12-01-preview\",\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Reportconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Views\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.CostManagementExports\",\r\n \"namespace\": \"Microsoft.CostManagementExports\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e5408ad0-c4e2-43aa-b6f2-3b4951286d99\",\r\n \"roleDefinitionId\": \"5e4888b3-2747-4e5b-9897-ec0865b91bcf\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.CustomerLockbox\",\r\n \"namespace\": \"Microsoft.CustomerLockbox\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a0551534-cfc9-4e1f-9a7a-65093b32bb38\"\r\n },\r\n {\r\n \"applicationId\": \"01fc33a7-78ba-4d2f-a4b7-768e336e890e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"requests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.CustomProviders\",\r\n \"namespace\": \"Microsoft.CustomProviders\",\r\n \"authorization\": {\r\n \"applicationId\": \"bf8eb16c-7ba7-4b47-86be-ac5e4b2007a5\",\r\n \"roleDefinitionId\": \"FACF09C9-A5D0-4D34-8B1F-B623AC29C6F7\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceProviders\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"associations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DataBox\",\r\n \"namespace\": \"Microsoft.DataBox\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"5613cb5c-a7c9-4099-8034-511fd7616cb2\",\r\n \"roleDefinitionId\": \"382D72D1-63DC-4243-9B99-CB69FDD473D8\",\r\n \"managedByRoleDefinitionId\": \"f4c0a4f9-768c-4927-ab83-d319111d6ef4\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateAddress\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableSkus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateInputs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/regionConfiguration\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DataBoxEdge\",\r\n \"namespace\": \"Microsoft.DataBoxEdge\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2368d027-f996-4edb-bf48-928f98f2ab8c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Databricks\",\r\n \"namespace\": \"Microsoft.Databricks\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d9327919-6775-4843-9037-3fb0fb0473cb\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"applicationId\": \"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Brazil South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/dbWorkspaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Brazil South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"UAE North\",\r\n \"Brazil South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Brazil South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/getNetworkPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"authorization\": {\r\n \"applicationId\": \"213f5f78-fb30-46c7-9e98-91c720a1c026\",\r\n \"roleDefinitionId\": \"D55E2225-A6AB-481C-A5BE-1B7687C293FA\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01-preview\",\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01-preview\",\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0947a342-ab4a-43be-93b3-b8243fc161e5\",\r\n \"roleDefinitionId\": \"f0a6aa2a-e9d8-4bae-bcc2-36b405e8a5da\"\r\n },\r\n {\r\n \"applicationId\": \"5d13f7d7-0567-429c-9880-320e9555e5fc\",\r\n \"roleDefinitionId\": \"956a8f20-9168-4c71-8e27-3c0460ac39a4\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"factories\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"factories/integrationRuntimes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/configureFactoryRepo\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/getFeatureValue\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/eventGridFilters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DataMigration\",\r\n \"namespace\": \"Microsoft.DataMigration\",\r\n \"authorization\": {\r\n \"applicationId\": \"a4bad4aa-bf02-4631-9f78-a64ffdba8150\",\r\n \"roleDefinitionId\": \"b831a21d-db98-4760-89cb-bef871952df1\",\r\n \"managedByRoleDefinitionId\": \"6256fb55-9e59-4018-a9e1-76b11c0a4c89\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"services/projects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DataShare\",\r\n \"namespace\": \"Microsoft.DataShare\",\r\n \"authorization\": {\r\n \"applicationId\": \"799f1985-1517-4fe1-af2b-ba3d87d4996b\",\r\n \"roleDefinitionId\": \"0146496b-e06f-439a-83be-49fac884edf5\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares/datasets\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares/synchronizationSettings\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares/invitations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/sharesubscriptions\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares/providersharesubscriptions\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/sharesubscriptions/datasetmappings\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/sharesubscriptions/triggers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/sharesubscriptions/consumerSourceDataSets\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listinvitations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/rejectInvitation\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2018-11-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consumerInvitations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2018-11-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2018-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DBforMariaDB\",\r\n \"namespace\": \"Microsoft.DBforMariaDB\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/waitStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateLinkResources\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateEndpointConnections\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DBforMySQL\",\r\n \"namespace\": \"Microsoft.DBforMySQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UAE North\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/waitStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateLinkResources\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateEndpointConnections\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DBforPostgreSQL\",\r\n \"namespace\": \"Microsoft.DBforPostgreSQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"serversv2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-29-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-29-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/waitStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateLinkResources\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateEndpointConnections\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DeploymentManager\",\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"5b306cba-9c71-49db-96c3-d17ca2379c4d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"artifactSources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceTopologies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceTopologies/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceTopologies/services/serviceUnits\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"steps\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DesktopVirtualization\",\r\n \"namespace\": \"Microsoft.DesktopVirtualization\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"50e95039-b200-4007-bc97-8d5790743a63\",\r\n \"roleDefinitionId\": \"CAD30215-AD1C-43BF-BE90-7BFA8B493E62\"\r\n },\r\n {\r\n \"applicationId\": \"9cdead84-a844-4324-93f2-b2e6bb768d07\"\r\n },\r\n {\r\n \"applicationId\": \"a85cf173-4192-42f8-81fa-777a763e6e2c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-23-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0cd79364-7a90-4354-9984-6e36c841418d\",\r\n \"roleDefinitionId\": \"C121DF10-FE58-4BC4-97F9-8296879F7BBB\"\r\n },\r\n {\r\n \"applicationId\": \"29f411f1-b2cf-4043-8ac8-2185d7316811\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-04\",\r\n \"2019-09-01\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22-preview\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-09-25-preview\",\r\n \"2017-08-21-preview\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-31\",\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DevOps\",\r\n \"namespace\": \"Microsoft.DevOps\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"pipelines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DevSpaces\",\r\n \"namespace\": \"Microsoft.DevSpaces\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"controllers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia SouthEast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"controllers/listConnectionDetails\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia SouthEast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia SouthEast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia SouthEast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia SouthEast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkContainerHostMapping\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia SouthEast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs/environments\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"schedules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs/virtualMachines\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs/serviceRunners\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"57c0fc58-a83a-41d0-8ae9-08952659bdfd\",\r\n \"roleDefinitionId\": \"FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282\"\r\n },\r\n {\r\n \"applicationId\": \"36e2398c-9dd3-4f29-9a72-d9f2cfc47ad9\",\r\n \"roleDefinitionId\": \"D5A795DE-916D-4818-B015-33C9E103E39B\"\r\n },\r\n {\r\n \"applicationId\": \"a232010e-820c-4083-83bb-3ace5fc29d0b\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.EnterpriseKnowledgeGraph\",\r\n \"namespace\": \"Microsoft.EnterpriseKnowledgeGraph\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-03\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-03\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-03\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-03\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.EventGrid\",\r\n \"namespace\": \"Microsoft.EventGrid\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"4962773b-9cdb-44cf-a8bf-237846a00ab7\",\r\n \"roleDefinitionId\": \"7FE036D8-246F-48BF-A78F-AB3EE699C8F3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"topics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2018-09-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/topics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2018-09-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extensionTopics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationsStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"systemTopics\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"systemTopics/eventSubscriptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"partnerNamespaces\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"partnerTopics\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"partnerTopics/eventSubscriptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"partnerNamespaces/eventChannels\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Experimentation\",\r\n \"namespace\": \"Microsoft.Experimentation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e00d2f8a-f6c8-46e4-b379-e66082e28ca8\",\r\n \"roleDefinitionId\": \"d3a360d9-17f9-410e-9465-5c914c8cf570\",\r\n \"managedByRoleDefinitionId\": \"fa096ccd-4e8f-49de-9594-64449b3ac6b3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"featureProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptionFeatureRegistrations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.GuestConfiguration\",\r\n \"namespace\": \"Microsoft.GuestConfiguration\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e935b4a5-8968-416d-8414-caed51c782a9\",\r\n \"roleDefinitionId\": \"9c6ffa40-421e-4dc0-9739-76b0699a11de\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"guestConfigurationAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-20\",\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"software\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"softwareUpdates\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"softwareUpdateProfile\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-20\",\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.HanaOnAzure\",\r\n \"namespace\": \"Microsoft.HanaOnAzure\",\r\n \"authorization\": {\r\n \"applicationId\": \"cc5476ec-3074-44d1-8461-711f5d9b0e39\",\r\n \"roleDefinitionId\": \"4a10987e-dbcf-4c3d-8e3d-7ddcd9c771c2\",\r\n \"managedByRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hanaInstances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sapMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.HardwareSecurityModules\",\r\n \"namespace\": \"Microsoft.HardwareSecurityModules\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0eb690b7-d23e-4fb0-b43e-cd161ac80cc3\",\r\n \"roleDefinitionId\": \"48397dc8-3910-486a-8165-ab2df987447f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-31-preview\",\r\n \"2018-10-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-31-preview\",\r\n \"2018-10-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9191c4da-09fe-49d9-a5f1-d41cbe92ad95\",\r\n \"roleDefinitionId\": \"d102a6f3-d9cb-4633-8950-1243b975886c\",\r\n \"managedByRoleDefinitionId\": \"346da55d-e1db-4a5a-89db-33ab3cdb6fc6\"\r\n },\r\n {\r\n \"applicationId\": \"7865c1d2-f040-46cc-875f-831a1ef6a28a\",\r\n \"roleDefinitionId\": \"e27c0895-d168-46d5-8b65-870eb2350378\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/billingSpecs\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureasyncoperations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateCreateRequest\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.HealthcareApis\",\r\n \"namespace\": \"Microsoft.HealthcareApis\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"4f6778d8-5aef-43dc-a1ff-b073724b9495\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-16\",\r\n \"2018-08-20-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-16\",\r\n \"2018-08-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-16\",\r\n \"2018-08-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-16\",\r\n \"2018-08-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-16\",\r\n \"2018-08-20-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.HybridCompute\",\r\n \"namespace\": \"Microsoft.HybridCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"machines\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-12\",\r\n \"2019-08-02-preview\",\r\n \"2019-03-18-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-12\",\r\n \"2019-08-02-preview\",\r\n \"2019-03-18-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.HybridData\",\r\n \"namespace\": \"Microsoft.HybridData\",\r\n \"authorization\": {\r\n \"applicationId\": \"621269cf-1195-44a3-a835-c613d103dd15\",\r\n \"roleDefinitionId\": \"00320cd4-8823-47f2-bbe4-5c9da031311d\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataManagers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Hydra\",\r\n \"namespace\": \"Microsoft.Hydra\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"37ae09d4-a310-41e1-803d-8e85cec4bf23\",\r\n \"roleDefinitionId\": \"37ae09d4-a310-41e1-803d-8e85cec4bf23\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ImportExport\",\r\n \"namespace\": \"Microsoft.ImportExport\",\r\n \"authorization\": {\r\n \"applicationId\": \"7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a\",\r\n \"roleDefinitionId\": \"9f7aa6bb-9454-46b6-8c01-a4b0f33ca151\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.IoTCentral\",\r\n \"namespace\": \"Microsoft.IoTCentral\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9edfcdd9-0bc5-4bd4-b287-c3afc716aac7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"IoTApps\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Central US\",\r\n \"West Central US\",\r\n \"Australia\",\r\n \"Asia Pacific\",\r\n \"Europe\",\r\n \"Japan\",\r\n \"UK\",\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkSubdomainAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appTemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.IoTSpaces\",\r\n \"namespace\": \"Microsoft.IoTSpaces\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0b07f429-9f4b-4714-9392-cc5e8e80c8b0\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"West US 2\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"Graph\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"West US 2\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Kubernetes\",\r\n \"namespace\": \"Microsoft.Kubernetes\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"64b12d6e-6549-484c-8cc6-6281839ba394\",\r\n \"roleDefinitionId\": \"1d1d44cf-68a1-4def-a2b6-cd7efc3515af\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2019-09-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Kusto\",\r\n \"namespace\": \"Microsoft.Kusto\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2746ea77-4702-4b45-80ca-3c97e680e8b7\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/attacheddatabaseconfigurations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/principalassignments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-09\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases/eventhubconnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases/dataconnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases/principalassignments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-09\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/sharedidentities\",\r\n \"locations\": [\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-09\",\r\n \"2019-09-07\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.LabServices\",\r\n \"namespace\": \"Microsoft.LabServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labaccounts\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"users\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2019-01-01-beta\",\r\n \"2019-01-01-alpha\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\",\r\n \"2017-12-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"integrationAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"integrationServiceEnvironments\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"integrationServiceEnvironments/managedApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.MachineLearning\",\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"webServices\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commitmentPlans\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Maintenance\",\r\n \"namespace\": \"Microsoft.Maintenance\",\r\n \"authorization\": {\r\n \"applicationId\": \"f18474f2-a66a-4bb0-a3c9-9b8d892092fa\",\r\n \"roleDefinitionId\": \"2f1ef7b0-d5c4-4d3c-98fa-6a9fa8e74aa5\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"maintenanceConfigurations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-06-01-preview\",\r\n \"2017-04-26\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"updates\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-06-01-preview\",\r\n \"2017-04-26\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"configurationAssignments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-06-01-preview\",\r\n \"2017-04-26\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"applyUpdates\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-06-01-preview\",\r\n \"2017-04-26\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ManagedServices\",\r\n \"namespace\": \"Microsoft.ManagedServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"66c6d0d1-f2e7-4a18-97a9-ed10f3347016\",\r\n \"roleDefinitionId\": \"1e86f807-6ec0-40b3-8b5f-686b7e43a0a2\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registrationDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01-preview\",\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"registrationAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01-preview\",\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"marketplaceRegistrationDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Management\",\r\n \"namespace\": \"Microsoft.Management\",\r\n \"authorization\": {\r\n \"applicationId\": \"f2c304cf-8e7e-4c3f-8164-16299ad9d272\",\r\n \"roleDefinitionId\": \"c1cf3708-588a-4647-be7f-f400bbe214cf\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managementGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getEntities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managementGroups/settings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults/asyncOperation\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenantBackfillStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"startTenantBackfill\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Maps\",\r\n \"namespace\": \"Microsoft.Maps\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"608f6f31-fed0-4f7b-809f-90f6c9b3de78\",\r\n \"roleDefinitionId\": \"3431F0E6-63BC-482D-A96E-0AB819610A5F\"\r\n },\r\n {\r\n \"applicationId\": \"ba1ea022-5807-41d5-bbeb-292c7e1cf5f6\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/eventGridFilters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"authorization\": {\r\n \"applicationId\": \"a0e1e353-1a3e-42cf-a8ea-3a9746eec58c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"register\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privategalleryitems\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs/importImage\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/agreements\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAvailableOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishers/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishers/offers/amendments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateStoreClient\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-beta\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateStores\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateStores/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.MarketplaceApps\",\r\n \"namespace\": \"Microsoft.MarketplaceApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicDevServices\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offertypes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Media\",\r\n \"namespace\": \"Microsoft.Media\",\r\n \"authorization\": {\r\n \"applicationId\": \"374b2a64-3b6b-436b-934c-b820eacca870\",\r\n \"roleDefinitionId\": \"aab70789-0cec-44b5-95d7-84b64c9487af\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mediaservices\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/assets\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/contentKeyPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingLocators\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/eventGridFilters\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms/jobs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpoints\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents/liveOutputs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpointOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEventOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveOutputOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/assets/assetFilters\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/accountFilters\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2018-02-05\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Migrate\",\r\n \"namespace\": \"Microsoft.Migrate\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3bfd6ac-eace-4438-9dc1-eed439e738de\",\r\n \"roleDefinitionId\": \"e88f4159-1d71-4b12-8ef0-38c039cb051e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"projects\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"migrateprojects\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"assessmentProjects\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/assessmentOptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.MixedReality\",\r\n \"namespace\": \"Microsoft.MixedReality\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c7ddd9b4-5172-4e28-bd29-1e0792947d18\",\r\n \"roleDefinitionId\": \"b67ee066-e058-4ddb-92bc-83cdd74bc38a\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-02-preview\",\r\n \"2019-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-02-preview\",\r\n \"2019-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-02-preview\",\r\n \"2019-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"spatialAnchorsAccounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-02-preview\",\r\n \"2019-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.NetApp\",\r\n \"namespace\": \"Microsoft.NetApp\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"12fb057d-b751-47cd-857c-f2934bb677b4\",\r\n \"roleDefinitionId\": \"e4796bef-6b6d-4cbc-ba1e-27f1a308d860\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"West US (Stage)\",\r\n \"West US 2 (Stage)\",\r\n \"South Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2017-08-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ObjectStore\",\r\n \"namespace\": \"Microsoft.ObjectStore\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"osNamespaces\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.OffAzure\",\r\n \"namespace\": \"Microsoft.OffAzure\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"728a93e3-065d-4678-93b1-3cc281223341\",\r\n \"roleDefinitionId\": \"b9967bf7-a345-4af8-95f0-49916f760fc6\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"VMwareSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\",\r\n \"2019-06-06\",\r\n \"2019-05-01-preview\",\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"HyperVSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-06-06\",\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ServerSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ImportSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-06-06\",\r\n \"2018-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"86695298-2eb9-48a7-9ec3-2fdb38b6878b\"\r\n },\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2017-03-15-preview\",\r\n \"2017-03-03-preview\",\r\n \"2017-01-01-preview\",\r\n \"2015-11-01-preview\",\r\n \"2015-03-20\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01-preview\",\r\n \"2017-04-26-preview\",\r\n \"2017-03-15-preview\",\r\n \"2017-03-03-preview\",\r\n \"2017-01-01-preview\",\r\n \"2015-11-01-preview\",\r\n \"2015-03-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01-preview\",\r\n \"2017-04-26-preview\",\r\n \"2017-03-15-preview\",\r\n \"2017-03-03-preview\",\r\n \"2017-01-01-preview\",\r\n \"2015-11-01-preview\",\r\n \"2015-03-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/privateEndpointConnections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01-preview\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/privateLinkResources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01-preview\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01-preview\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/scopedPrivateLinkProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01-preview\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/query\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Australia Southeast\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland West\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/dataSources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/linkedServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01-preview\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.OperationsManagement\",\r\n \"namespace\": \"Microsoft.OperationsManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"aa249101-6816-4966-aafa-08175d795f14\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"solutions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central Us\",\r\n \"East Us 2\",\r\n \"East Asia\",\r\n \"West Us\",\r\n \"South Central Us\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementconfigurations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central Us\",\r\n \"East Us 2\",\r\n \"East Asia\",\r\n \"West Us\",\r\n \"South Central Us\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementassociations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"views\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central Us\",\r\n \"East Us 2\",\r\n \"East Asia\",\r\n \"West Us\",\r\n \"South Central Us\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Peering\",\r\n \"namespace\": \"Microsoft.Peering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"peerings\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"East Asia\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West India\",\r\n \"South India\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"peeringLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"legacyPeerings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"peerAsns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"peeringServiceCountries\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"peeringServiceLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"peeringServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceProviderAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Portal\",\r\n \"namespace\": \"Microsoft.Portal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dashboards\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-10-01-preview\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"consoles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consoles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.PowerBI\",\r\n \"namespace\": \"Microsoft.PowerBI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaceCollections\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.PowerBIDedicated\",\r\n \"namespace\": \"Microsoft.PowerBIDedicated\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"capacities\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South Africa North\",\r\n \"Canada East\",\r\n \"South Africa West\",\r\n \"UK West\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South Africa West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ProjectBabylon\",\r\n \"namespace\": \"Microsoft.ProjectBabylon\",\r\n \"authorization\": {\r\n \"applicationId\": \"73c2949e-da2d-457a-9607-fcc665198967\",\r\n \"roleDefinitionId\": \"1BC09725-0C9B-4F57-A3D0-FCCF4EB40120\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ProviderHub\",\r\n \"namespace\": \"Microsoft.ProviderHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"providerRegistrations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerRegistrations/resourceTypeRegistrations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"availableAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.RecoveryServices\",\r\n \"namespace\": \"Microsoft.RecoveryServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6\"\r\n },\r\n {\r\n \"applicationId\": \"3b2fa68d-a091-48c9-95be-88d572e08fb7\",\r\n \"roleDefinitionId\": \"47d68fae-99c7-4c10-b9db-2316116a061e\"\r\n },\r\n {\r\n \"applicationId\": \"9bdab391-7bbe-42e8-8132-e4491dc29cc0\",\r\n \"roleDefinitionId\": \"0383f7f5-023d-4379-b2c7-9ef786459969\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15\",\r\n \"2019-05-13-preview\",\r\n \"2019-05-13\",\r\n \"2018-12-20-preview\",\r\n \"2018-07-10-preview\",\r\n \"2018-07-10\",\r\n \"2018-01-10\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-12-01\",\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2016-05-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocatedStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocateStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupValidateFeatures\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupPreValidateProtection\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupCrrJobs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupCrrJob\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupAadProperties\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupCrossRegionRestore\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupCrrOperationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupCrrOperationsStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"backupProtectedItems\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"replicationEligibilityResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-10\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Relay\",\r\n \"namespace\": \"Microsoft.Relay\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ResourceGraph\",\r\n \"namespace\": \"Microsoft.ResourceGraph\",\r\n \"authorization\": {\r\n \"applicationId\": \"509e4652-da8d-478d-a730-e9d4a1996ca4\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourcesHistory\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceChanges\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceChangeDetails\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptionsStatus\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"applicationId\": \"3b990c8b-9607-4c2a-8b04-1d41985facca\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.SaaS\",\r\n \"namespace\": \"Microsoft.SaaS\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"f738ef14-47dc-4564-b53b-45069484ccc7\",\r\n \"roleDefinitionId\": \"b131dd2d-387a-4cae-bb9b-3d021f80d1e6\"\r\n },\r\n {\r\n \"applicationId\": \"20e940b3-4c77-4b0b-9a53-9e16a1b010a7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkModernEligibility\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"saasresources\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-Preview\",\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.SecurityInsights\",\r\n \"namespace\": \"Microsoft.SecurityInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"98785600-1bb7-4fb9-b9fa-19afe2c8a360\",\r\n \"roleDefinitionId\": \"ef1c46aa-ae81-4091-ab83-f75f28efb7b8\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertRules\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"alertRuleTemplates\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"cases\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"bookmarks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"dataConnectors\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"dataConnectorsCheckRequirements\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"entities\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"incidents\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"officeConsents\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"settings\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"aggregations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"entityQueries\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.SerialConsole\",\r\n \"namespace\": \"Microsoft.SerialConsole\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"consoleServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consoleServices\",\r\n \"locations\": [\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Services\",\r\n \"namespace\": \"Microsoft.Services\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"providerRegistrations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerRegistrations/resourceTypeRegistrations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.SignalRService\",\r\n \"namespace\": \"Microsoft.SignalRService\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cdad765c-f191-43ba-b9f5-7aef392f811d\",\r\n \"roleDefinitionId\": \"346b504e-4aec-45d1-be25-a6e10f3cb4fe\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SignalR\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SignalR/eventGridFilters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.SoftwarePlan\",\r\n \"namespace\": \"Microsoft.SoftwarePlan\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hybridUseBenefits\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Solutions\",\r\n \"namespace\": \"Microsoft.Solutions\",\r\n \"authorization\": {\r\n \"applicationId\": \"ba4bc2bd-843f-4d61-9d33-199178eae34e\",\r\n \"roleDefinitionId\": \"6cb99a0b-29a8-49bc-b57b-057acc68cd9a\",\r\n \"managedByRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\",\r\n \"managedByAuthorization\": {\r\n \"managedByResourceRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\"\r\n }\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"applicationDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"jitRequests\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.SqlVirtualMachine\",\r\n \"namespace\": \"Microsoft.SqlVirtualMachine\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"bd93b475-f9e2-476e-963d-b2daf143ffb9\",\r\n \"roleDefinitionId\": \"f96bd990-ffdf-4c17-8ee3-77454d9c3f5d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SqlVirtualMachineGroups\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"SqlVirtualMachines\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"SqlVirtualMachineGroups/AvailabilityGroupListeners\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/OperationTypes\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/sqlVirtualMachineOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/sqlVirtualMachineGroupOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/availabilityGroupListenerOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.StorageCache\",\r\n \"namespace\": \"Microsoft.StorageCache\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"4392ab71-2ce2-4b0d-8770-b352745c73f5\",\r\n \"roleDefinitionId\": \"e27430df-bd6b-4f3a-bd6d-d52ad1a7d075\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.StorageSync\",\r\n \"namespace\": \"Microsoft.StorageSync\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9469b9f5-6722-4481-a2b2-14ed560b706f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageSyncServices\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/cloudEndpoints\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/serverEndpoints\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/registeredServers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/workflows\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.StorSimple\",\r\n \"namespace\": \"Microsoft.StorSimple\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"managers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-05-15\",\r\n \"2017-01-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"authorization\": {\r\n \"applicationId\": \"66f1e791-7bfb-4e18-aed8-1720056421c7\",\r\n \"roleDefinitionId\": \"15f6e7b0-eec0-4f18-a552-c97e000cbc61\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-11-01\",\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-11-01\",\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-11-01\",\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-11-01\",\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"959678cf-d004-4c22-82a6-d2ce549a58b8\",\r\n \"roleDefinitionId\": \"81a3dd11-5123-4ec3-9485-772b0a27d1bd\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services/problemclassifications\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationsstatus\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Synapse\",\r\n \"namespace\": \"Microsoft.Synapse\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9e09aefc-b2e5-4d19-9f74-3e3e8b11a57b\",\r\n \"roleDefinitionId\": \"a53b114a-452b-4d20-bcd6-c51c3c8c5878\",\r\n \"managedByRoleDefinitionId\": \"ede175bc-31e5-4074-ba98-e62b895797aa\"\r\n },\r\n {\r\n \"applicationId\": \"1ac05c7e-12d2-4605-bf9d-549d7041c6b3\",\r\n \"roleDefinitionId\": \"48e77487-c9fa-4abe-8484-71ebdebdbbc2\"\r\n },\r\n {\r\n \"applicationId\": \"ec52d13d-2e85-410e-a89a-8c79fb6a32ac\",\r\n \"roleDefinitionId\": \"c3a447c3-a63a-4905-a125-c6856f9d0e17\"\r\n },\r\n {\r\n \"applicationId\": \"5ebe1e69-13dd-4953-84fa-a74ed591db2e\",\r\n \"roleDefinitionId\": \"e8ebe3e8-569b-4ad3-bea1-5b274fe0c49f\"\r\n },\r\n {\r\n \"applicationId\": \"2e458d69-0892-4655-b713-4f7b182315dd\",\r\n \"roleDefinitionId\": \"45EA3B16-D4DD-48CA-BF0D-BBE644C0C0AF\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.TimeSeriesInsights\",\r\n \"namespace\": \"Microsoft.TimeSeriesInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"120d688d-1518-4cf7-bd38-182f158850b6\",\r\n \"roleDefinitionId\": \"5a43abdf-bb87-42c4-9e56-1c24bf364150\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/eventsources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/referenceDataSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/accessPolicies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Token\",\r\n \"namespace\": \"Microsoft.Token\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"fe053c5f-3692-4f14-aef2-ee34fc081cae\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"stores\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"stores/accessPolicies\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"stores/services\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"stores/services/tokens\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.VirtualMachineImages\",\r\n \"namespace\": \"Microsoft.VirtualMachineImages\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cf32a0cc-373c-47c9-9156-0db11f6a6dfc\",\r\n \"roleDefinitionId\": \"0ee55a0b-f45f-4392-92ec-e8bf1b4b5da5\",\r\n \"managedByRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2019-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"account/extension\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.VMwareCloudSimple\",\r\n \"namespace\": \"Microsoft.VMwareCloudSimple\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d96199e7-4674-4bbf-a1c6-ddf93682f5ee\",\r\n \"roleDefinitionId\": \"533012ca-a3e7-44e4-93b4-3143f8b9409d\",\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"CloudSimpleExtension\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dedicatedCloudNodes\",\r\n \"locations\": [\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dedicatedCloudServices\",\r\n \"locations\": [\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availabilities\",\r\n \"locations\": [\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds\",\r\n \"locations\": [\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds/virtualNetworks\",\r\n \"locations\": [\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds/virtualMachineTemplates\",\r\n \"locations\": [\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds/resourcePools\",\r\n \"locations\": [\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.VnfManager\",\r\n \"namespace\": \"Microsoft.VnfManager\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"b8ed041c-aa91-418e-8f47-20c70abc2de1\",\r\n \"roleDefinitionId\": \"c8d69fc0-f0ed-43b3-bf1d-4dfdaacc6d2d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/OperationStatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.VSOnline\",\r\n \"namespace\": \"Microsoft.VSOnline\",\r\n \"authorizations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West Us 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-07-01-beta\",\r\n \"2019-07-01-alpha\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"plans\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West Us 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-07-01-beta\",\r\n \"2019-07-01-alpha\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-07-01-beta\",\r\n \"2019-07-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.WindowsESU\",\r\n \"namespace\": \"Microsoft.WindowsESU\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e6c69915-bcc7-4335-b655-c62f949d691b\",\r\n \"roleDefinitionId\": \"9bccffcd-2d3d-4b7c-a2cb-bb26e77b4810\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-16-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-16-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/OperationStatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.WindowsIoT\",\r\n \"namespace\": \"Microsoft.WindowsIoT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DeviceServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-02-16-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-02-16-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.WorkloadMonitor\",\r\n \"namespace\": \"Microsoft.WorkloadMonitor\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"componentsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitorInstancesSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitorInstances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"monitors\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"notificationSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Myget.PackageManagement\",\r\n \"namespace\": \"Myget.PackageManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Paraleap.CloudMonix\",\r\n \"namespace\": \"Paraleap.CloudMonix\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Pokitdok.Platform\",\r\n \"namespace\": \"Pokitdok.Platform\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/RavenHq.Db\",\r\n \"namespace\": \"RavenHq.Db\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Raygun.CrashReporting\",\r\n \"namespace\": \"Raygun.CrashReporting\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Sparkpost.Basic\",\r\n \"namespace\": \"Sparkpost.Basic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/stackify.retrace\",\r\n \"namespace\": \"stackify.retrace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/U2uconsult.TheIdentityHub\",\r\n \"namespace\": \"U2uconsult.TheIdentityHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/ps5717?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlZ3JvdXBzL3BzNTcxNz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"West US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0fa2b8f0-75be-4011-b05d-de90dc0300d1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "29"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "79a47188-fbf4-48a8-a993-cfa3cdadfbbf"
+ ],
+ "x-ms-correlation-request-id": [
+ "79a47188-fbf4-48a8-a993-cfa3cdadfbbf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112031Z:79a47188-fbf4-48a8-a993-cfa3cdadfbbf"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:20:31 GMT"
+ ],
+ "Content-Length": [
+ "165"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717\",\r\n \"name\": \"ps5717\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/serverfarms/ps9406?api-version=2018-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTcxNy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9wczk0MDY/YXBpLXZlcnNpb249MjAxOC0wMi0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"perSiteScaling\": false,\r\n \"isXenon\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0b604348-c0a8-4dd2-a483-d323d833ba69"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "187"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2843b4b2-0084-4ed3-af6f-7bc49387dd41"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1196"
+ ],
+ "x-ms-correlation-request-id": [
+ "3a334514-e8c2-40f9-a03f-6cca76c6caec"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112043Z:3a334514-e8c2-40f9-a03f-6cca76c6caec"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:20:43 GMT"
+ ],
+ "Content-Length": [
+ "1267"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/serverfarms/ps9406\",\r\n \"name\": \"ps9406\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"serverFarmId\": 16520,\r\n \"name\": \"ps9406\",\r\n \"workerSize\": \"Default\",\r\n \"workerSizeId\": 0,\r\n \"workerTierName\": null,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": \"Default\",\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": \"Ready\",\r\n \"webSpace\": \"ps5717-WestUSwebspace\",\r\n \"subscription\": \"04b0639d-85d8-445a-bada-8da78e50ff30\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": \"Dedicated\",\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"maximumElasticWorkerCount\": 1,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"isSpot\": false,\r\n \"spotExpirationTime\": null,\r\n \"freeOfferExpirationTime\": null,\r\n \"tags\": null,\r\n \"kind\": \"app\",\r\n \"resourceGroup\": \"ps5717\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"mdmId\": \"waws-prod-bay-137_16520\",\r\n \"targetWorkerCount\": 0,\r\n \"targetWorkerSizeId\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"webSiteId\": null,\r\n \"existingServerFarmIds\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Web/checknameavailability?api-version=2018-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NoZWNrbmFtZWF2YWlsYWJpbGl0eT9hcGktdmVyc2lvbj0yMDE4LTAyLTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"name\": \"ps5078\",\r\n \"type\": \"Site\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "97e54861-c94c-4962-8cfe-5e5e6a068d49"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "43"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4bc7659b-4997-4c4c-ae99-17dc73bb5f90"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11986"
+ ],
+ "x-ms-correlation-request-id": [
+ "86e6cdb4-f842-43c3-82b7-23e56f70fff4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112044Z:86e6cdb4-f842-43c3-82b7-23e56f70fff4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:20:44 GMT"
+ ],
+ "Content-Length": [
+ "47"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"nameAvailable\": true,\r\n \"reason\": \"\",\r\n \"message\": \"\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/serverfarms/ps9406?api-version=2018-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTcxNy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9wczk0MDY/YXBpLXZlcnNpb249MjAxOC0wMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "efb9b8ab-3bd4-45df-859b-b380e95f7ecc"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b1efa8af-313e-480f-92cb-00e920f46cbf"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11985"
+ ],
+ "x-ms-correlation-request-id": [
+ "697eec74-31c6-4a7d-9c7c-116363a395ec"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112044Z:697eec74-31c6-4a7d-9c7c-116363a395ec"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:20:44 GMT"
+ ],
+ "Content-Length": [
+ "1267"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/serverfarms/ps9406\",\r\n \"name\": \"ps9406\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"serverFarmId\": 16520,\r\n \"name\": \"ps9406\",\r\n \"workerSize\": \"Default\",\r\n \"workerSizeId\": 0,\r\n \"workerTierName\": null,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": \"Default\",\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": \"Ready\",\r\n \"webSpace\": \"ps5717-WestUSwebspace\",\r\n \"subscription\": \"04b0639d-85d8-445a-bada-8da78e50ff30\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": \"Dedicated\",\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"maximumElasticWorkerCount\": 1,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"isSpot\": false,\r\n \"spotExpirationTime\": null,\r\n \"freeOfferExpirationTime\": null,\r\n \"tags\": null,\r\n \"kind\": \"app\",\r\n \"resourceGroup\": \"ps5717\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"mdmId\": \"waws-prod-bay-137_16520\",\r\n \"targetWorkerCount\": 0,\r\n \"targetWorkerSizeId\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"webSiteId\": null,\r\n \"existingServerFarmIds\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/serverfarms/ps9406?api-version=2018-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTcxNy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9wczk0MDY/YXBpLXZlcnNpb249MjAxOC0wMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "badd6aa2-42a2-43ef-a8f0-8fb14fe685fb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "03675385-7c8a-45b2-8ebb-21cde9393742"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11983"
+ ],
+ "x-ms-correlation-request-id": [
+ "c7e8ede3-04b9-459f-b4b8-596878d28c26"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112045Z:c7e8ede3-04b9-459f-b4b8-596878d28c26"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:20:45 GMT"
+ ],
+ "Content-Length": [
+ "1267"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/serverfarms/ps9406\",\r\n \"name\": \"ps9406\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"serverFarmId\": 16520,\r\n \"name\": \"ps9406\",\r\n \"workerSize\": \"Default\",\r\n \"workerSizeId\": 0,\r\n \"workerTierName\": null,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": \"Default\",\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": \"Ready\",\r\n \"webSpace\": \"ps5717-WestUSwebspace\",\r\n \"subscription\": \"04b0639d-85d8-445a-bada-8da78e50ff30\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": \"Dedicated\",\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"maximumElasticWorkerCount\": 1,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"isSpot\": false,\r\n \"spotExpirationTime\": null,\r\n \"freeOfferExpirationTime\": null,\r\n \"tags\": null,\r\n \"kind\": \"app\",\r\n \"resourceGroup\": \"ps5717\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"mdmId\": \"waws-prod-bay-137_16520\",\r\n \"targetWorkerCount\": 0,\r\n \"targetWorkerSizeId\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"webSiteId\": null,\r\n \"existingServerFarmIds\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/serverfarms/ps9406?api-version=2018-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTcxNy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9wczk0MDY/YXBpLXZlcnNpb249MjAxOC0wMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5adb5b8c-7ef1-421a-8c12-a43f3cd4d129"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "951fe7f7-777a-4312-beaf-0bac9a877466"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11982"
+ ],
+ "x-ms-correlation-request-id": [
+ "1dc9f2c4-911c-44f4-96a2-3e117c0c96b3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112045Z:1dc9f2c4-911c-44f4-96a2-3e117c0c96b3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:20:45 GMT"
+ ],
+ "Content-Length": [
+ "1267"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/serverfarms/ps9406\",\r\n \"name\": \"ps9406\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"serverFarmId\": 16520,\r\n \"name\": \"ps9406\",\r\n \"workerSize\": \"Default\",\r\n \"workerSizeId\": 0,\r\n \"workerTierName\": null,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": \"Default\",\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": \"Ready\",\r\n \"webSpace\": \"ps5717-WestUSwebspace\",\r\n \"subscription\": \"04b0639d-85d8-445a-bada-8da78e50ff30\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": \"Dedicated\",\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"maximumElasticWorkerCount\": 1,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"isSpot\": false,\r\n \"spotExpirationTime\": null,\r\n \"freeOfferExpirationTime\": null,\r\n \"tags\": null,\r\n \"kind\": \"app\",\r\n \"resourceGroup\": \"ps5717\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"mdmId\": \"waws-prod-bay-137_16520\",\r\n \"targetWorkerCount\": 0,\r\n \"targetWorkerSizeId\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"webSiteId\": null,\r\n \"existingServerFarmIds\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTcxNy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczUwNzg/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f8cfdac8-3ba3-423b-ba76-7d0c59eaa98d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "9a478bae-d14b-4068-b690-8a02b8968e5f"
+ ],
+ "x-ms-correlation-request-id": [
+ "9a478bae-d14b-4068-b690-8a02b8968e5f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112045Z:9a478bae-d14b-4068-b690-8a02b8968e5f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:20:44 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "136"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Web/sites/ps5078' under resource group 'ps5717' was not found.\"\r\n }\r\n}",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTcxNy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczUwNzg/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5045be67-a27c-44ae-b936-99b571d11dd9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1D5F216F6A86E15\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5aa0037d-023e-4d1e-a6ac-689d963ca1f8"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11980"
+ ],
+ "x-ms-correlation-request-id": [
+ "c2b22acf-111f-4b17-ad01-8642f4971a5e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112111Z:c2b22acf-111f-4b17-ad01-8642f4971a5e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:21:11 GMT"
+ ],
+ "Content-Length": [
+ "3045"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078\",\r\n \"name\": \"ps5078\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"name\": \"ps5078\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"ps5078.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"ps5717-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-137.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/ps5717-WestUSwebspace/sites/ps5078\",\r\n \"repositorySiteName\": \"ps5078\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"ps5078.azurewebsites.net\",\r\n \"ps5078.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"ps5078.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"ps5078.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/serverfarms/ps9406\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-03-04T11:20:51.8733333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"ps5078\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"01AC3E423D00215F7D82431869D8812C7C458FD119037C192CEED6E9E3AFDA7D\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"40.112.243.6\",\r\n \"possibleInboundIpAddresses\": \"40.112.243.6\",\r\n \"outboundIpAddresses\": \"40.112.243.6,13.93.220.248,13.93.221.96,13.93.221.41,13.93.220.182\",\r\n \"possibleOutboundIpAddresses\": \"40.112.243.6,13.93.220.248,13.93.221.96,13.93.221.41,13.93.220.182,13.93.221.147,13.93.220.112,13.91.111.88,13.93.220.5,13.93.220.231\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-137\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"ps5717\",\r\n \"defaultHostName\": \"ps5078.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTcxNy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczUwNzg/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b873de47-abff-43a8-8311-3ab53dd6e5fa"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1D5F216F6A86E15\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "69adc72f-ba3d-46fc-96c6-aaf35ebeca18"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11977"
+ ],
+ "x-ms-correlation-request-id": [
+ "a54b17e1-9113-4ce3-bd83-8ee0cd5c6bec"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112137Z:a54b17e1-9113-4ce3-bd83-8ee0cd5c6bec"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:21:37 GMT"
+ ],
+ "Content-Length": [
+ "3045"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078\",\r\n \"name\": \"ps5078\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"name\": \"ps5078\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"ps5078.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"ps5717-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-137.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/ps5717-WestUSwebspace/sites/ps5078\",\r\n \"repositorySiteName\": \"ps5078\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"ps5078.azurewebsites.net\",\r\n \"ps5078.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"ps5078.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"ps5078.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/serverfarms/ps9406\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-03-04T11:20:51.8733333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"ps5078\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"01AC3E423D00215F7D82431869D8812C7C458FD119037C192CEED6E9E3AFDA7D\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"40.112.243.6\",\r\n \"possibleInboundIpAddresses\": \"40.112.243.6\",\r\n \"outboundIpAddresses\": \"40.112.243.6,13.93.220.248,13.93.221.96,13.93.221.41,13.93.220.182\",\r\n \"possibleOutboundIpAddresses\": \"40.112.243.6,13.93.220.248,13.93.221.96,13.93.221.41,13.93.220.182,13.93.221.147,13.93.220.112,13.91.111.88,13.93.220.5,13.93.220.231\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-137\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"ps5717\",\r\n \"defaultHostName\": \"ps5078.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTcxNy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczUwNzg/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "52c3b336-8c87-44f4-b671-c9ba84fa34eb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1D5F21713609F8B\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c9ab2bab-004d-412a-8973-13ffcbb7d8ac"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11975"
+ ],
+ "x-ms-correlation-request-id": [
+ "306317dc-acbe-4205-95de-f7c197ef4156"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112140Z:306317dc-acbe-4205-95de-f7c197ef4156"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:21:40 GMT"
+ ],
+ "Content-Length": [
+ "3045"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078\",\r\n \"name\": \"ps5078\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"name\": \"ps5078\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"ps5078.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"ps5717-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-137.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/ps5717-WestUSwebspace/sites/ps5078\",\r\n \"repositorySiteName\": \"ps5078\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"ps5078.azurewebsites.net\",\r\n \"ps5078.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"ps5078.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"ps5078.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/serverfarms/ps9406\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-03-04T11:21:40.0566667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"ps5078\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"01AC3E423D00215F7D82431869D8812C7C458FD119037C192CEED6E9E3AFDA7D\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"40.112.243.6\",\r\n \"possibleInboundIpAddresses\": \"40.112.243.6\",\r\n \"outboundIpAddresses\": \"40.112.243.6,13.93.220.248,13.93.221.96,13.93.221.41,13.93.220.182\",\r\n \"possibleOutboundIpAddresses\": \"40.112.243.6,13.93.220.248,13.93.221.96,13.93.221.41,13.93.220.182,13.93.221.147,13.93.220.112,13.91.111.88,13.93.220.5,13.93.220.231\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-137\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"ps5717\",\r\n \"defaultHostName\": \"ps5078.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/ps5717?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlZ3JvdXBzL3BzNTcxNz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f36beeca-2c53-4e92-8b6a-76736c8c3cbb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-request-id": [
+ "a4071ac6-55dc-4d6c-a87f-7eef41fbbe6b"
+ ],
+ "x-ms-correlation-request-id": [
+ "a4071ac6-55dc-4d6c-a87f-7eef41fbbe6b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112045Z:a4071ac6-55dc-4d6c-a87f-7eef41fbbe6b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:20:44 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "165"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717\",\r\n \"name\": \"ps5717\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTcxNy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczUwNzg/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/serverFarms/ps9406\"\r\n },\r\n \"location\": \"West US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "11bcb75b-4946-4079-8bcd-390031617907"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "194"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1D5F216F6A86E15\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f7c9470d-9e0c-4812-b75a-727f0f533acb"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "498"
+ ],
+ "x-ms-correlation-request-id": [
+ "22c1167d-10e6-44ed-8c55-a1ea964ce786"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112109Z:22c1167d-10e6-44ed-8c55-a1ea964ce786"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:21:09 GMT"
+ ],
+ "Content-Length": [
+ "3047"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078\",\r\n \"name\": \"ps5078\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"name\": \"ps5078\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"ps5078.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"ps5717-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-137.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/ps5717-WestUSwebspace/sites/ps5078\",\r\n \"repositorySiteName\": \"ps5078\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"ps5078.azurewebsites.net\",\r\n \"ps5078.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"ps5078.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"ps5078.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/serverfarms/ps9406\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-03-04T11:20:51.8066667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"ps5078\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"01AC3E423D00215F7D82431869D8812C7C458FD119037C192CEED6E9E3AFDA7D\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"40.112.243.6\",\r\n \"possibleInboundIpAddresses\": \"40.112.243.6\",\r\n \"outboundIpAddresses\": \"40.112.243.6,13.93.220.248,13.93.221.96,13.93.221.41,13.93.220.182\",\r\n \"possibleOutboundIpAddresses\": \"40.112.243.6,13.93.220.248,13.93.221.96,13.93.221.41,13.93.220.182,13.93.221.147,13.93.220.112,13.91.111.88,13.93.220.5,13.93.220.231\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-137\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"ps5717\",\r\n \"defaultHostName\": \"ps5078.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078/config/web?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTcxNy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczUwNzgvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "40484aa1-e5f6-4431-934c-78d94510064e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "78b751f4-b271-4a9e-8b34-15365f437a29"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11981"
+ ],
+ "x-ms-correlation-request-id": [
+ "13f0cdfa-9369-46fe-9094-d5818fdc0319"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112110Z:13f0cdfa-9369-46fe-9094-d5818fdc0319"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:21:09 GMT"
+ ],
+ "Content-Length": [
+ "2993"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078/config/web\",\r\n \"name\": \"ps5078\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps5078\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"reservedInstanceCount\": 0,\r\n \"preWarmedInstanceCount\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078/config/web?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTcxNy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczUwNzgvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "92991691-07a8-4a0d-a0f2-8ddf31092592"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4f603f52-737e-49ac-b6c0-09514e4454e3"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11979"
+ ],
+ "x-ms-correlation-request-id": [
+ "7c649429-fdce-4888-a31d-aa00936d8109"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112112Z:7c649429-fdce-4888-a31d-aa00936d8109"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:21:11 GMT"
+ ],
+ "Content-Length": [
+ "2993"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078/config/web\",\r\n \"name\": \"ps5078\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps5078\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"reservedInstanceCount\": 0,\r\n \"preWarmedInstanceCount\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078/config/web?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTcxNy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczUwNzgvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1803869e-5a0a-4bb7-bbc7-43041f14f2c3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1e42f09d-b1d2-418f-ae87-97d9c765289d"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11976"
+ ],
+ "x-ms-correlation-request-id": [
+ "e04d537f-4344-485c-af9e-cc55efc8c6d4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112138Z:e04d537f-4344-485c-af9e-cc55efc8c6d4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:21:37 GMT"
+ ],
+ "Content-Length": [
+ "2993"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078/config/web\",\r\n \"name\": \"ps5078\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps5078\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"reservedInstanceCount\": 0,\r\n \"preWarmedInstanceCount\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078/config/web?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTcxNy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczUwNzgvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7a09d979-c69d-4ce5-aaa8-5ee110e8e12d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5a8e4aad-e566-4d17-af19-516c815367d6"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11974"
+ ],
+ "x-ms-correlation-request-id": [
+ "d717e01a-465e-4ee2-8cc6-bf83f618c748"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112141Z:d717e01a-465e-4ee2-8cc6-bf83f618c748"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:21:40 GMT"
+ ],
+ "Content-Length": [
+ "3463"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078/config/web\",\r\n \"name\": \"ps5078\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps5078\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [\r\n {\r\n \"actionHostName\": \"ps5078-staging.azurewebsites.net\",\r\n \"reroutePercentage\": 15.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"staging\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"ps5078-staging.azurewebsites.net\",\r\n \"reroutePercentage\": 15.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"staging\"\r\n }\r\n ]\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"reservedInstanceCount\": 0,\r\n \"preWarmedInstanceCount\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078/config/appsettings/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTcxNy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczUwNzgvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5d0c41a1-248d-40ad-81fc-7d9c53396a20"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8be7ba69-26b5-48df-b93d-df00173f05c6"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11988"
+ ],
+ "x-ms-correlation-request-id": [
+ "3d2a5a20-fd03-4d92-a0b1-cde7ae8efee7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112110Z:3d2a5a20-fd03-4d92-a0b1-cde7ae8efee7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:21:10 GMT"
+ ],
+ "Content-Length": [
+ "270"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"6.9.1\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078/config/appsettings/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTcxNy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczUwNzgvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "876598eb-56f0-46a4-ba31-57c33f186ec9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1640edbd-7e62-40b4-b3c0-3adfba9c9682"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11986"
+ ],
+ "x-ms-correlation-request-id": [
+ "a102c059-3c3e-4801-88ae-6d9e270d1749"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112112Z:a102c059-3c3e-4801-88ae-6d9e270d1749"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:21:12 GMT"
+ ],
+ "Content-Length": [
+ "270"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"6.9.1\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078/config/appsettings/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTcxNy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczUwNzgvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2d78c4f5-17d0-40a9-86d0-dd739e034947"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2d994d1d-157f-466b-a5d8-e6cff21b3ca3"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11983"
+ ],
+ "x-ms-correlation-request-id": [
+ "ed445bef-5de3-4744-b879-504663f4a5dd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112138Z:ed445bef-5de3-4744-b879-504663f4a5dd"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:21:37 GMT"
+ ],
+ "Content-Length": [
+ "270"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"6.9.1\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078/config/appsettings/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTcxNy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczUwNzgvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "85e44d8f-7376-4afd-91fb-191762f4a7ff"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f59c4efe-211e-485c-8fdb-83ccf1f9b4ac"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11980"
+ ],
+ "x-ms-correlation-request-id": [
+ "5b6d51a5-1232-4c00-9569-343f088668c9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112141Z:5b6d51a5-1232-4c00-9569-343f088668c9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:21:41 GMT"
+ ],
+ "Content-Length": [
+ "270"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"6.9.1\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078/config/connectionstrings/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTcxNy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczUwNzgvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a758b8b1-353c-4dce-bae9-3c7febc35451"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4f2df641-79aa-4d8d-8eef-c7160b1aa4bb"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11987"
+ ],
+ "x-ms-correlation-request-id": [
+ "d7636b2c-93e4-44e2-8e47-58e1543121ae"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112111Z:d7636b2c-93e4-44e2-8e47-58e1543121ae"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:21:10 GMT"
+ ],
+ "Content-Length": [
+ "244"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078/config/connectionstrings/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTcxNy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczUwNzgvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d693e26a-bd29-4a07-8ebb-7a942c5701ee"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "cac9b314-6a68-4081-b8fe-e11e95d97afc"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11985"
+ ],
+ "x-ms-correlation-request-id": [
+ "f60bde70-4f4b-43d7-8c0a-17359cf0a86b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112112Z:f60bde70-4f4b-43d7-8c0a-17359cf0a86b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:21:12 GMT"
+ ],
+ "Content-Length": [
+ "244"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078/config/connectionstrings/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTcxNy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczUwNzgvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "54c8a746-e7a0-4f1c-ab66-01b1fabe6869"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "56df0f92-836c-4bb2-8de9-7bcb71910864"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11982"
+ ],
+ "x-ms-correlation-request-id": [
+ "30b252d8-5643-44cd-a937-da4aec58055d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112138Z:30b252d8-5643-44cd-a937-da4aec58055d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:21:38 GMT"
+ ],
+ "Content-Length": [
+ "244"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078/config/connectionstrings/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTcxNy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczUwNzgvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7c84f1d1-3857-48ad-afb6-b30a0dadac11"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ba1775bb-d2b1-46d5-a4cf-9364309f615d"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11979"
+ ],
+ "x-ms-correlation-request-id": [
+ "234bd85b-31a6-4baf-b8d5-b544df5726ec"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112142Z:234bd85b-31a6-4baf-b8d5-b544df5726ec"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:21:41 GMT"
+ ],
+ "Content-Length": [
+ "244"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078/publishxml?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTcxNy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczUwNzgvcHVibGlzaHhtbD9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"format\": \"WebDeploy\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ecce3c24-a90a-493b-a395-6de20803f703"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "29"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11998"
+ ],
+ "x-ms-request-id": [
+ "e277517c-a1b3-4c8a-b6a9-db1bb1a09a53"
+ ],
+ "x-ms-correlation-request-id": [
+ "e277517c-a1b3-4c8a-b6a9-db1bb1a09a53"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112111Z:e277517c-a1b3-4c8a-b6a9-db1bb1a09a53"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:21:11 GMT"
+ ],
+ "Content-Length": [
+ "1496"
+ ],
+ "Content-Type": [
+ "application/xml"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078/config/azurestorageaccounts/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTcxNy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczUwNzgvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f7f8a966-8c87-4b52-8cd1-986a1262c22a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4c149360-cacf-4e4d-afb3-12ac372b1958"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11984"
+ ],
+ "x-ms-correlation-request-id": [
+ "f3415a77-cd20-47a1-a14f-f43dfefd6191"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112113Z:f3415a77-cd20-47a1-a14f-f43dfefd6191"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:21:12 GMT"
+ ],
+ "Content-Length": [
+ "241"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078/config/azurestorageaccounts/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTcxNy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczUwNzgvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "67466cee-96f6-42df-820f-9bbe9215953f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7edfcb39-d89a-4340-be44-df1f5b9b0090"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11981"
+ ],
+ "x-ms-correlation-request-id": [
+ "99f5f79c-665b-4eac-aec9-b419867adfe4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112139Z:99f5f79c-665b-4eac-aec9-b419867adfe4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:21:38 GMT"
+ ],
+ "Content-Length": [
+ "241"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078/config/azurestorageaccounts/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTcxNy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczUwNzgvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "be19e493-babf-4454-962e-ffb8c4163b44"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c1605c83-8e62-4863-b77e-0bd88d8d7930"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11978"
+ ],
+ "x-ms-correlation-request-id": [
+ "8bc24639-f754-4b05-9616-4c0ba3838620"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112142Z:8bc24639-f754-4b05-9616-4c0ba3838620"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:21:41 GMT"
+ ],
+ "Content-Length": [
+ "241"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078/slots/staging?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTcxNy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczUwNzgvc2xvdHMvc3RhZ2luZz9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/serverfarms/ps9406\"\r\n },\r\n \"location\": \"West US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "184c2070-5623-4072-b677-11bd8d45f927"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "194"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1D5F216F6A86E15\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a2b6f2e7-e0a1-4a28-9df2-fdd6d8cb9a0e"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "498"
+ ],
+ "x-ms-correlation-request-id": [
+ "39bcae7b-1a25-407e-bf2f-1463f67729a1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112134Z:39bcae7b-1a25-407e-bf2f-1463f67729a1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:21:34 GMT"
+ ],
+ "Content-Length": [
+ "3138"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078/slots/staging\",\r\n \"name\": \"ps5078/staging\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"name\": \"ps5078(staging)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"ps5078-staging.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"ps5717-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-137.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/ps5717-WestUSwebspace/sites/ps5078\",\r\n \"repositorySiteName\": \"ps5078\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"ps5078-staging.azurewebsites.net\",\r\n \"ps5078-staging.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"ps5078-staging.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"ps5078-staging.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/serverfarms/ps9406\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-03-04T11:21:16.8233333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"ps5078__81eb\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"1B721824D63CD36872639E2A56DB41A5AA24E6F9E9FB0AFE3AB8595089D1BBA5\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"40.112.243.6\",\r\n \"possibleInboundIpAddresses\": \"40.112.243.6\",\r\n \"outboundIpAddresses\": \"40.112.243.6,13.93.220.248,13.93.221.96,13.93.221.41,13.93.220.182\",\r\n \"possibleOutboundIpAddresses\": \"40.112.243.6,13.93.220.248,13.93.221.96,13.93.221.41,13.93.220.182,13.93.221.147,13.93.220.112,13.91.111.88,13.93.220.5,13.93.220.231\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-137\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"ps5717\",\r\n \"defaultHostName\": \"ps5078-staging.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078/slots/staging/config/web?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTcxNy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczUwNzgvc2xvdHMvc3RhZ2luZy9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTgtMTEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5604856e-ece1-430b-9875-cb651f10b5a8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "363d0bde-c73b-405e-bd5c-c72819c16a6b"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11978"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "3786c82f-6feb-4fa0-9d24-943fca17e254"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112135Z:3786c82f-6feb-4fa0-9d24-943fca17e254"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:21:34 GMT"
+ ],
+ "Content-Length": [
+ "3020"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078/slots/staging/config/web\",\r\n \"name\": \"ps5078\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps5078__staging\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"reservedInstanceCount\": 0,\r\n \"preWarmedInstanceCount\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078/slots/staging/config/appsettings/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTcxNy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczUwNzgvc2xvdHMvc3RhZ2luZy9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "eabc7b2d-fb0e-4208-af17-7f95da6bf9b3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "674d5820-1742-4ea6-84eb-913842b8a85f"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11996"
+ ],
+ "x-ms-correlation-request-id": [
+ "05638a89-d5a0-4fec-b40d-1960512fbfef"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112136Z:05638a89-d5a0-4fec-b40d-1960512fbfef"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:21:36 GMT"
+ ],
+ "Content-Length": [
+ "284"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078/slots/staging/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"6.9.1\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078/slots/staging/config/connectionstrings/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTcxNy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczUwNzgvc2xvdHMvc3RhZ2luZy9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "23acd281-aa09-4123-b97b-65077cad0532"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b9e9bdcc-644b-454e-81c0-5826292e6278"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11995"
+ ],
+ "x-ms-correlation-request-id": [
+ "a0730b2e-d0d8-41f1-960f-c6421681dbbc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112136Z:a0730b2e-d0d8-41f1-960f-c6421681dbbc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:21:36 GMT"
+ ],
+ "Content-Length": [
+ "258"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078/slots/staging/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078/slots/staging/config/azurestorageaccounts/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTcxNy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczUwNzgvc2xvdHMvc3RhZ2luZy9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "226d2acb-0658-4cb8-9243-cfba69ae7548"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3bc84394-60c5-41b9-b5dc-53c7b0b50e40"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11994"
+ ],
+ "x-ms-correlation-request-id": [
+ "1c0dd3f5-cc2d-4294-b27e-514238d98697"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112137Z:1c0dd3f5-cc2d-4294-b27e-514238d98697"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:21:36 GMT"
+ ],
+ "Content-Length": [
+ "255"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078/slots/staging/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078/config/web?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzNTcxNy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczUwNzgvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "PATCH",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"httpLoggingEnabled\": false,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps5078\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_NODE_DEFAULT_VERSION\",\r\n \"value\": \"6.9.1\"\r\n }\r\n ],\r\n \"connectionStrings\": [],\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false\r\n }\r\n ],\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"ps5078-staging.azurewebsites.net\",\r\n \"reroutePercentage\": 15.0,\r\n \"name\": \"staging\"\r\n }\r\n ]\r\n },\r\n \"autoHealEnabled\": false,\r\n \"vnetName\": \"\",\r\n \"localMySqlEnabled\": false,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"reservedInstanceCount\": 0\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c719a841-ee6e-4a73-bded-8940cf7a7215"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "2094"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1D5F216F6A86E15\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "44a62a6c-28ff-40aa-abac-44ed2852896c"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1195"
+ ],
+ "x-ms-correlation-request-id": [
+ "5638f0a8-2b2a-40de-85b6-23ed9a41fed4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112140Z:5638f0a8-2b2a-40de-85b6-23ed9a41fed4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:21:39 GMT"
+ ],
+ "Content-Length": [
+ "3445"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps5717/providers/Microsoft.Web/sites/ps5078\",\r\n \"name\": \"ps5078\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps5078\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [\r\n {\r\n \"actionHostName\": \"ps5078-staging.azurewebsites.net\",\r\n \"reroutePercentage\": 15.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"staging\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"ps5078-staging.azurewebsites.net\",\r\n \"reroutePercentage\": 15.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"staging\"\r\n }\r\n ]\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"reservedInstanceCount\": 0,\r\n \"preWarmedInstanceCount\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/ps5717?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlZ3JvdXBzL3BzNTcxNz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "eb111764-eed6-4b62-9ccb-0897242d9434"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-request-id": [
+ "d0012b27-9700-428b-95e9-e5f976a045fa"
+ ],
+ "x-ms-correlation-request-id": [
+ "d0012b27-9700-428b-95e9-e5f976a045fa"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112149Z:d0012b27-9700-428b-95e9-e5f976a045fa"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:21:49 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM01UY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-request-id": [
+ "b79c73f8-3ea3-4fb3-b47c-5f85e804b50a"
+ ],
+ "x-ms-correlation-request-id": [
+ "b79c73f8-3ea3-4fb3-b47c-5f85e804b50a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112204Z:b79c73f8-3ea3-4fb3-b47c-5f85e804b50a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:22:04 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM01UY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-request-id": [
+ "2f1b439e-a3ca-4694-9809-dbf9367378a5"
+ ],
+ "x-ms-correlation-request-id": [
+ "2f1b439e-a3ca-4694-9809-dbf9367378a5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112220Z:2f1b439e-a3ca-4694-9809-dbf9367378a5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:22:19 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM01UY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-request-id": [
+ "7275a9b4-48d0-4cca-9b5b-36362980c89e"
+ ],
+ "x-ms-correlation-request-id": [
+ "7275a9b4-48d0-4cca-9b5b-36362980c89e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112235Z:7275a9b4-48d0-4cca-9b5b-36362980c89e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:22:35 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM01UY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-request-id": [
+ "a17ffd09-810f-497f-a586-be83677b611b"
+ ],
+ "x-ms-correlation-request-id": [
+ "a17ffd09-810f-497f-a586-be83677b611b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112251Z:a17ffd09-810f-497f-a586-be83677b611b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:22:50 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM01UY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-request-id": [
+ "a40e0215-d8c1-4e2d-996e-f7c05ce1095c"
+ ],
+ "x-ms-correlation-request-id": [
+ "a40e0215-d8c1-4e2d-996e-f7c05ce1095c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112306Z:a40e0215-d8c1-4e2d-996e-f7c05ce1095c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:23:06 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM01UY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-request-id": [
+ "df034ca6-d3ea-4221-96e6-bde1cd77466c"
+ ],
+ "x-ms-correlation-request-id": [
+ "df034ca6-d3ea-4221-96e6-bde1cd77466c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112322Z:df034ca6-d3ea-4221-96e6-bde1cd77466c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:23:22 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM01UY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-request-id": [
+ "48379a1c-6553-4346-9ddb-30613ec07b4e"
+ ],
+ "x-ms-correlation-request-id": [
+ "48379a1c-6553-4346-9ddb-30613ec07b4e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112337Z:48379a1c-6553-4346-9ddb-30613ec07b4e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:23:37 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM01UY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-request-id": [
+ "44d63d50-94c3-4fb7-a48f-3aa9878b6c85"
+ ],
+ "x-ms-correlation-request-id": [
+ "44d63d50-94c3-4fb7-a48f-3aa9878b6c85"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112353Z:44d63d50-94c3-4fb7-a48f-3aa9878b6c85"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:23:52 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM01UY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "x-ms-request-id": [
+ "4d1fe4d0-6d87-4407-a043-58a39eddc081"
+ ],
+ "x-ms-correlation-request-id": [
+ "4d1fe4d0-6d87-4407-a043-58a39eddc081"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112408Z:4d1fe4d0-6d87-4407-a043-58a39eddc081"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:24:07 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM01UY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "x-ms-request-id": [
+ "aec82e96-7589-4424-8c49-1ed438fc22a8"
+ ],
+ "x-ms-correlation-request-id": [
+ "aec82e96-7589-4424-8c49-1ed438fc22a8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112424Z:aec82e96-7589-4424-8c49-1ed438fc22a8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:24:23 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM01UY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
+ ],
+ "x-ms-request-id": [
+ "48bd2be3-a5d3-4a54-86ac-a7c7a193be3f"
+ ],
+ "x-ms-correlation-request-id": [
+ "48bd2be3-a5d3-4a54-86ac-a7c7a193be3f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112439Z:48bd2be3-a5d3-4a54-86ac-a7c7a193be3f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:24:39 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM01UY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11986"
+ ],
+ "x-ms-request-id": [
+ "be4475a3-2ca6-4992-94b5-4c53a7532f88"
+ ],
+ "x-ms-correlation-request-id": [
+ "be4475a3-2ca6-4992-94b5-4c53a7532f88"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112455Z:be4475a3-2ca6-4992-94b5-4c53a7532f88"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:24:55 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM01UY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11985"
+ ],
+ "x-ms-request-id": [
+ "b6b2e4e4-a667-4df3-84c3-55db3a7fb389"
+ ],
+ "x-ms-correlation-request-id": [
+ "b6b2e4e4-a667-4df3-84c3-55db3a7fb389"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112510Z:b6b2e4e4-a667-4df3-84c3-55db3a7fb389"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:25:10 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM01UY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11984"
+ ],
+ "x-ms-request-id": [
+ "9bd23ea5-ca10-4315-a5b0-fcdb40662417"
+ ],
+ "x-ms-correlation-request-id": [
+ "9bd23ea5-ca10-4315-a5b0-fcdb40662417"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112526Z:9bd23ea5-ca10-4315-a5b0-fcdb40662417"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:25:25 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM01UY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11983"
+ ],
+ "x-ms-request-id": [
+ "930a209e-c6f4-4a2e-b7b4-8d52fa4a9102"
+ ],
+ "x-ms-correlation-request-id": [
+ "930a209e-c6f4-4a2e-b7b4-8d52fa4a9102"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112541Z:930a209e-c6f4-4a2e-b7b4-8d52fa4a9102"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:25:41 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MTctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM01UY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11982"
+ ],
+ "x-ms-request-id": [
+ "02ada20e-cb0f-49a4-abf2-29adb573d1b9"
+ ],
+ "x-ms-correlation-request-id": [
+ "02ada20e-cb0f-49a4-abf2-29adb573d1b9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112542Z:02ada20e-cb0f-49a4-abf2-29adb573d1b9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:25:41 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-GetWebAppTrafficRoutingRule": [
+ "ps5717",
+ "ps5078",
+ "ps9406"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "04b0639d-85d8-445a-bada-8da78e50ff30"
+ }
+}
\ No newline at end of file
diff --git a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.RoutingRuleTests/TestRemoveWebAppTrafficRoutingRule.json b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.RoutingRuleTests/TestRemoveWebAppTrafficRoutingRule.json
new file mode 100644
index 000000000000..c883cf5c6486
--- /dev/null
+++ b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.RoutingRuleTests/TestRemoveWebAppTrafficRoutingRule.json
@@ -0,0 +1,3614 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Byb3ZpZGVycy8/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9f4ae10d-3095-462a-94f6-d724a34ddb4a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-request-id": [
+ "52d1e6e3-4d9d-4a98-84bc-d58c2fd66e31"
+ ],
+ "x-ms-correlation-request-id": [
+ "52d1e6e3-4d9d-4a98-84bc-d58c2fd66e31"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111040Z:52d1e6e3-4d9d-4a98-84bc-d58c2fd66e31"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:10:40 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "727422"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ResourceHealth\",\r\n \"namespace\": \"Microsoft.ResourceHealth\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8bdebf23-c0fe-4187-a378-717ad86f6a53\",\r\n \"roleDefinitionId\": \"cc026344-c8b1-4561-83ba-59eba84b27cc\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilityStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-rc\",\r\n \"2018-08-01-preview\",\r\n \"2018-07-01-rc\",\r\n \"2018-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"childAvailabilityStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-06-beta\",\r\n \"2018-08-01-rc\",\r\n \"2018-08-01-preview\",\r\n \"2018-07-01-rc\",\r\n \"2018-07-01-preview\",\r\n \"2018-07-01-beta\",\r\n \"2017-07-01-rc\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01-beta\",\r\n \"2015-01-01-rc\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"childResources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-06-beta\",\r\n \"2018-08-01-rc\",\r\n \"2018-08-01-preview\",\r\n \"2018-07-01-rc\",\r\n \"2018-07-01-preview\",\r\n \"2018-07-01-beta\",\r\n \"2017-07-01-rc\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01-beta\",\r\n \"2015-01-01-rc\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"events\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-rc\",\r\n \"2018-07-01-preview\",\r\n \"2018-07-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"metadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-rc\",\r\n \"2018-07-01-preview\",\r\n \"2018-07-01-beta\",\r\n \"2018-07-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"emergingissues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-06-beta\",\r\n \"2018-07-01-rc\",\r\n \"2018-07-01-preview\",\r\n \"2018-07-01-beta\",\r\n \"2018-07-01-alpha\",\r\n \"2018-07-01\",\r\n \"2017-07-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifications\",\r\n \"locations\": [\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"ea2f600a-4980-45b7-89bf-d34da487bda1\",\r\n \"roleDefinitionId\": \"54d7f2e3-5040-48a7-ae90-eebf629cfa0b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\",\r\n \"2018-12-01-preview\",\r\n \"2018-09-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-01-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-01-01-preview\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"denyAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\r\n \"2018-07-01-preview\",\r\n \"2018-07-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-09-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-01-01\",\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"policySetDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-01-01\",\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-01-01\",\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity, SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"dataAliases\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"elevateAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"findOrphanRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"roleAssignmentsUsageMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.MachineLearningServices\",\r\n \"namespace\": \"Microsoft.MachineLearningServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n {\r\n \"applicationId\": \"18a66f5f-dbdf-4c17-9dd7-1634712a9cbe\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n {\r\n \"applicationId\": \"9fcb3732-5f52-4135-8c08-9d4bbaf203ea\",\r\n \"roleDefinitionId\": \"703B89C7-CE2C-431B-BDD8-FA34E39AF696\",\r\n \"managedByRoleDefinitionId\": \"90B8E153-EBFF-4073-A95F-4DAD56B14C78\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"Canada Central\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/computes\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/eventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/computeOperationsStatus\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/workspaceOperationsStatus\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmsizes\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/updatequotas\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.CertificateRegistration\",\r\n \"namespace\": \"Microsoft.CertificateRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3c21649-0979-4721-ac85-b0216b2cf413\",\r\n \"roleDefinitionId\": \"933fba7e-2ed3-4da8-973d-8bd8298a9b40\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"certificateOrders\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"certificateOrders/certificates\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateCertificateRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validate\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"isusernameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/getNetworkPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"France Central\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/networkConfig\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/networkConfig\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2015-01-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2015-01-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"West India\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-02-01\",\r\n \"2019-01-01\",\r\n \"2018-11-01\",\r\n \"2018-08-01\",\r\n \"2018-05-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-02-01\",\r\n \"2018-11-01\",\r\n \"2018-08-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-02-01\",\r\n \"2018-11-01\",\r\n \"2018-08-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedSites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedSites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-11-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"customApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/listWsdlInterfaces\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extractApiDefinitionFromWsdl\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runtimes\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/apiOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connectionGateways\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/connectionGatewayInstallations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingMeters\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"verifyHostingEnvironmentVnet\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/eventGridFilters\",\r\n \"locations\": [\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/eventGridFilters\",\r\n \"locations\": [\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2015-01-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/eventGridFilters\",\r\n \"locations\": [\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2015-01-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ManagedIdentity\",\r\n \"namespace\": \"Microsoft.ManagedIdentity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Identities\",\r\n \"locations\": [\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-30\",\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"userAssignedIdentities\",\r\n \"locations\": [\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-30\",\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-30\",\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6bccf540-eb86-4037-af03-7fa058c2db75\",\r\n \"roleDefinitionId\": \"89dcede2-9219-403a-9723-d3c6473f9472\"\r\n },\r\n {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n {\r\n \"applicationId\": \"035f9e1d-4f00-4419-bf50-bf2d87eb4878\",\r\n \"roleDefinitionId\": \"323795fe-ba3d-4f5a-ad42-afb4e1ea9485\"\r\n },\r\n {\r\n \"applicationId\": \"f5c26e74-f226-4ae8-85f0-b4af0080ac9e\",\r\n \"roleDefinitionId\": \"529d7ae6-e892-4d43-809d-8547aeb90643\"\r\n },\r\n {\r\n \"applicationId\": \"b503eb83-1222-4dcc-b116-b98ed5216e05\",\r\n \"roleDefinitionId\": \"68699c37-c689-44d4-9248-494b782d46ae\"\r\n },\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n },\r\n {\r\n \"applicationId\": \"3af5a1e8-2459-45cb-8683-bcd6cccbcc13\",\r\n \"roleDefinitionId\": \"b1309299-720d-4159-9897-6158a61aee41\"\r\n },\r\n {\r\n \"applicationId\": \"6a0a243c-0886-468a-a4c2-eff52c7445da\",\r\n \"roleDefinitionId\": \"d2eda64b-c5e6-4930-8642-2d80ecd7c2e2\"\r\n },\r\n {\r\n \"applicationId\": \"707be275-6b9d-4ee7-88f9-c0c2bd646e0f\",\r\n \"roleDefinitionId\": \"fa027d90-6ba0-4c33-9a54-59edaf2327e7\"\r\n },\r\n {\r\n \"applicationId\": \"461e8683-5575-4561-ac7f-899cc907d62a\",\r\n \"roleDefinitionId\": \"68699c37-c689-44d4-9248-494b782d46ae\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/query\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Australia Southeast\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/events\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"scheduledqueryrules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-16\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/pricingPlans\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"migrateToNewPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rollbackToLegacyPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listMigrationdate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logprofiles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"migratealertrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricalerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2016-09-01-preview\",\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vmInsightsOnboardingStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-27-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2015-07-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"extendedDiagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"logDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"eventCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"metricbatch\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"actiongroups\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2018-09-01\",\r\n \"2018-03-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"activityLogAlerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"baseline\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"metricbaselines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"calculatebaseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"workbooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"South Africa North\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-17-preview\",\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"workbooktemplates\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"South Africa North\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"myWorkbooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-17-preview\",\r\n \"2018-06-15-preview\",\r\n \"2018-06-01-preview\",\r\n \"2016-06-15-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"transactions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"topology\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"privateLinkScopes\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateLinkScopes/privateEndpointConnections\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateLinkScopes/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateLinkScopes/scopedResources\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateLinkScopeOperationStatuses\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-11-15\",\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domainNames/internalLoadBalancers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/serviceCertificates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"moveSubscriptionResources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateSubscriptionMoveAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystems\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystemFamilies\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/remoteVirtualNetworkPeeringProxies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections/peerings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"osImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"osPlatformImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n },\r\n {\r\n \"applicationId\": \"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"372140e0-b3b7-4226-8ef9-d57986796201\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab\",\r\n \"roleDefinitionId\": \"6efa92ca-56b6-40af-a468-5e3d2b5232f0\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"proximityPlacementGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/artifactPublishers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diskEncryptionSets\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations/vsmoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UK West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"France South\",\r\n \"West US 2\",\r\n \"Japan West\",\r\n \"France Central\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n {\r\n \"applicationId\": \"737d58c1-397a-46e7-9d12-7d8c830883c2\",\r\n \"roleDefinitionId\": \"716bb53a-0390-4428-bf41-b1bedde7d751\"\r\n },\r\n {\r\n \"applicationId\": \"918d0db8-4a38-4938-93c1-9313bdfe0272\",\r\n \"roleDefinitionId\": \"dcd2d2c9-3f80-4d72-95a8-2593111b4b12\"\r\n },\r\n {\r\n \"applicationId\": \"d2fa1650-4805-4a83-bcb9-cf41fe63539c\",\r\n \"roleDefinitionId\": \"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2\"\r\n },\r\n {\r\n \"applicationId\": \"a4c95b9e-3994-40cc-8953-5dc66d48348d\",\r\n \"roleDefinitionId\": \"dc88c655-90fa-48d9-8d51-003cc8738508\"\r\n },\r\n {\r\n \"applicationId\": \"62c559cd-db0c-4da0-bab2-972528c65d42\",\r\n \"roleDefinitionId\": \"437b639a-6d74-491d-959f-d172e8c5c1fc\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"registries/scopeMaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/tokens\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/generateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/privateEndpointConnections\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/privateLinkResources\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/importImage\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/scheduleRun\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/runs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/taskRuns\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/runs/listLogSasUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/runs/cancel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/tasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"registries/tasks/listDetails\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/getBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/queueBuild\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/getLogLink\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/cancel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/listSourceRepositoryProperties\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps/listBuildArguments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/replications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/ping\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/getCallbackConfig\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/listEvents\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setupAuth\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/authorize\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listUsages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/updatePolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/eventGridFilters\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n {\r\n \"applicationId\": \"6201d19e-14fb-4472-a2d6-5634a5c97568\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/networkrulesets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableClusterRegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n },\r\n {\r\n \"applicationId\": \"589d5083-6f11-4d30-a62a-a4b316a14abf\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/eventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n },\r\n {\r\n \"applicationId\": \"19947cfd-0303-466c-ac3c-fcc19a7a1570\",\r\n \"roleDefinitionId\": \"d813ab6c-bfb7-413e-9462-005b21f0ce09\"\r\n },\r\n {\r\n \"applicationId\": \"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd\",\r\n \"roleDefinitionId\": \"8141843c-c51c-4c1e-a5bf-0d351594b86c\"\r\n },\r\n {\r\n \"applicationId\": \"328fd23b-de6e-462c-9433-e207470a5727\",\r\n \"roleDefinitionId\": \"79e29e06-4056-41e5-a6b2-959f1f47747e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"privateEndpointRedirectMaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceEndpointPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkIntentPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPPrefixes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ddosCustomPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/flowLogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/pingMeshes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serviceTags\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availablePrivateEndpointTypes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableServiceAliases\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkPrivateLinkServiceVisibility\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/autoApprovedPrivateLinkServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getDnsResourceReference\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"internalNotify\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/virtualNetworkLinks\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableServerVariables\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableRequestHeaders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableResponseHeaders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualWans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnSites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnServerConfigurations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"p2sVpnGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"firewallPolicies\",\r\n \"locations\": [\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ipGroups\",\r\n \"locations\": [\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/nfvOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/nfvOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"azureFirewalls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewallFqdnTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkTaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"privateLinkServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"networkProfiles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFrontdoorNameAvailability\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontdoors\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-03-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallManagedRuleSets\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkExperimentProfiles\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/bareMetalTenants\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"bastionHosts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualRouters\",\r\n \"locations\": [\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80a10ef9-8168-493d-abf9-3297c4ef6e3c\",\r\n \"roleDefinitionId\": \"2b7763f7-bbe2-4e19-befe-28c79f1cf7f7\"\r\n },\r\n {\r\n \"applicationId\": \"eb070ea5-bd17-41f1-ad68-5851f6e71774\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/networkrulesets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"premiumMessagingRegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventgridfilters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ServiceFabric\",\r\n \"namespace\": \"Microsoft.ServiceFabric\",\r\n \"authorization\": {\r\n \"applicationId\": \"74cb6831-0dbb-4be1-8206-fd4df301cdc2\",\r\n \"roleDefinitionId\": \"e55cc65f-6903-4917-b4ef-f8d4640b57f5\",\r\n \"managedByRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/clusterVersions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/environments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ServiceFabricMesh\",\r\n \"namespace\": \"Microsoft.ServiceFabricMesh\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d10de03d-5ba3-497a-90e6-7ff8c9736059\",\r\n \"roleDefinitionId\": \"BC13595A-E262-4621-929E-56FF90E6BF18\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"networks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"volumes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"secrets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/applicationOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/networkOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/volumeOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/gatewayOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/secretOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e4ab13ed-33cb-41b4-9140-6e264582cf85\",\r\n \"roleDefinitionId\": \"ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec\"\r\n },\r\n {\r\n \"applicationId\": \"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9\",\r\n \"roleDefinitionId\": \"45e8abf8-0ec4-44f3-9c37-cff4f7779302\"\r\n },\r\n {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n {\r\n \"applicationId\": \"76c7f279-7959-468f-8943-3954880e0d8c\",\r\n \"roleDefinitionId\": \"7f7513a8-73f9-4c5f-97a2-c41f0ea783ef\"\r\n },\r\n {\r\n \"applicationId\": \"022907d3-0f1b-48f7-badc-1ba6abab6d66\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/encryptionProtector\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceEncryptionProtectorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceEncryptionProtectorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/communicationLinks\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administrators\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAdministratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAdministratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/geoBackupPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/backupLongTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/backupShortTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/automaticTuning\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/automaticTuning\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/transparentDataEncryption\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/extendedAuditingSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-09-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAccounts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAgents\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAgents/jobs\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAgents/jobs/steps\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAgents/jobs/executions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/disasterRecoveryConfiguration\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/dnsAliases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/failoverGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/aggregatedDatabaseMetrics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries/queryText\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPools/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/extensions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPoolEstimates\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditRecords\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentScans\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/workloadGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessment\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/recommendedSensitivityLabels\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups/syncMembers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/syncAgents\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"instancePools\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/instancePoolOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instancePoolAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/administrators\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/recoverableDatabases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/metrics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/metricDefinitions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/backupLongTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionManagedInstances\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionManagedInstanceBackups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceLongTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceLongTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionManagedInstanceBackupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionManagedInstanceBackupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseCompleteRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseCompleteRestoreOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualClusters\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualClusterAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualClusterOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncMemberOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncDatabaseIds\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedShortTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedShortTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/notifyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Subscription\",\r\n \"namespace\": \"Microsoft.Subscription\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3335adb-5ca0-40dc-b8d3-bedc094e523b\"\r\n },\r\n {\r\n \"applicationId\": \"5da7367f-09c8-493e-8fd4-638089cddec3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SubscriptionDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SubscriptionOperations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CreateSubscription\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cancel\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rename\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enable\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Advisor\",\r\n \"namespace\": \"Microsoft.Advisor\",\r\n \"authorization\": {\r\n \"applicationId\": \"c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7\",\r\n \"roleDefinitionId\": \"8a63b04c-3731-409b-9765-f1175c047872\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"suppressions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"configurations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2017-04-19\",\r\n \"2017-03-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"generateRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.PolicyInsights\",\r\n \"namespace\": \"Microsoft.PolicyInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"1d78a85d-813d-46f0-b496-dd72f50a3ec0\",\r\n \"roleDefinitionId\": \"63d2b225-4c34-4641-8768-21a1f7c68ce8\"\r\n },\r\n {\r\n \"applicationId\": \"8cae6e77-e04e-42ce-b5cb-50d82bce26b1\",\r\n \"roleDefinitionId\": \"4a2d3d6b-a6ea-45e2-9882-c9ba3e726ed7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyEvents\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"policyStates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"asyncOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"remediations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"policyTrackedResources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.AlertsManagement\",\r\n \"namespace\": \"Microsoft.AlertsManagement\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"3af5a1e8-2459-45cb-8683-bcd6cccbcc13\",\r\n \"roleDefinitionId\": \"b1309299-720d-4159-9897-6158a61aee41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-05-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-11-02-privatepreview\",\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"alertsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-05-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"smartGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-05-preview\",\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorAlertRules\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"actionRules\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-05-preview\",\r\n \"2018-11-02-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"alertsList\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-02-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertsSummaryList\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-02-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertsMetaData\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-05-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ChangeAnalysis\",\r\n \"namespace\": \"Microsoft.ChangeAnalysis\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cfc91a4-7baa-4a8f-a6c9-5f3d279060b8\",\r\n \"roleDefinitionId\": \"f5a6bd90-af71-455c-9030-c486e8c42c95\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Security\",\r\n \"namespace\": \"Microsoft.Security\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8edd93e1-2103-40b4-bd70-6e34e586362d\",\r\n \"roleDefinitionId\": \"855AF4C4-82F6-414C-B1A2-628025628B9A\"\r\n },\r\n {\r\n \"applicationId\": \"fc780465-2017-40d4-a0c5-307022471b92\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatuses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"regulatoryComplianceStandards\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"regulatoryComplianceStandards/regulatoryComplianceControls\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"regulatoryComplianceStandards/regulatoryComplianceControls/regulatoryComplianceAssessments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoDismissAlertsRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionAgents\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"pricings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AutoProvisioningSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Compliances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"securityContacts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaceSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"complianceResults\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"policies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"assessments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"assessmentMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"subAssessments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"allowedConnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allowedConnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topologies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/topologies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatusesSummaries\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"InformationProtectionPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"advancedThreatProtectionSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"deviceSecurityGroups\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"iotSecuritySolutions\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"iotSecuritySolutions/analyticsModels\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"iotSecuritySolutions/analyticsModels/aggregatedAlerts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"iotSecuritySolutions/analyticsModels/aggregatedRecommendations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"settings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverVulnerabilityAssessments\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"adaptiveNetworkHardenings\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"automations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"France Central\",\r\n \"France South\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/84codes.CloudAMQP\",\r\n \"namespace\": \"84codes.CloudAMQP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Conexlink.MyCloudIT\",\r\n \"namespace\": \"Conexlink.MyCloudIT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Crypteron.DataSecurity\",\r\n \"namespace\": \"Crypteron.DataSecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/LiveArena.Broadcast\",\r\n \"namespace\": \"LiveArena.Broadcast\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Mailjet.Email\",\r\n \"namespace\": \"Mailjet.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-10-01\",\r\n \"2017-05-29\",\r\n \"2017-02-03\",\r\n \"2016-11-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.AAD\",\r\n \"namespace\": \"Microsoft.AAD\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"443155a6-77f3-45e3-882b-22b3a8d431fb\",\r\n \"roleDefinitionId\": \"7389DE79-3180-4F07-B2BA-C5BA1F01B03A\"\r\n },\r\n {\r\n \"applicationId\": \"abba844e-bc0e-44b0-947a-dc74e5d09022\",\r\n \"roleDefinitionId\": \"63BC473E-7767-42A5-A3BF-08EB71200E04\"\r\n },\r\n {\r\n \"applicationId\": \"d87dcbc6-a371-462e-88e3-28ad15ec4e64\",\r\n \"roleDefinitionId\": \"861776c5-e0df-4f95-be4f-ac1eec193323\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DomainServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"DomainServices/oucontainer\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Addons\",\r\n \"namespace\": \"Microsoft.Addons\",\r\n \"authorization\": {\r\n \"applicationId\": \"24d3987b-be4a-48e0-a3e7-11c186f39e41\",\r\n \"roleDefinitionId\": \"8004BAAB-A4CB-4981-8571-F7E44D039D93\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"supportProviders\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"addsservices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"aadsupportcases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servicehealthmetrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"anonymousapiusers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.AnalysisServices\",\r\n \"namespace\": \"Microsoft.AnalysisServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Canada East\",\r\n \"Central India\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"France Central\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.AppConfiguration\",\r\n \"namespace\": \"Microsoft.AppConfiguration\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"35ffadb3-7fc1-497e-b61b-381d28e744cc\",\r\n \"roleDefinitionId\": \"fffa409e-a8cc-4cbf-8e1c-6d940b33040e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"configurationStores\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"configurationStores/eventGridFilters\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.AppPlatform\",\r\n \"namespace\": \"Microsoft.AppPlatform\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Spring\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatus\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Attestation\",\r\n \"namespace\": \"Microsoft.Attestation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c61423b7-1d1f-430d-b444-0eee53298103\",\r\n \"roleDefinitionId\": \"7299b0b1-11da-4858-8943-7db197005959\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"attestationProviders\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"fc75330b-179d-49af-87dd-3b1acf6827fa\",\r\n \"roleDefinitionId\": \"95fd5de3-d071-4362-92bf-cf341c1de832\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-13-preview\",\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/configurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"West US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/webhooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Australia East\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/softwareUpdateConfigurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/jobs\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/privateLinkResources\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-13-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/privateEndpointConnections\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-13-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-13-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.AzureActiveDirectory\",\r\n \"namespace\": \"Microsoft.AzureActiveDirectory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"b2cDirectories\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-privatepreview\",\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-privatepreview\",\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"b2ctenants\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-02-10-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.AzureData\",\r\n \"namespace\": \"Microsoft.AzureData\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sqlServerRegistrations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-10-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-10-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sqlServerRegistrations/sqlServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-10-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.AzureStack\",\r\n \"namespace\": \"Microsoft.AzureStack\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registrations/products\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations/customerSubscriptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudManifestFiles\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.BatchAI\",\r\n \"namespace\": \"Microsoft.BatchAI\",\r\n \"authorization\": {\r\n \"applicationId\": \"9fcb3732-5f52-4135-8c08-9d4bbaf203ea\",\r\n \"roleDefinitionId\": \"703B89C7-CE2C-431B-BDD8-FA34E39AF696\",\r\n \"managedByRoleDefinitionId\": \"90B8E153-EBFF-4073-A95F-4DAD56B14C78\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/clusters\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/fileservers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments/jobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Billing\",\r\n \"namespace\": \"Microsoft.Billing\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80dbdb39-4f33-4799-8b6f-711b5e3e61b6\",\r\n \"roleDefinitionId\": \"acdc79db-513f-461d-a542-61908d543bdc\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"billingPeriods\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"invoices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingRoleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"billingRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"createBillingRoleAssignment\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/createBillingRoleAssignment\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/createBillingRoleAssignment\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/createBillingRoleAssignment\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingPermissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingRoleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingPermissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/billingRoleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/billingRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/billingPermissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/customers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/instructions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/billingRoleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/billingRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/billingPermissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/billingPermissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/elevate\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/createInvoiceSectionOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/patchOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/patchOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/productMoveOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/billingSubscriptionMoveOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/listInvoiceSectionsWithCreateSubscriptionPermission\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/BillingProfiles/patchOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-06-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/enrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-06-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/paymentMethods\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/availableBalance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoices/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingSubscriptions/invoices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/products/updateAutoRenew\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/products/updateAutoRenew\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-06-30\",\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/initiateTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/initiateTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/transfers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/transfers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers/acceptTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers/declineTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers/validateTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/initiateTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/transfers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingProperty\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/policies\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/policies\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoices/pricesheet\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/pricesheet\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/pricesheetDownloadOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/billingSubscriptions/transfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/products/transfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/products/transfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/productTransfersResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers/operationStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/agreements\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/lineOfCredit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/paymentMethods\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateAddress\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Blockchain\",\r\n \"namespace\": \"Microsoft.Blockchain\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"78827f38-7b69-4d5e-a627-d6fdd9c759a0\",\r\n \"roleDefinitionId\": \"9c68eaf3-8315-4e5c-b857-641b16b21f8f\"\r\n },\r\n {\r\n \"applicationId\": \"049d4938-2ef2-4274-aa8f-630fc9bc33d1\",\r\n \"roleDefinitionId\": \"c6dd0893-0495-488a-ac21-ee5f1ba89769\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"watchers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"blockchainMembers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/watcherOperationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/blockchainMemberOperationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/listConsortiums\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Blueprint\",\r\n \"namespace\": \"Microsoft.Blueprint\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"f71766dc-90d9-4b7d-bd9d-4499c4331c3f\",\r\n \"roleDefinitionId\": \"cb180127-cf6d-4672-9e75-e29a487f9658\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"blueprints\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"blueprints/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity, SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments/assignmentOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.BotService\",\r\n \"namespace\": \"Microsoft.BotService\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3723d34-6ff5-4ceb-a148-d99dcd2511fc\",\r\n \"roleDefinitionId\": \"71213c26-43ed-41d8-9905-3c12971517a3\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"botServices\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"botServices/channels\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"botServices/connections\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAuthServiceProviders\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Capacity\",\r\n \"namespace\": \"Microsoft.Capacity\",\r\n \"authorization\": {\r\n \"applicationId\": \"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b\",\r\n \"roleDefinitionId\": \"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-06-01\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations/revisions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliedReservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatePrice\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculateExchange\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"exchange\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/calculateRefund\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/return\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/split\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/merge\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/swap\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateReservationOrder\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/availableScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations/availableScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commercialReservationOrders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatePurchasePrice\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-privatepreview\",\r\n \"2019-06-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"placePurchaseOrder\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-privatepreview\",\r\n \"2019-06-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkPurchaseStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-privatepreview\",\r\n \"2019-06-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"authorizations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/customdomains\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/originresults\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/customdomainresults\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkResourceUsage\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateProbe\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"edgenodes\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CdnWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"CdnWebApplicationFirewallManagedRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ClassicInfrastructureMigrate\",\r\n \"namespace\": \"Microsoft.ClassicInfrastructureMigrate\",\r\n \"authorization\": {\r\n \"applicationId\": \"5e5abe2b-83cd-4786-826a-a05653ebb103\",\r\n \"roleDefinitionId\": \"766c4d9b-ef83-4f73-8352-1450a506a69b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicInfrastructureResources\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ClassicSubscription\",\r\n \"namespace\": \"Microsoft.ClassicSubscription\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.CognitiveServices\",\r\n \"namespace\": \"Microsoft.CognitiveServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"7d312290-28c8-473c-a0ed-8e53749b6d6d\",\r\n \"roleDefinitionId\": \"5cb87f79-a7c3-4a95-9414-45b65974b51b\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkSkuAvailability\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-18\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Commerce\",\r\n \"namespace\": \"Microsoft.Commerce\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"UsageAggregates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RateCard\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-31-preview\",\r\n \"2015-06-01-preview\",\r\n \"2015-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Consumption\",\r\n \"namespace\": \"Microsoft.Consumption\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c5b17a4f-cc6f-4649-9480-684280a2af3a\",\r\n \"roleDefinitionId\": \"4a2e6ae9-2713-4cc9-a3b3-312899d687c3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Forecasts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"AggregatedCost\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ReservationRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ReservationSummaries\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ReservationTransactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Balances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Marketplaces\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Pricesheets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ReservationDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Budgets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"CostTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Terms\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"UsageDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-05-01\",\r\n \"2019-04-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Charges\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"credits\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"events\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"lots\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"OperationStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-05-01\",\r\n \"2019-04-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"OperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-05-01\",\r\n \"2019-04-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ContainerInstance\",\r\n \"namespace\": \"Microsoft.ContainerInstance\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9\",\r\n \"roleDefinitionId\": \"3c60422b-a83a-428d-9830-22609c77aa6c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerGroups\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"serviceAssociationLinks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cachedImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ContainerService\",\r\n \"namespace\": \"Microsoft.ContainerService\",\r\n \"authorization\": {\r\n \"applicationId\": \"7319c514-987d-4e9b-ac3d-d38c4f427f4c\",\r\n \"roleDefinitionId\": \"1b4a0c7f-2217-416f-acfa-cf73452fdc1c\",\r\n \"managedByRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\",\r\n \"managedByAuthorization\": {\r\n \"allowManagedByInheritance\": true\r\n }\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerServices\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"managedClusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Germany North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany West Central\",\r\n \"UAE North\",\r\n \"Norway East\",\r\n \"Norway West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-08-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-08-01-preview\",\r\n \"2018-03-31\",\r\n \"2017-08-31\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"openShiftManagedClusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Central India\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-30-preview\",\r\n \"2019-04-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/openShiftClusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Central India\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-30-preview\",\r\n \"2019-04-30\",\r\n \"2018-09-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE North\",\r\n \"Norway East\",\r\n \"Norway West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE North\",\r\n \"Norway East\",\r\n \"Norway West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-31\",\r\n \"2018-03-31\",\r\n \"2017-08-31\",\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/orchestrators\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE North\",\r\n \"Norway East\",\r\n \"Norway West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-08-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2017-09-30\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.CostManagement\",\r\n \"namespace\": \"Microsoft.CostManagement\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"3184af01-7a88-49e0-8b55-8ecdce0aa950\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Connectors\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"CloudConnectors\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts/Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts/Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions/Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions/Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Forecast\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2018-12-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions/Forecast\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2018-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts/Forecast\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2018-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Settings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"register\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-10-01-preview\",\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-10-01-preview\",\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Budgets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions/Alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts/Alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"showbackRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\r\n \"2019-02-03-alpha\",\r\n \"2019-02-02-alpha\",\r\n \"2019-02-01-alpha\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Exports\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Reports\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-12-01-preview\",\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Reportconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Views\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.CostManagementExports\",\r\n \"namespace\": \"Microsoft.CostManagementExports\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e5408ad0-c4e2-43aa-b6f2-3b4951286d99\",\r\n \"roleDefinitionId\": \"5e4888b3-2747-4e5b-9897-ec0865b91bcf\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.CustomerLockbox\",\r\n \"namespace\": \"Microsoft.CustomerLockbox\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a0551534-cfc9-4e1f-9a7a-65093b32bb38\"\r\n },\r\n {\r\n \"applicationId\": \"01fc33a7-78ba-4d2f-a4b7-768e336e890e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"requests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.CustomProviders\",\r\n \"namespace\": \"Microsoft.CustomProviders\",\r\n \"authorization\": {\r\n \"applicationId\": \"bf8eb16c-7ba7-4b47-86be-ac5e4b2007a5\",\r\n \"roleDefinitionId\": \"FACF09C9-A5D0-4D34-8B1F-B623AC29C6F7\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceProviders\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"associations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DataBox\",\r\n \"namespace\": \"Microsoft.DataBox\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"5613cb5c-a7c9-4099-8034-511fd7616cb2\",\r\n \"roleDefinitionId\": \"382D72D1-63DC-4243-9B99-CB69FDD473D8\",\r\n \"managedByRoleDefinitionId\": \"f4c0a4f9-768c-4927-ab83-d319111d6ef4\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateAddress\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableSkus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateInputs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/regionConfiguration\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DataBoxEdge\",\r\n \"namespace\": \"Microsoft.DataBoxEdge\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2368d027-f996-4edb-bf48-928f98f2ab8c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Databricks\",\r\n \"namespace\": \"Microsoft.Databricks\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d9327919-6775-4843-9037-3fb0fb0473cb\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"applicationId\": \"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Brazil South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/dbWorkspaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Brazil South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"UAE North\",\r\n \"Brazil South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Brazil South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/getNetworkPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"authorization\": {\r\n \"applicationId\": \"213f5f78-fb30-46c7-9e98-91c720a1c026\",\r\n \"roleDefinitionId\": \"D55E2225-A6AB-481C-A5BE-1B7687C293FA\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01-preview\",\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01-preview\",\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0947a342-ab4a-43be-93b3-b8243fc161e5\",\r\n \"roleDefinitionId\": \"f0a6aa2a-e9d8-4bae-bcc2-36b405e8a5da\"\r\n },\r\n {\r\n \"applicationId\": \"5d13f7d7-0567-429c-9880-320e9555e5fc\",\r\n \"roleDefinitionId\": \"956a8f20-9168-4c71-8e27-3c0460ac39a4\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"factories\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"factories/integrationRuntimes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/configureFactoryRepo\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/getFeatureValue\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/eventGridFilters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DataMigration\",\r\n \"namespace\": \"Microsoft.DataMigration\",\r\n \"authorization\": {\r\n \"applicationId\": \"a4bad4aa-bf02-4631-9f78-a64ffdba8150\",\r\n \"roleDefinitionId\": \"b831a21d-db98-4760-89cb-bef871952df1\",\r\n \"managedByRoleDefinitionId\": \"6256fb55-9e59-4018-a9e1-76b11c0a4c89\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"services/projects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DataShare\",\r\n \"namespace\": \"Microsoft.DataShare\",\r\n \"authorization\": {\r\n \"applicationId\": \"799f1985-1517-4fe1-af2b-ba3d87d4996b\",\r\n \"roleDefinitionId\": \"0146496b-e06f-439a-83be-49fac884edf5\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares/datasets\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares/synchronizationSettings\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares/invitations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/sharesubscriptions\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares/providersharesubscriptions\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/sharesubscriptions/datasetmappings\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/sharesubscriptions/triggers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/sharesubscriptions/consumerSourceDataSets\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listinvitations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/rejectInvitation\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2018-11-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consumerInvitations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2018-11-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2018-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DBforMariaDB\",\r\n \"namespace\": \"Microsoft.DBforMariaDB\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/waitStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateLinkResources\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateEndpointConnections\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DBforMySQL\",\r\n \"namespace\": \"Microsoft.DBforMySQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UAE North\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/waitStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateLinkResources\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateEndpointConnections\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DBforPostgreSQL\",\r\n \"namespace\": \"Microsoft.DBforPostgreSQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"serversv2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-29-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-29-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/waitStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateLinkResources\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateEndpointConnections\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DeploymentManager\",\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"5b306cba-9c71-49db-96c3-d17ca2379c4d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"artifactSources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceTopologies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceTopologies/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceTopologies/services/serviceUnits\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"steps\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DesktopVirtualization\",\r\n \"namespace\": \"Microsoft.DesktopVirtualization\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"50e95039-b200-4007-bc97-8d5790743a63\",\r\n \"roleDefinitionId\": \"CAD30215-AD1C-43BF-BE90-7BFA8B493E62\"\r\n },\r\n {\r\n \"applicationId\": \"9cdead84-a844-4324-93f2-b2e6bb768d07\"\r\n },\r\n {\r\n \"applicationId\": \"a85cf173-4192-42f8-81fa-777a763e6e2c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-23-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0cd79364-7a90-4354-9984-6e36c841418d\",\r\n \"roleDefinitionId\": \"C121DF10-FE58-4BC4-97F9-8296879F7BBB\"\r\n },\r\n {\r\n \"applicationId\": \"29f411f1-b2cf-4043-8ac8-2185d7316811\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-04\",\r\n \"2019-09-01\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22-preview\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-09-25-preview\",\r\n \"2017-08-21-preview\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-31\",\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DevOps\",\r\n \"namespace\": \"Microsoft.DevOps\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"pipelines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DevSpaces\",\r\n \"namespace\": \"Microsoft.DevSpaces\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"controllers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia SouthEast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"controllers/listConnectionDetails\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia SouthEast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia SouthEast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia SouthEast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia SouthEast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkContainerHostMapping\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia SouthEast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs/environments\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"schedules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs/virtualMachines\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs/serviceRunners\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"57c0fc58-a83a-41d0-8ae9-08952659bdfd\",\r\n \"roleDefinitionId\": \"FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282\"\r\n },\r\n {\r\n \"applicationId\": \"36e2398c-9dd3-4f29-9a72-d9f2cfc47ad9\",\r\n \"roleDefinitionId\": \"D5A795DE-916D-4818-B015-33C9E103E39B\"\r\n },\r\n {\r\n \"applicationId\": \"a232010e-820c-4083-83bb-3ace5fc29d0b\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.EnterpriseKnowledgeGraph\",\r\n \"namespace\": \"Microsoft.EnterpriseKnowledgeGraph\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-03\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-03\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-03\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-03\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.EventGrid\",\r\n \"namespace\": \"Microsoft.EventGrid\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"4962773b-9cdb-44cf-a8bf-237846a00ab7\",\r\n \"roleDefinitionId\": \"7FE036D8-246F-48BF-A78F-AB3EE699C8F3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"topics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2018-09-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/topics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2018-09-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extensionTopics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationsStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"systemTopics\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"systemTopics/eventSubscriptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"partnerNamespaces\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"partnerTopics\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"partnerTopics/eventSubscriptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"partnerNamespaces/eventChannels\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Experimentation\",\r\n \"namespace\": \"Microsoft.Experimentation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e00d2f8a-f6c8-46e4-b379-e66082e28ca8\",\r\n \"roleDefinitionId\": \"d3a360d9-17f9-410e-9465-5c914c8cf570\",\r\n \"managedByRoleDefinitionId\": \"fa096ccd-4e8f-49de-9594-64449b3ac6b3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"featureProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptionFeatureRegistrations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.GuestConfiguration\",\r\n \"namespace\": \"Microsoft.GuestConfiguration\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e935b4a5-8968-416d-8414-caed51c782a9\",\r\n \"roleDefinitionId\": \"9c6ffa40-421e-4dc0-9739-76b0699a11de\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"guestConfigurationAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-20\",\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"software\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"softwareUpdates\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"softwareUpdateProfile\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-20\",\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.HanaOnAzure\",\r\n \"namespace\": \"Microsoft.HanaOnAzure\",\r\n \"authorization\": {\r\n \"applicationId\": \"cc5476ec-3074-44d1-8461-711f5d9b0e39\",\r\n \"roleDefinitionId\": \"4a10987e-dbcf-4c3d-8e3d-7ddcd9c771c2\",\r\n \"managedByRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hanaInstances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sapMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.HardwareSecurityModules\",\r\n \"namespace\": \"Microsoft.HardwareSecurityModules\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0eb690b7-d23e-4fb0-b43e-cd161ac80cc3\",\r\n \"roleDefinitionId\": \"48397dc8-3910-486a-8165-ab2df987447f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-31-preview\",\r\n \"2018-10-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-31-preview\",\r\n \"2018-10-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9191c4da-09fe-49d9-a5f1-d41cbe92ad95\",\r\n \"roleDefinitionId\": \"d102a6f3-d9cb-4633-8950-1243b975886c\",\r\n \"managedByRoleDefinitionId\": \"346da55d-e1db-4a5a-89db-33ab3cdb6fc6\"\r\n },\r\n {\r\n \"applicationId\": \"7865c1d2-f040-46cc-875f-831a1ef6a28a\",\r\n \"roleDefinitionId\": \"e27c0895-d168-46d5-8b65-870eb2350378\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/billingSpecs\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureasyncoperations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateCreateRequest\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.HealthcareApis\",\r\n \"namespace\": \"Microsoft.HealthcareApis\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"4f6778d8-5aef-43dc-a1ff-b073724b9495\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-16\",\r\n \"2018-08-20-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-16\",\r\n \"2018-08-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-16\",\r\n \"2018-08-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-16\",\r\n \"2018-08-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-16\",\r\n \"2018-08-20-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.HybridCompute\",\r\n \"namespace\": \"Microsoft.HybridCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"machines\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-12\",\r\n \"2019-08-02-preview\",\r\n \"2019-03-18-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-12\",\r\n \"2019-08-02-preview\",\r\n \"2019-03-18-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.HybridData\",\r\n \"namespace\": \"Microsoft.HybridData\",\r\n \"authorization\": {\r\n \"applicationId\": \"621269cf-1195-44a3-a835-c613d103dd15\",\r\n \"roleDefinitionId\": \"00320cd4-8823-47f2-bbe4-5c9da031311d\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataManagers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Hydra\",\r\n \"namespace\": \"Microsoft.Hydra\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"37ae09d4-a310-41e1-803d-8e85cec4bf23\",\r\n \"roleDefinitionId\": \"37ae09d4-a310-41e1-803d-8e85cec4bf23\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ImportExport\",\r\n \"namespace\": \"Microsoft.ImportExport\",\r\n \"authorization\": {\r\n \"applicationId\": \"7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a\",\r\n \"roleDefinitionId\": \"9f7aa6bb-9454-46b6-8c01-a4b0f33ca151\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.IoTCentral\",\r\n \"namespace\": \"Microsoft.IoTCentral\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9edfcdd9-0bc5-4bd4-b287-c3afc716aac7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"IoTApps\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Central US\",\r\n \"West Central US\",\r\n \"Australia\",\r\n \"Asia Pacific\",\r\n \"Europe\",\r\n \"Japan\",\r\n \"UK\",\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkSubdomainAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appTemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.IoTSpaces\",\r\n \"namespace\": \"Microsoft.IoTSpaces\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0b07f429-9f4b-4714-9392-cc5e8e80c8b0\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"West US 2\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"Graph\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"West US 2\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Kubernetes\",\r\n \"namespace\": \"Microsoft.Kubernetes\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"64b12d6e-6549-484c-8cc6-6281839ba394\",\r\n \"roleDefinitionId\": \"1d1d44cf-68a1-4def-a2b6-cd7efc3515af\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2019-09-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Kusto\",\r\n \"namespace\": \"Microsoft.Kusto\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2746ea77-4702-4b45-80ca-3c97e680e8b7\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/attacheddatabaseconfigurations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/principalassignments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-09\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases/eventhubconnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases/dataconnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases/principalassignments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-09\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/sharedidentities\",\r\n \"locations\": [\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-09\",\r\n \"2019-09-07\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.LabServices\",\r\n \"namespace\": \"Microsoft.LabServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labaccounts\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"users\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2019-01-01-beta\",\r\n \"2019-01-01-alpha\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\",\r\n \"2017-12-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"integrationAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"integrationServiceEnvironments\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"integrationServiceEnvironments/managedApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.MachineLearning\",\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"webServices\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commitmentPlans\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Maintenance\",\r\n \"namespace\": \"Microsoft.Maintenance\",\r\n \"authorization\": {\r\n \"applicationId\": \"f18474f2-a66a-4bb0-a3c9-9b8d892092fa\",\r\n \"roleDefinitionId\": \"2f1ef7b0-d5c4-4d3c-98fa-6a9fa8e74aa5\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"maintenanceConfigurations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-06-01-preview\",\r\n \"2017-04-26\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"updates\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-06-01-preview\",\r\n \"2017-04-26\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"configurationAssignments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-06-01-preview\",\r\n \"2017-04-26\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"applyUpdates\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-06-01-preview\",\r\n \"2017-04-26\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ManagedServices\",\r\n \"namespace\": \"Microsoft.ManagedServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"66c6d0d1-f2e7-4a18-97a9-ed10f3347016\",\r\n \"roleDefinitionId\": \"1e86f807-6ec0-40b3-8b5f-686b7e43a0a2\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registrationDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01-preview\",\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"registrationAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01-preview\",\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"marketplaceRegistrationDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Management\",\r\n \"namespace\": \"Microsoft.Management\",\r\n \"authorization\": {\r\n \"applicationId\": \"f2c304cf-8e7e-4c3f-8164-16299ad9d272\",\r\n \"roleDefinitionId\": \"c1cf3708-588a-4647-be7f-f400bbe214cf\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managementGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getEntities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managementGroups/settings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults/asyncOperation\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenantBackfillStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"startTenantBackfill\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Maps\",\r\n \"namespace\": \"Microsoft.Maps\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"608f6f31-fed0-4f7b-809f-90f6c9b3de78\",\r\n \"roleDefinitionId\": \"3431F0E6-63BC-482D-A96E-0AB819610A5F\"\r\n },\r\n {\r\n \"applicationId\": \"ba1ea022-5807-41d5-bbeb-292c7e1cf5f6\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/eventGridFilters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"authorization\": {\r\n \"applicationId\": \"a0e1e353-1a3e-42cf-a8ea-3a9746eec58c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"register\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privategalleryitems\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs/importImage\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/agreements\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAvailableOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishers/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishers/offers/amendments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateStoreClient\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-beta\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateStores\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateStores/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.MarketplaceApps\",\r\n \"namespace\": \"Microsoft.MarketplaceApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicDevServices\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offertypes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Media\",\r\n \"namespace\": \"Microsoft.Media\",\r\n \"authorization\": {\r\n \"applicationId\": \"374b2a64-3b6b-436b-934c-b820eacca870\",\r\n \"roleDefinitionId\": \"aab70789-0cec-44b5-95d7-84b64c9487af\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mediaservices\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/assets\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/contentKeyPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingLocators\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/eventGridFilters\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms/jobs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpoints\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents/liveOutputs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpointOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEventOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveOutputOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/assets/assetFilters\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/accountFilters\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2018-02-05\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Migrate\",\r\n \"namespace\": \"Microsoft.Migrate\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3bfd6ac-eace-4438-9dc1-eed439e738de\",\r\n \"roleDefinitionId\": \"e88f4159-1d71-4b12-8ef0-38c039cb051e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"projects\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"migrateprojects\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"assessmentProjects\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/assessmentOptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.MixedReality\",\r\n \"namespace\": \"Microsoft.MixedReality\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c7ddd9b4-5172-4e28-bd29-1e0792947d18\",\r\n \"roleDefinitionId\": \"b67ee066-e058-4ddb-92bc-83cdd74bc38a\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-02-preview\",\r\n \"2019-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-02-preview\",\r\n \"2019-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-02-preview\",\r\n \"2019-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"spatialAnchorsAccounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-02-preview\",\r\n \"2019-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.NetApp\",\r\n \"namespace\": \"Microsoft.NetApp\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"12fb057d-b751-47cd-857c-f2934bb677b4\",\r\n \"roleDefinitionId\": \"e4796bef-6b6d-4cbc-ba1e-27f1a308d860\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"West US (Stage)\",\r\n \"West US 2 (Stage)\",\r\n \"South Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2017-08-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ObjectStore\",\r\n \"namespace\": \"Microsoft.ObjectStore\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"osNamespaces\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.OffAzure\",\r\n \"namespace\": \"Microsoft.OffAzure\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"728a93e3-065d-4678-93b1-3cc281223341\",\r\n \"roleDefinitionId\": \"b9967bf7-a345-4af8-95f0-49916f760fc6\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"VMwareSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\",\r\n \"2019-06-06\",\r\n \"2019-05-01-preview\",\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"HyperVSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-06-06\",\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ServerSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ImportSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-06-06\",\r\n \"2018-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"86695298-2eb9-48a7-9ec3-2fdb38b6878b\"\r\n },\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2017-03-15-preview\",\r\n \"2017-03-03-preview\",\r\n \"2017-01-01-preview\",\r\n \"2015-11-01-preview\",\r\n \"2015-03-20\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01-preview\",\r\n \"2017-04-26-preview\",\r\n \"2017-03-15-preview\",\r\n \"2017-03-03-preview\",\r\n \"2017-01-01-preview\",\r\n \"2015-11-01-preview\",\r\n \"2015-03-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01-preview\",\r\n \"2017-04-26-preview\",\r\n \"2017-03-15-preview\",\r\n \"2017-03-03-preview\",\r\n \"2017-01-01-preview\",\r\n \"2015-11-01-preview\",\r\n \"2015-03-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/privateEndpointConnections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01-preview\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/privateLinkResources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01-preview\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01-preview\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/scopedPrivateLinkProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01-preview\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/query\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Australia Southeast\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland West\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/dataSources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/linkedServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01-preview\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.OperationsManagement\",\r\n \"namespace\": \"Microsoft.OperationsManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"aa249101-6816-4966-aafa-08175d795f14\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"solutions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central Us\",\r\n \"East Us 2\",\r\n \"East Asia\",\r\n \"West Us\",\r\n \"South Central Us\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementconfigurations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central Us\",\r\n \"East Us 2\",\r\n \"East Asia\",\r\n \"West Us\",\r\n \"South Central Us\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementassociations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"views\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central Us\",\r\n \"East Us 2\",\r\n \"East Asia\",\r\n \"West Us\",\r\n \"South Central Us\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Peering\",\r\n \"namespace\": \"Microsoft.Peering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"peerings\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"East Asia\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West India\",\r\n \"South India\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"peeringLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"legacyPeerings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"peerAsns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"peeringServiceCountries\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"peeringServiceLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"peeringServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceProviderAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Portal\",\r\n \"namespace\": \"Microsoft.Portal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dashboards\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-10-01-preview\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"consoles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consoles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.PowerBI\",\r\n \"namespace\": \"Microsoft.PowerBI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaceCollections\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.PowerBIDedicated\",\r\n \"namespace\": \"Microsoft.PowerBIDedicated\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"capacities\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South Africa North\",\r\n \"Canada East\",\r\n \"South Africa West\",\r\n \"UK West\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South Africa West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ProjectBabylon\",\r\n \"namespace\": \"Microsoft.ProjectBabylon\",\r\n \"authorization\": {\r\n \"applicationId\": \"73c2949e-da2d-457a-9607-fcc665198967\",\r\n \"roleDefinitionId\": \"1BC09725-0C9B-4F57-A3D0-FCCF4EB40120\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ProviderHub\",\r\n \"namespace\": \"Microsoft.ProviderHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"providerRegistrations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerRegistrations/resourceTypeRegistrations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"availableAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.RecoveryServices\",\r\n \"namespace\": \"Microsoft.RecoveryServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6\"\r\n },\r\n {\r\n \"applicationId\": \"3b2fa68d-a091-48c9-95be-88d572e08fb7\",\r\n \"roleDefinitionId\": \"47d68fae-99c7-4c10-b9db-2316116a061e\"\r\n },\r\n {\r\n \"applicationId\": \"9bdab391-7bbe-42e8-8132-e4491dc29cc0\",\r\n \"roleDefinitionId\": \"0383f7f5-023d-4379-b2c7-9ef786459969\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15\",\r\n \"2019-05-13-preview\",\r\n \"2019-05-13\",\r\n \"2018-12-20-preview\",\r\n \"2018-07-10-preview\",\r\n \"2018-07-10\",\r\n \"2018-01-10\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-12-01\",\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2016-05-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocatedStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocateStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupValidateFeatures\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupPreValidateProtection\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupCrrJobs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupCrrJob\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupAadProperties\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupCrossRegionRestore\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupCrrOperationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupCrrOperationsStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"backupProtectedItems\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"replicationEligibilityResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-10\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Relay\",\r\n \"namespace\": \"Microsoft.Relay\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ResourceGraph\",\r\n \"namespace\": \"Microsoft.ResourceGraph\",\r\n \"authorization\": {\r\n \"applicationId\": \"509e4652-da8d-478d-a730-e9d4a1996ca4\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourcesHistory\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceChanges\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceChangeDetails\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptionsStatus\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"applicationId\": \"3b990c8b-9607-4c2a-8b04-1d41985facca\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.SaaS\",\r\n \"namespace\": \"Microsoft.SaaS\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"f738ef14-47dc-4564-b53b-45069484ccc7\",\r\n \"roleDefinitionId\": \"b131dd2d-387a-4cae-bb9b-3d021f80d1e6\"\r\n },\r\n {\r\n \"applicationId\": \"20e940b3-4c77-4b0b-9a53-9e16a1b010a7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkModernEligibility\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"saasresources\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-Preview\",\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.SecurityInsights\",\r\n \"namespace\": \"Microsoft.SecurityInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"98785600-1bb7-4fb9-b9fa-19afe2c8a360\",\r\n \"roleDefinitionId\": \"ef1c46aa-ae81-4091-ab83-f75f28efb7b8\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertRules\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"alertRuleTemplates\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"cases\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"bookmarks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"dataConnectors\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"dataConnectorsCheckRequirements\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"entities\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"incidents\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"officeConsents\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"settings\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"aggregations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"entityQueries\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.SerialConsole\",\r\n \"namespace\": \"Microsoft.SerialConsole\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"consoleServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consoleServices\",\r\n \"locations\": [\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Services\",\r\n \"namespace\": \"Microsoft.Services\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"providerRegistrations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerRegistrations/resourceTypeRegistrations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.SignalRService\",\r\n \"namespace\": \"Microsoft.SignalRService\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cdad765c-f191-43ba-b9f5-7aef392f811d\",\r\n \"roleDefinitionId\": \"346b504e-4aec-45d1-be25-a6e10f3cb4fe\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SignalR\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SignalR/eventGridFilters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.SoftwarePlan\",\r\n \"namespace\": \"Microsoft.SoftwarePlan\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hybridUseBenefits\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Solutions\",\r\n \"namespace\": \"Microsoft.Solutions\",\r\n \"authorization\": {\r\n \"applicationId\": \"ba4bc2bd-843f-4d61-9d33-199178eae34e\",\r\n \"roleDefinitionId\": \"6cb99a0b-29a8-49bc-b57b-057acc68cd9a\",\r\n \"managedByRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\",\r\n \"managedByAuthorization\": {\r\n \"managedByResourceRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\"\r\n }\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"applicationDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"jitRequests\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.SqlVirtualMachine\",\r\n \"namespace\": \"Microsoft.SqlVirtualMachine\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"bd93b475-f9e2-476e-963d-b2daf143ffb9\",\r\n \"roleDefinitionId\": \"f96bd990-ffdf-4c17-8ee3-77454d9c3f5d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SqlVirtualMachineGroups\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"SqlVirtualMachines\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"SqlVirtualMachineGroups/AvailabilityGroupListeners\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/OperationTypes\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/sqlVirtualMachineOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/sqlVirtualMachineGroupOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/availabilityGroupListenerOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.StorageCache\",\r\n \"namespace\": \"Microsoft.StorageCache\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"4392ab71-2ce2-4b0d-8770-b352745c73f5\",\r\n \"roleDefinitionId\": \"e27430df-bd6b-4f3a-bd6d-d52ad1a7d075\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.StorageSync\",\r\n \"namespace\": \"Microsoft.StorageSync\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9469b9f5-6722-4481-a2b2-14ed560b706f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageSyncServices\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/cloudEndpoints\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/serverEndpoints\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/registeredServers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/workflows\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.StorSimple\",\r\n \"namespace\": \"Microsoft.StorSimple\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"managers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-05-15\",\r\n \"2017-01-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"authorization\": {\r\n \"applicationId\": \"66f1e791-7bfb-4e18-aed8-1720056421c7\",\r\n \"roleDefinitionId\": \"15f6e7b0-eec0-4f18-a552-c97e000cbc61\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-11-01\",\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-11-01\",\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-11-01\",\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-11-01\",\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"959678cf-d004-4c22-82a6-d2ce549a58b8\",\r\n \"roleDefinitionId\": \"81a3dd11-5123-4ec3-9485-772b0a27d1bd\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services/problemclassifications\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationsstatus\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Synapse\",\r\n \"namespace\": \"Microsoft.Synapse\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9e09aefc-b2e5-4d19-9f74-3e3e8b11a57b\",\r\n \"roleDefinitionId\": \"a53b114a-452b-4d20-bcd6-c51c3c8c5878\",\r\n \"managedByRoleDefinitionId\": \"ede175bc-31e5-4074-ba98-e62b895797aa\"\r\n },\r\n {\r\n \"applicationId\": \"1ac05c7e-12d2-4605-bf9d-549d7041c6b3\",\r\n \"roleDefinitionId\": \"48e77487-c9fa-4abe-8484-71ebdebdbbc2\"\r\n },\r\n {\r\n \"applicationId\": \"ec52d13d-2e85-410e-a89a-8c79fb6a32ac\",\r\n \"roleDefinitionId\": \"c3a447c3-a63a-4905-a125-c6856f9d0e17\"\r\n },\r\n {\r\n \"applicationId\": \"5ebe1e69-13dd-4953-84fa-a74ed591db2e\",\r\n \"roleDefinitionId\": \"e8ebe3e8-569b-4ad3-bea1-5b274fe0c49f\"\r\n },\r\n {\r\n \"applicationId\": \"2e458d69-0892-4655-b713-4f7b182315dd\",\r\n \"roleDefinitionId\": \"45EA3B16-D4DD-48CA-BF0D-BBE644C0C0AF\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.TimeSeriesInsights\",\r\n \"namespace\": \"Microsoft.TimeSeriesInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"120d688d-1518-4cf7-bd38-182f158850b6\",\r\n \"roleDefinitionId\": \"5a43abdf-bb87-42c4-9e56-1c24bf364150\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/eventsources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/referenceDataSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/accessPolicies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Token\",\r\n \"namespace\": \"Microsoft.Token\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"fe053c5f-3692-4f14-aef2-ee34fc081cae\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"stores\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"stores/accessPolicies\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"stores/services\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"stores/services/tokens\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.VirtualMachineImages\",\r\n \"namespace\": \"Microsoft.VirtualMachineImages\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cf32a0cc-373c-47c9-9156-0db11f6a6dfc\",\r\n \"roleDefinitionId\": \"0ee55a0b-f45f-4392-92ec-e8bf1b4b5da5\",\r\n \"managedByRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2019-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"account/extension\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.VMwareCloudSimple\",\r\n \"namespace\": \"Microsoft.VMwareCloudSimple\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d96199e7-4674-4bbf-a1c6-ddf93682f5ee\",\r\n \"roleDefinitionId\": \"533012ca-a3e7-44e4-93b4-3143f8b9409d\",\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"CloudSimpleExtension\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dedicatedCloudNodes\",\r\n \"locations\": [\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dedicatedCloudServices\",\r\n \"locations\": [\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availabilities\",\r\n \"locations\": [\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds\",\r\n \"locations\": [\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds/virtualNetworks\",\r\n \"locations\": [\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds/virtualMachineTemplates\",\r\n \"locations\": [\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds/resourcePools\",\r\n \"locations\": [\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.VnfManager\",\r\n \"namespace\": \"Microsoft.VnfManager\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"b8ed041c-aa91-418e-8f47-20c70abc2de1\",\r\n \"roleDefinitionId\": \"c8d69fc0-f0ed-43b3-bf1d-4dfdaacc6d2d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/OperationStatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.VSOnline\",\r\n \"namespace\": \"Microsoft.VSOnline\",\r\n \"authorizations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West Us 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-07-01-beta\",\r\n \"2019-07-01-alpha\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"plans\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West Us 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-07-01-beta\",\r\n \"2019-07-01-alpha\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-07-01-beta\",\r\n \"2019-07-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.WindowsESU\",\r\n \"namespace\": \"Microsoft.WindowsESU\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e6c69915-bcc7-4335-b655-c62f949d691b\",\r\n \"roleDefinitionId\": \"9bccffcd-2d3d-4b7c-a2cb-bb26e77b4810\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-16-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-16-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/OperationStatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.WindowsIoT\",\r\n \"namespace\": \"Microsoft.WindowsIoT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DeviceServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-02-16-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-02-16-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.WorkloadMonitor\",\r\n \"namespace\": \"Microsoft.WorkloadMonitor\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"componentsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitorInstancesSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitorInstances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"monitors\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"notificationSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Myget.PackageManagement\",\r\n \"namespace\": \"Myget.PackageManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Paraleap.CloudMonix\",\r\n \"namespace\": \"Paraleap.CloudMonix\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Pokitdok.Platform\",\r\n \"namespace\": \"Pokitdok.Platform\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/RavenHq.Db\",\r\n \"namespace\": \"RavenHq.Db\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Raygun.CrashReporting\",\r\n \"namespace\": \"Raygun.CrashReporting\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Sparkpost.Basic\",\r\n \"namespace\": \"Sparkpost.Basic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/stackify.retrace\",\r\n \"namespace\": \"stackify.retrace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/U2uconsult.TheIdentityHub\",\r\n \"namespace\": \"U2uconsult.TheIdentityHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/ps9905?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlZ3JvdXBzL3BzOTkwNT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"West US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f2752737-4f5d-4641-966d-c2c5ddb62fb1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "29"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "06838fa3-d4d8-4ebf-aef7-67eb7bf466ff"
+ ],
+ "x-ms-correlation-request-id": [
+ "06838fa3-d4d8-4ebf-aef7-67eb7bf466ff"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111045Z:06838fa3-d4d8-4ebf-aef7-67eb7bf466ff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:10:45 GMT"
+ ],
+ "Content-Length": [
+ "165"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905\",\r\n \"name\": \"ps9905\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/serverfarms/ps6265?api-version=2018-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9wczYyNjU/YXBpLXZlcnNpb249MjAxOC0wMi0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"perSiteScaling\": false,\r\n \"isXenon\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "17f4ca5d-d220-485e-a512-f14b93712ba9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "187"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2c544ac7-3932-4132-a067-73145692f82d"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "abb001aa-1f65-46be-87ff-5668c2141377"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111058Z:abb001aa-1f65-46be-87ff-5668c2141377"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:10:58 GMT"
+ ],
+ "Content-Length": [
+ "1267"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/serverfarms/ps6265\",\r\n \"name\": \"ps6265\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"serverFarmId\": 16518,\r\n \"name\": \"ps6265\",\r\n \"workerSize\": \"Default\",\r\n \"workerSizeId\": 0,\r\n \"workerTierName\": null,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": \"Default\",\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": \"Ready\",\r\n \"webSpace\": \"ps9905-WestUSwebspace\",\r\n \"subscription\": \"04b0639d-85d8-445a-bada-8da78e50ff30\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": \"Dedicated\",\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"maximumElasticWorkerCount\": 1,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"isSpot\": false,\r\n \"spotExpirationTime\": null,\r\n \"freeOfferExpirationTime\": null,\r\n \"tags\": null,\r\n \"kind\": \"app\",\r\n \"resourceGroup\": \"ps9905\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"mdmId\": \"waws-prod-bay-137_16518\",\r\n \"targetWorkerCount\": 0,\r\n \"targetWorkerSizeId\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"webSiteId\": null,\r\n \"existingServerFarmIds\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Web/checknameavailability?api-version=2018-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NoZWNrbmFtZWF2YWlsYWJpbGl0eT9hcGktdmVyc2lvbj0yMDE4LTAyLTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"name\": \"ps5535\",\r\n \"type\": \"Site\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2b0fc469-4846-4271-b912-39510c557240"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "43"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8e747fc2-5b4d-4db2-9265-bfe431993bb7"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "f3494db7-dae3-4fe9-9bda-8d6fa84c89f1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111100Z:f3494db7-dae3-4fe9-9bda-8d6fa84c89f1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:11:00 GMT"
+ ],
+ "Content-Length": [
+ "47"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"nameAvailable\": true,\r\n \"reason\": \"\",\r\n \"message\": \"\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/serverfarms/ps6265?api-version=2018-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9wczYyNjU/YXBpLXZlcnNpb249MjAxOC0wMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5a4445fc-de1f-4319-94ce-13bfd002ed64"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "709e9191-69af-4578-b54e-d85a5aa9fa1f"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "8009ab9c-22d6-4bb3-a9ee-62fb6863bced"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111101Z:8009ab9c-22d6-4bb3-a9ee-62fb6863bced"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:11:00 GMT"
+ ],
+ "Content-Length": [
+ "1267"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/serverfarms/ps6265\",\r\n \"name\": \"ps6265\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"serverFarmId\": 16518,\r\n \"name\": \"ps6265\",\r\n \"workerSize\": \"Default\",\r\n \"workerSizeId\": 0,\r\n \"workerTierName\": null,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": \"Default\",\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": \"Ready\",\r\n \"webSpace\": \"ps9905-WestUSwebspace\",\r\n \"subscription\": \"04b0639d-85d8-445a-bada-8da78e50ff30\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": \"Dedicated\",\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"maximumElasticWorkerCount\": 1,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"isSpot\": false,\r\n \"spotExpirationTime\": null,\r\n \"freeOfferExpirationTime\": null,\r\n \"tags\": null,\r\n \"kind\": \"app\",\r\n \"resourceGroup\": \"ps9905\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"mdmId\": \"waws-prod-bay-137_16518\",\r\n \"targetWorkerCount\": 0,\r\n \"targetWorkerSizeId\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"webSiteId\": null,\r\n \"existingServerFarmIds\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/serverfarms/ps6265?api-version=2018-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9wczYyNjU/YXBpLXZlcnNpb249MjAxOC0wMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "be9b250b-184a-4b20-9892-5bc4a46230e6"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "def6f40d-c7d0-4c83-8191-10295035c10b"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-correlation-request-id": [
+ "a8aae05c-bec2-4edf-9ccc-b166762982d0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111102Z:a8aae05c-bec2-4edf-9ccc-b166762982d0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:11:02 GMT"
+ ],
+ "Content-Length": [
+ "1267"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/serverfarms/ps6265\",\r\n \"name\": \"ps6265\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"serverFarmId\": 16518,\r\n \"name\": \"ps6265\",\r\n \"workerSize\": \"Default\",\r\n \"workerSizeId\": 0,\r\n \"workerTierName\": null,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": \"Default\",\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": \"Ready\",\r\n \"webSpace\": \"ps9905-WestUSwebspace\",\r\n \"subscription\": \"04b0639d-85d8-445a-bada-8da78e50ff30\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": \"Dedicated\",\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"maximumElasticWorkerCount\": 1,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"isSpot\": false,\r\n \"spotExpirationTime\": null,\r\n \"freeOfferExpirationTime\": null,\r\n \"tags\": null,\r\n \"kind\": \"app\",\r\n \"resourceGroup\": \"ps9905\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"mdmId\": \"waws-prod-bay-137_16518\",\r\n \"targetWorkerCount\": 0,\r\n \"targetWorkerSizeId\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"webSiteId\": null,\r\n \"existingServerFarmIds\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/serverfarms/ps6265?api-version=2018-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9wczYyNjU/YXBpLXZlcnNpb249MjAxOC0wMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "41def523-6632-4aa3-913f-8ff1fe2310ab"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3d937925-44c3-4583-8c7b-702b96e7dd6e"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-correlation-request-id": [
+ "5dacd2da-e067-4f83-b821-b2587636ca1b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111103Z:5dacd2da-e067-4f83-b821-b2587636ca1b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:11:03 GMT"
+ ],
+ "Content-Length": [
+ "1267"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/serverfarms/ps6265\",\r\n \"name\": \"ps6265\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"serverFarmId\": 16518,\r\n \"name\": \"ps6265\",\r\n \"workerSize\": \"Default\",\r\n \"workerSizeId\": 0,\r\n \"workerTierName\": null,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": \"Default\",\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": \"Ready\",\r\n \"webSpace\": \"ps9905-WestUSwebspace\",\r\n \"subscription\": \"04b0639d-85d8-445a-bada-8da78e50ff30\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": \"Dedicated\",\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"maximumElasticWorkerCount\": 1,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"isSpot\": false,\r\n \"spotExpirationTime\": null,\r\n \"freeOfferExpirationTime\": null,\r\n \"tags\": null,\r\n \"kind\": \"app\",\r\n \"resourceGroup\": \"ps9905\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"mdmId\": \"waws-prod-bay-137_16518\",\r\n \"targetWorkerCount\": 0,\r\n \"targetWorkerSizeId\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"webSiteId\": null,\r\n \"existingServerFarmIds\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczU1MzU/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "495c3f1f-8f06-4536-b0e1-ebe9c197b254"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "b5330a7a-6986-40cc-aa86-e5d83c5c670c"
+ ],
+ "x-ms-correlation-request-id": [
+ "b5330a7a-6986-40cc-aa86-e5d83c5c670c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111101Z:b5330a7a-6986-40cc-aa86-e5d83c5c670c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:11:01 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "136"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Web/sites/ps5535' under resource group 'ps9905' was not found.\"\r\n }\r\n}",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczU1MzU/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3e252612-daae-47df-937b-6d679ba5bc80"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1D5F2159A666095\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "982e3600-afc9-4130-8070-d460367cd716"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-correlation-request-id": [
+ "f1cb5590-3f2b-474c-9ebe-d0ef34c53974"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111127Z:f1cb5590-3f2b-474c-9ebe-d0ef34c53974"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:11:26 GMT"
+ ],
+ "Content-Length": [
+ "3045"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535\",\r\n \"name\": \"ps5535\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"name\": \"ps5535\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"ps5535.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"ps9905-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-137.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/ps9905-WestUSwebspace/sites/ps5535\",\r\n \"repositorySiteName\": \"ps5535\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"ps5535.azurewebsites.net\",\r\n \"ps5535.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"ps5535.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"ps5535.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/serverfarms/ps6265\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-03-04T11:11:07.5933333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"ps5535\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C1F921F9FA365BE916ED8851196B6E66DF433C8615038973C1C4DD85ACBBDD11\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"40.112.243.6\",\r\n \"possibleInboundIpAddresses\": \"40.112.243.6\",\r\n \"outboundIpAddresses\": \"40.112.243.6,13.93.220.248,13.93.221.96,13.93.221.41,13.93.220.182\",\r\n \"possibleOutboundIpAddresses\": \"40.112.243.6,13.93.220.248,13.93.221.96,13.93.221.41,13.93.220.182,13.93.221.147,13.93.220.112,13.91.111.88,13.93.220.5,13.93.220.231\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-137\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"ps9905\",\r\n \"defaultHostName\": \"ps5535.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczU1MzU/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "461210b3-2323-497b-8336-f44225523475"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1D5F2159A666095\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a3db398b-a9a4-4a2e-97a8-36b2dbde6d22"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-correlation-request-id": [
+ "259e9646-14b5-42a6-b4f0-66814fcb0a39"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111152Z:259e9646-14b5-42a6-b4f0-66814fcb0a39"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:11:52 GMT"
+ ],
+ "Content-Length": [
+ "3045"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535\",\r\n \"name\": \"ps5535\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"name\": \"ps5535\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"ps5535.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"ps9905-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-137.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/ps9905-WestUSwebspace/sites/ps5535\",\r\n \"repositorySiteName\": \"ps5535\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"ps5535.azurewebsites.net\",\r\n \"ps5535.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"ps5535.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"ps5535.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/serverfarms/ps6265\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-03-04T11:11:07.5933333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"ps5535\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C1F921F9FA365BE916ED8851196B6E66DF433C8615038973C1C4DD85ACBBDD11\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"40.112.243.6\",\r\n \"possibleInboundIpAddresses\": \"40.112.243.6\",\r\n \"outboundIpAddresses\": \"40.112.243.6,13.93.220.248,13.93.221.96,13.93.221.41,13.93.220.182\",\r\n \"possibleOutboundIpAddresses\": \"40.112.243.6,13.93.220.248,13.93.221.96,13.93.221.41,13.93.220.182,13.93.221.147,13.93.220.112,13.91.111.88,13.93.220.5,13.93.220.231\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-137\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"ps9905\",\r\n \"defaultHostName\": \"ps5535.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczU1MzU/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d409a10c-c487-4af6-98d2-df70e4be567c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1D5F215B6CFBBC0\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "391df7a9-65d5-4cbe-9ab8-b83317f2c6ab"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "x-ms-correlation-request-id": [
+ "444bfa68-90ae-4383-977c-3dc2f96cb95a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111155Z:444bfa68-90ae-4383-977c-3dc2f96cb95a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:11:55 GMT"
+ ],
+ "Content-Length": [
+ "3040"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535\",\r\n \"name\": \"ps5535\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"name\": \"ps5535\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"ps5535.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"ps9905-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-137.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/ps9905-WestUSwebspace/sites/ps5535\",\r\n \"repositorySiteName\": \"ps5535\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"ps5535.azurewebsites.net\",\r\n \"ps5535.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"ps5535.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"ps5535.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/serverfarms/ps6265\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-03-04T11:11:55.26\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"ps5535\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C1F921F9FA365BE916ED8851196B6E66DF433C8615038973C1C4DD85ACBBDD11\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"40.112.243.6\",\r\n \"possibleInboundIpAddresses\": \"40.112.243.6\",\r\n \"outboundIpAddresses\": \"40.112.243.6,13.93.220.248,13.93.221.96,13.93.221.41,13.93.220.182\",\r\n \"possibleOutboundIpAddresses\": \"40.112.243.6,13.93.220.248,13.93.221.96,13.93.221.41,13.93.220.182,13.93.221.147,13.93.220.112,13.91.111.88,13.93.220.5,13.93.220.231\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-137\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"ps9905\",\r\n \"defaultHostName\": \"ps5535.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczU1MzU/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "94a3e707-84ea-4303-ad04-8072e3809d20"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1D5F215B89E9555\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6b954550-aae1-4746-bc8b-e1cca96ec597"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11986"
+ ],
+ "x-ms-correlation-request-id": [
+ "1cbe7f15-4256-4a23-86cc-592e2d84657e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111158Z:1cbe7f15-4256-4a23-86cc-592e2d84657e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:11:58 GMT"
+ ],
+ "Content-Length": [
+ "3045"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535\",\r\n \"name\": \"ps5535\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"name\": \"ps5535\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"ps5535.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"ps9905-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-137.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/ps9905-WestUSwebspace/sites/ps5535\",\r\n \"repositorySiteName\": \"ps5535\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"ps5535.azurewebsites.net\",\r\n \"ps5535.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"ps5535.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"ps5535.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/serverfarms/ps6265\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-03-04T11:11:58.2933333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"ps5535\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C1F921F9FA365BE916ED8851196B6E66DF433C8615038973C1C4DD85ACBBDD11\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"40.112.243.6\",\r\n \"possibleInboundIpAddresses\": \"40.112.243.6\",\r\n \"outboundIpAddresses\": \"40.112.243.6,13.93.220.248,13.93.221.96,13.93.221.41,13.93.220.182\",\r\n \"possibleOutboundIpAddresses\": \"40.112.243.6,13.93.220.248,13.93.221.96,13.93.221.41,13.93.220.182,13.93.221.147,13.93.220.112,13.91.111.88,13.93.220.5,13.93.220.231\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-137\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"ps9905\",\r\n \"defaultHostName\": \"ps5535.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/ps9905?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlZ3JvdXBzL3BzOTkwNT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ede53bf6-9dff-4aab-94dc-f2ad0cdd3dfc"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-request-id": [
+ "2d33a331-d774-4a22-9ac9-7f59b5c6efa5"
+ ],
+ "x-ms-correlation-request-id": [
+ "2d33a331-d774-4a22-9ac9-7f59b5c6efa5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111101Z:2d33a331-d774-4a22-9ac9-7f59b5c6efa5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:11:00 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "165"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905\",\r\n \"name\": \"ps9905\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczU1MzU/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/serverFarms/ps6265\"\r\n },\r\n \"location\": \"West US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0625f8e9-2f77-4133-a3e9-4aeba00b0bc3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "194"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1D5F2159A666095\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6bcf0555-f954-42e9-bf8f-13f66a65a827"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "499"
+ ],
+ "x-ms-correlation-request-id": [
+ "469472e8-bc1f-48e1-814d-e53c4211b8e8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111125Z:469472e8-bc1f-48e1-814d-e53c4211b8e8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:11:25 GMT"
+ ],
+ "Content-Length": [
+ "3047"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535\",\r\n \"name\": \"ps5535\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"name\": \"ps5535\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"ps5535.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"ps9905-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-137.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/ps9905-WestUSwebspace/sites/ps5535\",\r\n \"repositorySiteName\": \"ps5535\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"ps5535.azurewebsites.net\",\r\n \"ps5535.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"ps5535.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"ps5535.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/serverfarms/ps6265\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-03-04T11:11:07.5233333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"ps5535\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C1F921F9FA365BE916ED8851196B6E66DF433C8615038973C1C4DD85ACBBDD11\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"40.112.243.6\",\r\n \"possibleInboundIpAddresses\": \"40.112.243.6\",\r\n \"outboundIpAddresses\": \"40.112.243.6,13.93.220.248,13.93.221.96,13.93.221.41,13.93.220.182\",\r\n \"possibleOutboundIpAddresses\": \"40.112.243.6,13.93.220.248,13.93.221.96,13.93.221.41,13.93.220.182,13.93.221.147,13.93.220.112,13.91.111.88,13.93.220.5,13.93.220.231\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-137\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"ps9905\",\r\n \"defaultHostName\": \"ps5535.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/config/web?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczU1MzUvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "45537b55-4404-4615-b15c-bb7b5752383f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5bb68b62-c94f-44ec-a6a2-a4a1fce9fdea"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-correlation-request-id": [
+ "245dae79-4bcb-422f-905a-93be968e140c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111125Z:245dae79-4bcb-422f-905a-93be968e140c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:11:25 GMT"
+ ],
+ "Content-Length": [
+ "2993"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/config/web\",\r\n \"name\": \"ps5535\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps5535\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"reservedInstanceCount\": 0,\r\n \"preWarmedInstanceCount\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/config/web?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczU1MzUvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "958a6193-4087-4028-b2fb-703f55be5864"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b737b704-d987-47cd-806f-22e8b7e50f05"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-correlation-request-id": [
+ "64334be3-81fb-4090-83ac-ec2bb87e86f0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111127Z:64334be3-81fb-4090-83ac-ec2bb87e86f0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:11:27 GMT"
+ ],
+ "Content-Length": [
+ "2993"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/config/web\",\r\n \"name\": \"ps5535\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps5535\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"reservedInstanceCount\": 0,\r\n \"preWarmedInstanceCount\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/config/web?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczU1MzUvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "856cb0fd-07ef-4e73-b3e5-81231a230d78"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9784d6ab-c125-4be4-8e7e-71386637f734"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "x-ms-correlation-request-id": [
+ "975d3152-3989-4e36-8474-6e33ea1aa534"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111153Z:975d3152-3989-4e36-8474-6e33ea1aa534"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:11:52 GMT"
+ ],
+ "Content-Length": [
+ "2993"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/config/web\",\r\n \"name\": \"ps5535\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps5535\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"reservedInstanceCount\": 0,\r\n \"preWarmedInstanceCount\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/config/web?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczU1MzUvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3911abe6-a075-4070-ae36-b65849a08bd3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d1473197-843d-4f3d-bdb5-7e11cc71d8b1"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
+ ],
+ "x-ms-correlation-request-id": [
+ "fb135654-a5fe-4ce7-a75a-a4fd6207ac11"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111156Z:fb135654-a5fe-4ce7-a75a-a4fd6207ac11"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:11:55 GMT"
+ ],
+ "Content-Length": [
+ "3463"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/config/web\",\r\n \"name\": \"ps5535\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps5535\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [\r\n {\r\n \"actionHostName\": \"ps5535-staging.azurewebsites.net\",\r\n \"reroutePercentage\": 15.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"staging\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"ps5535-staging.azurewebsites.net\",\r\n \"reroutePercentage\": 15.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"staging\"\r\n }\r\n ]\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"reservedInstanceCount\": 0,\r\n \"preWarmedInstanceCount\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/config/web?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczU1MzUvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0ce0421b-bef0-491e-840c-4db77a0ab216"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "cd0d5169-051e-4e0c-bc1c-0218ce168f4f"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11985"
+ ],
+ "x-ms-correlation-request-id": [
+ "6e222272-cbca-48b7-a24b-8059e7ba575c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111159Z:6e222272-cbca-48b7-a24b-8059e7ba575c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:11:58 GMT"
+ ],
+ "Content-Length": [
+ "2997"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/config/web\",\r\n \"name\": \"ps5535\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps5535\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"reservedInstanceCount\": 0,\r\n \"preWarmedInstanceCount\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/config/appsettings/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczU1MzUvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e4e4371f-06d8-4c16-8924-579219f174e0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3d28fa55-1e4e-47cf-8646-af14a49aa938"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "e3380504-d628-4bfb-949d-7f0066f366bc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111126Z:e3380504-d628-4bfb-949d-7f0066f366bc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:11:25 GMT"
+ ],
+ "Content-Length": [
+ "270"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"6.9.1\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/config/appsettings/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczU1MzUvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a173e8a0-eb71-46e9-a74a-b48afeb6db74"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ce0b19d8-b855-4184-ac35-dad1aac22c58"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11997"
+ ],
+ "x-ms-correlation-request-id": [
+ "9ce964c5-5eda-4941-a85a-937fdd102674"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111127Z:9ce964c5-5eda-4941-a85a-937fdd102674"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:11:27 GMT"
+ ],
+ "Content-Length": [
+ "270"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"6.9.1\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/config/appsettings/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczU1MzUvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a7c3a689-f997-4438-9d50-d1b1092ac21e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "abf21fc0-f1c5-4981-8a61-0c1dd658914b"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11994"
+ ],
+ "x-ms-correlation-request-id": [
+ "51640c47-e73a-4162-99ea-7853ce3c58e6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111153Z:51640c47-e73a-4162-99ea-7853ce3c58e6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:11:52 GMT"
+ ],
+ "Content-Length": [
+ "270"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"6.9.1\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/config/appsettings/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczU1MzUvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ae7105f9-d194-44dd-a5df-a33b8a383eb3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d6b69280-5b2a-4849-a74b-4e1ee963d4fb"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11991"
+ ],
+ "x-ms-correlation-request-id": [
+ "b6e60b91-7490-40d4-a17c-279c78216a27"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111156Z:b6e60b91-7490-40d4-a17c-279c78216a27"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:11:56 GMT"
+ ],
+ "Content-Length": [
+ "270"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"6.9.1\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/config/appsettings/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczU1MzUvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c8fce722-fcbf-4191-af47-cab59c3775cc"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "727028d4-1a63-49cb-b7c9-359eaecb3ba0"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11988"
+ ],
+ "x-ms-correlation-request-id": [
+ "2a851288-c903-4b2d-9307-e2086f16b0f1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111159Z:2a851288-c903-4b2d-9307-e2086f16b0f1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:11:59 GMT"
+ ],
+ "Content-Length": [
+ "270"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"6.9.1\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/config/connectionstrings/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczU1MzUvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0908080e-cc36-4d4e-b8e7-77e701a6c8a2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4d29e159-c0e4-4c7c-88ce-1e10e977feb7"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "3b9f3dc6-1e4a-4ee7-84cf-2e8d04947ee3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111126Z:3b9f3dc6-1e4a-4ee7-84cf-2e8d04947ee3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:11:26 GMT"
+ ],
+ "Content-Length": [
+ "244"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/config/connectionstrings/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczU1MzUvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7dfc6085-0587-4fb4-ace9-bd7c2dc0aabb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5f731a95-03a2-4d5e-959d-c5d4fa91d676"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11996"
+ ],
+ "x-ms-correlation-request-id": [
+ "3579bb17-0ffd-452f-b239-712af8c7d130"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111128Z:3579bb17-0ffd-452f-b239-712af8c7d130"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:11:28 GMT"
+ ],
+ "Content-Length": [
+ "244"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/config/connectionstrings/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczU1MzUvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "865f5d82-6307-4337-9ae7-766d0b01749a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "97d5b4df-88c5-40a1-b4d4-fa750af17e79"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11993"
+ ],
+ "x-ms-correlation-request-id": [
+ "65ee753f-5516-46cb-abfd-5e2a3e4708c8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111153Z:65ee753f-5516-46cb-abfd-5e2a3e4708c8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:11:53 GMT"
+ ],
+ "Content-Length": [
+ "244"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/config/connectionstrings/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczU1MzUvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7cc641fa-551b-4e9c-96e0-d04026caec1a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "51de942a-e944-439d-90c5-b92acb16fc09"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11990"
+ ],
+ "x-ms-correlation-request-id": [
+ "d27164c5-a128-4712-9ec7-81fac0685c4a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111157Z:d27164c5-a128-4712-9ec7-81fac0685c4a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:11:56 GMT"
+ ],
+ "Content-Length": [
+ "244"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/config/connectionstrings/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczU1MzUvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "64d5eb41-56d3-469d-8637-e7a2b8b7a6a3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "10e84166-cf91-4051-ac88-698087f6dd58"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11987"
+ ],
+ "x-ms-correlation-request-id": [
+ "57c4f32b-eb1d-45ac-b74c-0b94fbbacdbb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111200Z:57c4f32b-eb1d-45ac-b74c-0b94fbbacdbb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:11:59 GMT"
+ ],
+ "Content-Length": [
+ "244"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/publishxml?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczU1MzUvcHVibGlzaHhtbD9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"format\": \"WebDeploy\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f50b14a6-cba3-4937-a165-b6790c9aad49"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "29"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11999"
+ ],
+ "x-ms-request-id": [
+ "aa7f2cb6-66e8-44e4-9b19-a06c7982f0f3"
+ ],
+ "x-ms-correlation-request-id": [
+ "aa7f2cb6-66e8-44e4-9b19-a06c7982f0f3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111126Z:aa7f2cb6-66e8-44e4-9b19-a06c7982f0f3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:11:26 GMT"
+ ],
+ "Content-Length": [
+ "1496"
+ ],
+ "Content-Type": [
+ "application/xml"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/config/azurestorageaccounts/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczU1MzUvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bcbea673-c214-4183-b54a-6b43b3267ca1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "502ce32f-92a9-49d1-9e6f-55b448638985"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11995"
+ ],
+ "x-ms-correlation-request-id": [
+ "e6a5bb55-a1f7-46aa-a032-b27021db29ef"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111128Z:e6a5bb55-a1f7-46aa-a032-b27021db29ef"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:11:28 GMT"
+ ],
+ "Content-Length": [
+ "241"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/config/azurestorageaccounts/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczU1MzUvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0ba9d17b-c946-45a1-830d-7bc18a557b13"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "732297e3-5800-4824-9f98-bc4354934b18"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11992"
+ ],
+ "x-ms-correlation-request-id": [
+ "78f2bd25-7639-47b7-9bc8-f9d3b8de7ac4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111154Z:78f2bd25-7639-47b7-9bc8-f9d3b8de7ac4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:11:53 GMT"
+ ],
+ "Content-Length": [
+ "241"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/config/azurestorageaccounts/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczU1MzUvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3d1bc09a-87ba-4bfe-a36b-3b3d720dfc66"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2e5d3c0a-1e0a-4f36-b681-40fdba635d74"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11989"
+ ],
+ "x-ms-correlation-request-id": [
+ "6f6fc8d2-7f33-4cb0-9ef6-956491c28a8e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111157Z:6f6fc8d2-7f33-4cb0-9ef6-956491c28a8e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:11:56 GMT"
+ ],
+ "Content-Length": [
+ "241"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/config/azurestorageaccounts/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczU1MzUvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9b4efd51-1ea0-4a1c-9ffb-2016cd649335"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "eb76134d-d6ed-492f-bbcd-a6349c3855c0"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11986"
+ ],
+ "x-ms-correlation-request-id": [
+ "43654981-b93c-43e7-b834-7ea4909b9ef4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111200Z:43654981-b93c-43e7-b834-7ea4909b9ef4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:11:59 GMT"
+ ],
+ "Content-Length": [
+ "241"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/slots/staging?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczU1MzUvc2xvdHMvc3RhZ2luZz9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/serverfarms/ps6265\"\r\n },\r\n \"location\": \"West US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "dd259db5-4efa-4ce2-bf0a-feaec41e502a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "194"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1D5F2159A666095\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d04cf9bc-8648-403d-86a4-a8609b7cb6fc"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "499"
+ ],
+ "x-ms-correlation-request-id": [
+ "2eaeb8b2-2e43-4811-a67b-628113be8ffd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111150Z:2eaeb8b2-2e43-4811-a67b-628113be8ffd"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:11:50 GMT"
+ ],
+ "Content-Length": [
+ "3138"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/slots/staging\",\r\n \"name\": \"ps5535/staging\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"name\": \"ps5535(staging)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"ps5535-staging.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"ps9905-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-137.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/ps9905-WestUSwebspace/sites/ps5535\",\r\n \"repositorySiteName\": \"ps5535\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"ps5535-staging.azurewebsites.net\",\r\n \"ps5535-staging.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"ps5535-staging.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"ps5535-staging.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/serverfarms/ps6265\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-03-04T11:11:33.0166667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"ps5535__c947\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"E2C364B6099B4B95F4ABFFF5E4BBF58222DF04A74E867701A1E9A1D03CD57FD8\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"40.112.243.6\",\r\n \"possibleInboundIpAddresses\": \"40.112.243.6\",\r\n \"outboundIpAddresses\": \"40.112.243.6,13.93.220.248,13.93.221.96,13.93.221.41,13.93.220.182\",\r\n \"possibleOutboundIpAddresses\": \"40.112.243.6,13.93.220.248,13.93.221.96,13.93.221.41,13.93.220.182,13.93.221.147,13.93.220.112,13.91.111.88,13.93.220.5,13.93.220.231\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-137\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"ps9905\",\r\n \"defaultHostName\": \"ps5535-staging.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/slots/staging/config/web?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczU1MzUvc2xvdHMvc3RhZ2luZy9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTgtMTEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "32e38577-9a55-42dc-aad8-2c79d7e8632b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "699e089d-14ac-410a-b66b-0300d03c7192"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-correlation-request-id": [
+ "ac9bef7e-1327-4def-9208-5c9d67ea0c57"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111151Z:ac9bef7e-1327-4def-9208-5c9d67ea0c57"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:11:50 GMT"
+ ],
+ "Content-Length": [
+ "3020"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/slots/staging/config/web\",\r\n \"name\": \"ps5535\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps5535__staging\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"reservedInstanceCount\": 0,\r\n \"preWarmedInstanceCount\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/slots/staging/config/appsettings/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczU1MzUvc2xvdHMvc3RhZ2luZy9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7a3e7ba6-98cd-4b5e-9c6b-b22ebf9abc60"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5eaf2b39-5234-4d5d-9aeb-7bb1120fc6ab"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "fb30ee45-63dd-44ad-89ae-25eb228e0ee3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111151Z:fb30ee45-63dd-44ad-89ae-25eb228e0ee3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:11:51 GMT"
+ ],
+ "Content-Length": [
+ "284"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/slots/staging/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"6.9.1\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/slots/staging/config/connectionstrings/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczU1MzUvc2xvdHMvc3RhZ2luZy9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3cdb4d15-eda4-458c-9a1c-0f6364c6d113"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "81f70b65-5ec4-4ca1-b707-09e6432d82dc"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "6c28ecb3-bc0c-4f5c-bd86-32d341faa21d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111152Z:6c28ecb3-bc0c-4f5c-bd86-32d341faa21d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:11:51 GMT"
+ ],
+ "Content-Length": [
+ "258"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/slots/staging/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/slots/staging/config/azurestorageaccounts/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczU1MzUvc2xvdHMvc3RhZ2luZy9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3782830b-77e4-40c6-97ce-98f825ee9b96"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "42e2008b-4bda-45f9-a772-6c48fe95d38f"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11997"
+ ],
+ "x-ms-correlation-request-id": [
+ "0e53ecf7-ea77-4203-b464-b340d2613ef4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111152Z:0e53ecf7-ea77-4203-b464-b340d2613ef4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:11:51 GMT"
+ ],
+ "Content-Length": [
+ "255"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/slots/staging/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/config/web?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczU1MzUvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "PATCH",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"httpLoggingEnabled\": false,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps5535\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_NODE_DEFAULT_VERSION\",\r\n \"value\": \"6.9.1\"\r\n }\r\n ],\r\n \"connectionStrings\": [],\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false\r\n }\r\n ],\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"ps5535-staging.azurewebsites.net\",\r\n \"reroutePercentage\": 15.0,\r\n \"name\": \"staging\"\r\n }\r\n ]\r\n },\r\n \"autoHealEnabled\": false,\r\n \"vnetName\": \"\",\r\n \"localMySqlEnabled\": false,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"reservedInstanceCount\": 0\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9ae9181d-8a07-4f0f-8342-71038e8cdc3a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "2094"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1D5F2159A666095\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "611daf12-0b1d-41cb-b884-5d4967586a95"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-correlation-request-id": [
+ "5ae30e7f-10dd-43f1-9f6b-edfd77c7ce3b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111155Z:5ae30e7f-10dd-43f1-9f6b-edfd77c7ce3b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:11:55 GMT"
+ ],
+ "Content-Length": [
+ "3445"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535\",\r\n \"name\": \"ps5535\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps5535\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [\r\n {\r\n \"actionHostName\": \"ps5535-staging.azurewebsites.net\",\r\n \"reroutePercentage\": 15.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"staging\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"ps5535-staging.azurewebsites.net\",\r\n \"reroutePercentage\": 15.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"staging\"\r\n }\r\n ]\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"reservedInstanceCount\": 0,\r\n \"preWarmedInstanceCount\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535/config/web?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzOTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczU1MzUvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "PATCH",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps5535\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_NODE_DEFAULT_VERSION\",\r\n \"value\": \"6.9.1\"\r\n }\r\n ],\r\n \"connectionStrings\": [],\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false\r\n }\r\n ],\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"autoHealEnabled\": false,\r\n \"vnetName\": \"\",\r\n \"localMySqlEnabled\": false,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"reservedInstanceCount\": 0\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "87dd0ab1-964e-458a-bdc3-374a8d2426c1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "1973"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1D5F215B6CFBBC0\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "65f7f177-e6e2-4423-9cbf-c2b53c426c21"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1197"
+ ],
+ "x-ms-correlation-request-id": [
+ "40bff72d-a0e2-4d8e-8faa-8cb8eaeec389"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111158Z:40bff72d-a0e2-4d8e-8faa-8cb8eaeec389"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:11:58 GMT"
+ ],
+ "Content-Length": [
+ "2979"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps9905/providers/Microsoft.Web/sites/ps5535\",\r\n \"name\": \"ps5535\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps5535\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"reservedInstanceCount\": 0,\r\n \"preWarmedInstanceCount\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/ps9905?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlZ3JvdXBzL3BzOTkwNT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "20b116dc-3498-4be8-b6ab-1b355458ded1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-request-id": [
+ "0efd8b43-f89b-4118-9a38-7efbb531df63"
+ ],
+ "x-ms-correlation-request-id": [
+ "0efd8b43-f89b-4118-9a38-7efbb531df63"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111206Z:0efd8b43-f89b-4118-9a38-7efbb531df63"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:12:06 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-request-id": [
+ "87ae1c86-6204-4338-a032-db6b4acc0bec"
+ ],
+ "x-ms-correlation-request-id": [
+ "87ae1c86-6204-4338-a032-db6b4acc0bec"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111222Z:87ae1c86-6204-4338-a032-db6b4acc0bec"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:12:21 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-request-id": [
+ "1e7a025e-1be0-4e9d-b3b5-90db49a00905"
+ ],
+ "x-ms-correlation-request-id": [
+ "1e7a025e-1be0-4e9d-b3b5-90db49a00905"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111237Z:1e7a025e-1be0-4e9d-b3b5-90db49a00905"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:12:37 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-request-id": [
+ "3b4c1b4e-4eb8-4351-a0f8-c8b668c61f22"
+ ],
+ "x-ms-correlation-request-id": [
+ "3b4c1b4e-4eb8-4351-a0f8-c8b668c61f22"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111253Z:3b4c1b4e-4eb8-4351-a0f8-c8b668c61f22"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:12:53 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-request-id": [
+ "95fa0230-8994-44a1-821d-ff16a3228e2b"
+ ],
+ "x-ms-correlation-request-id": [
+ "95fa0230-8994-44a1-821d-ff16a3228e2b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111308Z:95fa0230-8994-44a1-821d-ff16a3228e2b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:13:08 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-request-id": [
+ "525e73f8-441e-45e1-a1c9-dde3a02912a7"
+ ],
+ "x-ms-correlation-request-id": [
+ "525e73f8-441e-45e1-a1c9-dde3a02912a7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111324Z:525e73f8-441e-45e1-a1c9-dde3a02912a7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:13:23 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-request-id": [
+ "e1e028d9-f21d-42f4-8fe3-a975552eb7cc"
+ ],
+ "x-ms-correlation-request-id": [
+ "e1e028d9-f21d-42f4-8fe3-a975552eb7cc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111339Z:e1e028d9-f21d-42f4-8fe3-a975552eb7cc"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:13:38 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-request-id": [
+ "e40c737d-708b-42a1-b9e0-243c5f771716"
+ ],
+ "x-ms-correlation-request-id": [
+ "e40c737d-708b-42a1-b9e0-243c5f771716"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111355Z:e40c737d-708b-42a1-b9e0-243c5f771716"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:13:55 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-request-id": [
+ "add9f847-730f-4505-a888-5932d016f2bc"
+ ],
+ "x-ms-correlation-request-id": [
+ "add9f847-730f-4505-a888-5932d016f2bc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111410Z:add9f847-730f-4505-a888-5932d016f2bc"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:14:10 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "x-ms-request-id": [
+ "a5317c1a-0ccd-4604-8b20-8a644574d9a9"
+ ],
+ "x-ms-correlation-request-id": [
+ "a5317c1a-0ccd-4604-8b20-8a644574d9a9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111426Z:a5317c1a-0ccd-4604-8b20-8a644574d9a9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:14:25 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "x-ms-request-id": [
+ "3e3b9c89-6b5c-4d7d-94ba-d6d98fff98a1"
+ ],
+ "x-ms-correlation-request-id": [
+ "3e3b9c89-6b5c-4d7d-94ba-d6d98fff98a1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111441Z:3e3b9c89-6b5c-4d7d-94ba-d6d98fff98a1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:14:41 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
+ ],
+ "x-ms-request-id": [
+ "7a08d833-2d3e-42fa-b477-185bb1880b2f"
+ ],
+ "x-ms-correlation-request-id": [
+ "7a08d833-2d3e-42fa-b477-185bb1880b2f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111457Z:7a08d833-2d3e-42fa-b477-185bb1880b2f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:14:56 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5MDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU1EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11986"
+ ],
+ "x-ms-request-id": [
+ "788af9f0-b8fd-4f54-9263-47560e9499d1"
+ ],
+ "x-ms-correlation-request-id": [
+ "788af9f0-b8fd-4f54-9263-47560e9499d1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111457Z:788af9f0-b8fd-4f54-9263-47560e9499d1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:14:56 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-RemoveWebAppTrafficRoutingRule": [
+ "ps9905",
+ "ps5535",
+ "ps6265"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "04b0639d-85d8-445a-bada-8da78e50ff30"
+ }
+}
\ No newline at end of file
diff --git a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.RoutingRuleTests/TestUpdateWebAppTrafficRoutingRule.json b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.RoutingRuleTests/TestUpdateWebAppTrafficRoutingRule.json
new file mode 100644
index 000000000000..7d99bc08a7a5
--- /dev/null
+++ b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.RoutingRuleTests/TestUpdateWebAppTrafficRoutingRule.json
@@ -0,0 +1,3494 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Byb3ZpZGVycy8/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "adc4fd0d-1b00-4ff3-84b4-c5ba52ace9d2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11981"
+ ],
+ "x-ms-request-id": [
+ "cb106609-3f12-4c67-8544-87aac164fcbe"
+ ],
+ "x-ms-correlation-request-id": [
+ "cb106609-3f12-4c67-8544-87aac164fcbe"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111504Z:cb106609-3f12-4c67-8544-87aac164fcbe"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:15:03 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "727422"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ResourceHealth\",\r\n \"namespace\": \"Microsoft.ResourceHealth\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8bdebf23-c0fe-4187-a378-717ad86f6a53\",\r\n \"roleDefinitionId\": \"cc026344-c8b1-4561-83ba-59eba84b27cc\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilityStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-rc\",\r\n \"2018-08-01-preview\",\r\n \"2018-07-01-rc\",\r\n \"2018-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"childAvailabilityStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-06-beta\",\r\n \"2018-08-01-rc\",\r\n \"2018-08-01-preview\",\r\n \"2018-07-01-rc\",\r\n \"2018-07-01-preview\",\r\n \"2018-07-01-beta\",\r\n \"2017-07-01-rc\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01-beta\",\r\n \"2015-01-01-rc\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"childResources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-06-beta\",\r\n \"2018-08-01-rc\",\r\n \"2018-08-01-preview\",\r\n \"2018-07-01-rc\",\r\n \"2018-07-01-preview\",\r\n \"2018-07-01-beta\",\r\n \"2017-07-01-rc\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01-beta\",\r\n \"2015-01-01-rc\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"events\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-rc\",\r\n \"2018-07-01-preview\",\r\n \"2018-07-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"metadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-rc\",\r\n \"2018-07-01-preview\",\r\n \"2018-07-01-beta\",\r\n \"2018-07-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"emergingissues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-06-beta\",\r\n \"2018-07-01-rc\",\r\n \"2018-07-01-preview\",\r\n \"2018-07-01-beta\",\r\n \"2018-07-01-alpha\",\r\n \"2018-07-01\",\r\n \"2017-07-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifications\",\r\n \"locations\": [\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"ea2f600a-4980-45b7-89bf-d34da487bda1\",\r\n \"roleDefinitionId\": \"54d7f2e3-5040-48a7-ae90-eebf629cfa0b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\",\r\n \"2018-12-01-preview\",\r\n \"2018-09-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-01-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-01-01-preview\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"denyAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\r\n \"2018-07-01-preview\",\r\n \"2018-07-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-09-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-01-01\",\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"policySetDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-01-01\",\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-01-01\",\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity, SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"dataAliases\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"elevateAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"findOrphanRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"roleAssignmentsUsageMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.MachineLearningServices\",\r\n \"namespace\": \"Microsoft.MachineLearningServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n {\r\n \"applicationId\": \"18a66f5f-dbdf-4c17-9dd7-1634712a9cbe\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n {\r\n \"applicationId\": \"9fcb3732-5f52-4135-8c08-9d4bbaf203ea\",\r\n \"roleDefinitionId\": \"703B89C7-CE2C-431B-BDD8-FA34E39AF696\",\r\n \"managedByRoleDefinitionId\": \"90B8E153-EBFF-4073-A95F-4DAD56B14C78\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"Canada Central\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/computes\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/eventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/computeOperationsStatus\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/workspaceOperationsStatus\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmsizes\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/updatequotas\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.CertificateRegistration\",\r\n \"namespace\": \"Microsoft.CertificateRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3c21649-0979-4721-ac85-b0216b2cf413\",\r\n \"roleDefinitionId\": \"933fba7e-2ed3-4da8-973d-8bd8298a9b40\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"certificateOrders\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"certificateOrders/certificates\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateCertificateRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validate\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"isusernameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/getNetworkPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"France Central\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/networkConfig\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/networkConfig\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2015-01-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2015-01-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"West India\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-02-01\",\r\n \"2019-01-01\",\r\n \"2018-11-01\",\r\n \"2018-08-01\",\r\n \"2018-05-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-02-01\",\r\n \"2018-11-01\",\r\n \"2018-08-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-02-01\",\r\n \"2018-11-01\",\r\n \"2018-08-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedSites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedSites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"Central US (Stage)\",\r\n \"South Africa North\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-11-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"customApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/listWsdlInterfaces\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extractApiDefinitionFromWsdl\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runtimes\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/apiOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connectionGateways\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/connectionGatewayInstallations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingMeters\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"verifyHostingEnvironmentVnet\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/eventGridFilters\",\r\n \"locations\": [\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/eventGridFilters\",\r\n \"locations\": [\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2015-01-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/eventGridFilters\",\r\n \"locations\": [\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2015-01-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ManagedIdentity\",\r\n \"namespace\": \"Microsoft.ManagedIdentity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Identities\",\r\n \"locations\": [\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-30\",\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"userAssignedIdentities\",\r\n \"locations\": [\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-30\",\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-30\",\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6bccf540-eb86-4037-af03-7fa058c2db75\",\r\n \"roleDefinitionId\": \"89dcede2-9219-403a-9723-d3c6473f9472\"\r\n },\r\n {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n {\r\n \"applicationId\": \"035f9e1d-4f00-4419-bf50-bf2d87eb4878\",\r\n \"roleDefinitionId\": \"323795fe-ba3d-4f5a-ad42-afb4e1ea9485\"\r\n },\r\n {\r\n \"applicationId\": \"f5c26e74-f226-4ae8-85f0-b4af0080ac9e\",\r\n \"roleDefinitionId\": \"529d7ae6-e892-4d43-809d-8547aeb90643\"\r\n },\r\n {\r\n \"applicationId\": \"b503eb83-1222-4dcc-b116-b98ed5216e05\",\r\n \"roleDefinitionId\": \"68699c37-c689-44d4-9248-494b782d46ae\"\r\n },\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n },\r\n {\r\n \"applicationId\": \"3af5a1e8-2459-45cb-8683-bcd6cccbcc13\",\r\n \"roleDefinitionId\": \"b1309299-720d-4159-9897-6158a61aee41\"\r\n },\r\n {\r\n \"applicationId\": \"6a0a243c-0886-468a-a4c2-eff52c7445da\",\r\n \"roleDefinitionId\": \"d2eda64b-c5e6-4930-8642-2d80ecd7c2e2\"\r\n },\r\n {\r\n \"applicationId\": \"707be275-6b9d-4ee7-88f9-c0c2bd646e0f\",\r\n \"roleDefinitionId\": \"fa027d90-6ba0-4c33-9a54-59edaf2327e7\"\r\n },\r\n {\r\n \"applicationId\": \"461e8683-5575-4561-ac7f-899cc907d62a\",\r\n \"roleDefinitionId\": \"68699c37-c689-44d4-9248-494b782d46ae\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/query\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Australia Southeast\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/events\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"scheduledqueryrules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-16\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/pricingPlans\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"migrateToNewPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rollbackToLegacyPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listMigrationdate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logprofiles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"migratealertrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricalerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2016-09-01-preview\",\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vmInsightsOnboardingStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-27-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2015-07-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"extendedDiagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"logDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"eventCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"metricbatch\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"actiongroups\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2018-09-01\",\r\n \"2018-03-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"activityLogAlerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"baseline\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"metricbaselines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"calculatebaseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"workbooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"South Africa North\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-17-preview\",\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"workbooktemplates\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"South Africa North\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"myWorkbooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-17-preview\",\r\n \"2018-06-15-preview\",\r\n \"2018-06-01-preview\",\r\n \"2016-06-15-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"transactions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"topology\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"privateLinkScopes\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateLinkScopes/privateEndpointConnections\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateLinkScopes/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateLinkScopes/scopedResources\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateLinkScopeOperationStatuses\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-11-15\",\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domainNames/internalLoadBalancers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/serviceCertificates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"moveSubscriptionResources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateSubscriptionMoveAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystems\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystemFamilies\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/remoteVirtualNetworkPeeringProxies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections/peerings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"osImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"osPlatformImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n },\r\n {\r\n \"applicationId\": \"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"372140e0-b3b7-4226-8ef9-d57986796201\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab\",\r\n \"roleDefinitionId\": \"6efa92ca-56b6-40af-a468-5e3d2b5232f0\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"proximityPlacementGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/artifactPublishers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diskEncryptionSets\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations/vsmoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UK West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"France South\",\r\n \"West US 2\",\r\n \"Japan West\",\r\n \"France Central\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n {\r\n \"applicationId\": \"737d58c1-397a-46e7-9d12-7d8c830883c2\",\r\n \"roleDefinitionId\": \"716bb53a-0390-4428-bf41-b1bedde7d751\"\r\n },\r\n {\r\n \"applicationId\": \"918d0db8-4a38-4938-93c1-9313bdfe0272\",\r\n \"roleDefinitionId\": \"dcd2d2c9-3f80-4d72-95a8-2593111b4b12\"\r\n },\r\n {\r\n \"applicationId\": \"d2fa1650-4805-4a83-bcb9-cf41fe63539c\",\r\n \"roleDefinitionId\": \"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2\"\r\n },\r\n {\r\n \"applicationId\": \"a4c95b9e-3994-40cc-8953-5dc66d48348d\",\r\n \"roleDefinitionId\": \"dc88c655-90fa-48d9-8d51-003cc8738508\"\r\n },\r\n {\r\n \"applicationId\": \"62c559cd-db0c-4da0-bab2-972528c65d42\",\r\n \"roleDefinitionId\": \"437b639a-6d74-491d-959f-d172e8c5c1fc\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"registries/scopeMaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/tokens\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/generateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/privateEndpointConnections\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/privateLinkResources\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/importImage\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/scheduleRun\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/runs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/taskRuns\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/runs/listLogSasUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/runs/cancel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/tasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"registries/tasks/listDetails\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/getBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/queueBuild\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/getLogLink\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/cancel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/listSourceRepositoryProperties\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps/listBuildArguments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/replications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/ping\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/getCallbackConfig\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/listEvents\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setupAuth\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/authorize\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listUsages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/updatePolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/eventGridFilters\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n {\r\n \"applicationId\": \"6201d19e-14fb-4472-a2d6-5634a5c97568\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/networkrulesets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableClusterRegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n },\r\n {\r\n \"applicationId\": \"589d5083-6f11-4d30-a62a-a4b316a14abf\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/eventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n },\r\n {\r\n \"applicationId\": \"19947cfd-0303-466c-ac3c-fcc19a7a1570\",\r\n \"roleDefinitionId\": \"d813ab6c-bfb7-413e-9462-005b21f0ce09\"\r\n },\r\n {\r\n \"applicationId\": \"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd\",\r\n \"roleDefinitionId\": \"8141843c-c51c-4c1e-a5bf-0d351594b86c\"\r\n },\r\n {\r\n \"applicationId\": \"328fd23b-de6e-462c-9433-e207470a5727\",\r\n \"roleDefinitionId\": \"79e29e06-4056-41e5-a6b2-959f1f47747e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"privateEndpointRedirectMaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceEndpointPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkIntentPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPPrefixes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ddosCustomPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/flowLogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/pingMeshes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serviceTags\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availablePrivateEndpointTypes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableServiceAliases\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkPrivateLinkServiceVisibility\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/autoApprovedPrivateLinkServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getDnsResourceReference\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"internalNotify\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/virtualNetworkLinks\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableServerVariables\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableRequestHeaders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableResponseHeaders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualWans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnSites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnServerConfigurations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"p2sVpnGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"firewallPolicies\",\r\n \"locations\": [\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ipGroups\",\r\n \"locations\": [\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/nfvOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/nfvOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"azureFirewalls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewallFqdnTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkTaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"privateLinkServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"networkProfiles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFrontdoorNameAvailability\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontdoors\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-03-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallManagedRuleSets\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkExperimentProfiles\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/bareMetalTenants\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"bastionHosts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualRouters\",\r\n \"locations\": [\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80a10ef9-8168-493d-abf9-3297c4ef6e3c\",\r\n \"roleDefinitionId\": \"2b7763f7-bbe2-4e19-befe-28c79f1cf7f7\"\r\n },\r\n {\r\n \"applicationId\": \"eb070ea5-bd17-41f1-ad68-5851f6e71774\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/networkrulesets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"premiumMessagingRegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventgridfilters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ServiceFabric\",\r\n \"namespace\": \"Microsoft.ServiceFabric\",\r\n \"authorization\": {\r\n \"applicationId\": \"74cb6831-0dbb-4be1-8206-fd4df301cdc2\",\r\n \"roleDefinitionId\": \"e55cc65f-6903-4917-b4ef-f8d4640b57f5\",\r\n \"managedByRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/clusterVersions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/environments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ServiceFabricMesh\",\r\n \"namespace\": \"Microsoft.ServiceFabricMesh\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d10de03d-5ba3-497a-90e6-7ff8c9736059\",\r\n \"roleDefinitionId\": \"BC13595A-E262-4621-929E-56FF90E6BF18\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"networks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"volumes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"secrets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/applicationOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/networkOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/volumeOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/gatewayOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/secretOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e4ab13ed-33cb-41b4-9140-6e264582cf85\",\r\n \"roleDefinitionId\": \"ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec\"\r\n },\r\n {\r\n \"applicationId\": \"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9\",\r\n \"roleDefinitionId\": \"45e8abf8-0ec4-44f3-9c37-cff4f7779302\"\r\n },\r\n {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n {\r\n \"applicationId\": \"76c7f279-7959-468f-8943-3954880e0d8c\",\r\n \"roleDefinitionId\": \"7f7513a8-73f9-4c5f-97a2-c41f0ea783ef\"\r\n },\r\n {\r\n \"applicationId\": \"022907d3-0f1b-48f7-badc-1ba6abab6d66\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/encryptionProtector\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceEncryptionProtectorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceEncryptionProtectorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/communicationLinks\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administrators\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAdministratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAdministratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/geoBackupPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/backupLongTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/backupShortTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/automaticTuning\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/automaticTuning\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/transparentDataEncryption\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/extendedAuditingSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-09-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAccounts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAgents\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAgents/jobs\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAgents/jobs/steps\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAgents/jobs/executions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/disasterRecoveryConfiguration\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/dnsAliases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/failoverGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/aggregatedDatabaseMetrics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries/queryText\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPools/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/extensions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPoolEstimates\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditRecords\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentScans\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/workloadGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessment\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/recommendedSensitivityLabels\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups/syncMembers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/syncAgents\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"instancePools\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/instancePoolOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instancePoolAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/administrators\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/recoverableDatabases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/metrics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/metricDefinitions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/backupLongTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionManagedInstances\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionManagedInstanceBackups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceLongTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceLongTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionManagedInstanceBackupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionManagedInstanceBackupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseCompleteRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseCompleteRestoreOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualClusters\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualClusterAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualClusterOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncMemberOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncDatabaseIds\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedShortTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedShortTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/notifyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Subscription\",\r\n \"namespace\": \"Microsoft.Subscription\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3335adb-5ca0-40dc-b8d3-bedc094e523b\"\r\n },\r\n {\r\n \"applicationId\": \"5da7367f-09c8-493e-8fd4-638089cddec3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SubscriptionDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SubscriptionOperations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CreateSubscription\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cancel\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rename\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enable\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Advisor\",\r\n \"namespace\": \"Microsoft.Advisor\",\r\n \"authorization\": {\r\n \"applicationId\": \"c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7\",\r\n \"roleDefinitionId\": \"8a63b04c-3731-409b-9765-f1175c047872\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"suppressions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"configurations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2017-04-19\",\r\n \"2017-03-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"generateRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.PolicyInsights\",\r\n \"namespace\": \"Microsoft.PolicyInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"1d78a85d-813d-46f0-b496-dd72f50a3ec0\",\r\n \"roleDefinitionId\": \"63d2b225-4c34-4641-8768-21a1f7c68ce8\"\r\n },\r\n {\r\n \"applicationId\": \"8cae6e77-e04e-42ce-b5cb-50d82bce26b1\",\r\n \"roleDefinitionId\": \"4a2d3d6b-a6ea-45e2-9882-c9ba3e726ed7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyEvents\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"policyStates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"asyncOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"remediations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"policyTrackedResources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.AlertsManagement\",\r\n \"namespace\": \"Microsoft.AlertsManagement\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"3af5a1e8-2459-45cb-8683-bcd6cccbcc13\",\r\n \"roleDefinitionId\": \"b1309299-720d-4159-9897-6158a61aee41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-05-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-11-02-privatepreview\",\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"alertsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-05-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"smartGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-05-preview\",\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorAlertRules\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"actionRules\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-05-preview\",\r\n \"2018-11-02-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"alertsList\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-02-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertsSummaryList\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-02-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertsMetaData\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-05-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ChangeAnalysis\",\r\n \"namespace\": \"Microsoft.ChangeAnalysis\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cfc91a4-7baa-4a8f-a6c9-5f3d279060b8\",\r\n \"roleDefinitionId\": \"f5a6bd90-af71-455c-9030-c486e8c42c95\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Security\",\r\n \"namespace\": \"Microsoft.Security\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8edd93e1-2103-40b4-bd70-6e34e586362d\",\r\n \"roleDefinitionId\": \"855AF4C4-82F6-414C-B1A2-628025628B9A\"\r\n },\r\n {\r\n \"applicationId\": \"fc780465-2017-40d4-a0c5-307022471b92\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatuses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"regulatoryComplianceStandards\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"regulatoryComplianceStandards/regulatoryComplianceControls\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"regulatoryComplianceStandards/regulatoryComplianceControls/regulatoryComplianceAssessments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoDismissAlertsRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionAgents\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"pricings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AutoProvisioningSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Compliances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"securityContacts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaceSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"complianceResults\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"policies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"assessments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"assessmentMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"subAssessments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"allowedConnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allowedConnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topologies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/topologies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatusesSummaries\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"InformationProtectionPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"advancedThreatProtectionSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"deviceSecurityGroups\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"iotSecuritySolutions\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"iotSecuritySolutions/analyticsModels\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"iotSecuritySolutions/analyticsModels/aggregatedAlerts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"iotSecuritySolutions/analyticsModels/aggregatedRecommendations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"settings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverVulnerabilityAssessments\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"adaptiveNetworkHardenings\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"automations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"France Central\",\r\n \"France South\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/84codes.CloudAMQP\",\r\n \"namespace\": \"84codes.CloudAMQP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Conexlink.MyCloudIT\",\r\n \"namespace\": \"Conexlink.MyCloudIT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Crypteron.DataSecurity\",\r\n \"namespace\": \"Crypteron.DataSecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/LiveArena.Broadcast\",\r\n \"namespace\": \"LiveArena.Broadcast\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Mailjet.Email\",\r\n \"namespace\": \"Mailjet.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-10-01\",\r\n \"2017-05-29\",\r\n \"2017-02-03\",\r\n \"2016-11-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.AAD\",\r\n \"namespace\": \"Microsoft.AAD\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"443155a6-77f3-45e3-882b-22b3a8d431fb\",\r\n \"roleDefinitionId\": \"7389DE79-3180-4F07-B2BA-C5BA1F01B03A\"\r\n },\r\n {\r\n \"applicationId\": \"abba844e-bc0e-44b0-947a-dc74e5d09022\",\r\n \"roleDefinitionId\": \"63BC473E-7767-42A5-A3BF-08EB71200E04\"\r\n },\r\n {\r\n \"applicationId\": \"d87dcbc6-a371-462e-88e3-28ad15ec4e64\",\r\n \"roleDefinitionId\": \"861776c5-e0df-4f95-be4f-ac1eec193323\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DomainServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"DomainServices/oucontainer\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Addons\",\r\n \"namespace\": \"Microsoft.Addons\",\r\n \"authorization\": {\r\n \"applicationId\": \"24d3987b-be4a-48e0-a3e7-11c186f39e41\",\r\n \"roleDefinitionId\": \"8004BAAB-A4CB-4981-8571-F7E44D039D93\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"supportProviders\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"addsservices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"aadsupportcases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servicehealthmetrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"anonymousapiusers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.AnalysisServices\",\r\n \"namespace\": \"Microsoft.AnalysisServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Canada East\",\r\n \"Central India\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"France Central\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.AppConfiguration\",\r\n \"namespace\": \"Microsoft.AppConfiguration\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"35ffadb3-7fc1-497e-b61b-381d28e744cc\",\r\n \"roleDefinitionId\": \"fffa409e-a8cc-4cbf-8e1c-6d940b33040e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"configurationStores\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"configurationStores/eventGridFilters\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.AppPlatform\",\r\n \"namespace\": \"Microsoft.AppPlatform\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Spring\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatus\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Attestation\",\r\n \"namespace\": \"Microsoft.Attestation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c61423b7-1d1f-430d-b444-0eee53298103\",\r\n \"roleDefinitionId\": \"7299b0b1-11da-4858-8943-7db197005959\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"attestationProviders\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"fc75330b-179d-49af-87dd-3b1acf6827fa\",\r\n \"roleDefinitionId\": \"95fd5de3-d071-4362-92bf-cf341c1de832\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-13-preview\",\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/configurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"West US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/webhooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Australia East\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/softwareUpdateConfigurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/jobs\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/privateLinkResources\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-13-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/privateEndpointConnections\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-13-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-13-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.AzureActiveDirectory\",\r\n \"namespace\": \"Microsoft.AzureActiveDirectory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"b2cDirectories\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-privatepreview\",\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-privatepreview\",\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"b2ctenants\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-02-10-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.AzureData\",\r\n \"namespace\": \"Microsoft.AzureData\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sqlServerRegistrations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-10-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-10-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sqlServerRegistrations/sqlServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-10-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.AzureStack\",\r\n \"namespace\": \"Microsoft.AzureStack\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registrations/products\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations/customerSubscriptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudManifestFiles\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.BatchAI\",\r\n \"namespace\": \"Microsoft.BatchAI\",\r\n \"authorization\": {\r\n \"applicationId\": \"9fcb3732-5f52-4135-8c08-9d4bbaf203ea\",\r\n \"roleDefinitionId\": \"703B89C7-CE2C-431B-BDD8-FA34E39AF696\",\r\n \"managedByRoleDefinitionId\": \"90B8E153-EBFF-4073-A95F-4DAD56B14C78\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/clusters\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/fileservers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments/jobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Billing\",\r\n \"namespace\": \"Microsoft.Billing\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80dbdb39-4f33-4799-8b6f-711b5e3e61b6\",\r\n \"roleDefinitionId\": \"acdc79db-513f-461d-a542-61908d543bdc\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"billingPeriods\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"invoices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingRoleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"billingRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"createBillingRoleAssignment\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/createBillingRoleAssignment\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/createBillingRoleAssignment\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/createBillingRoleAssignment\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingPermissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingRoleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingPermissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/billingRoleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/billingRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/billingPermissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/customers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/instructions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/billingRoleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/billingRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/billingPermissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/billingPermissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/elevate\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/createInvoiceSectionOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/patchOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/patchOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/productMoveOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/billingSubscriptionMoveOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/listInvoiceSectionsWithCreateSubscriptionPermission\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/BillingProfiles/patchOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-06-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/enrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-06-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/paymentMethods\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/availableBalance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoices/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingSubscriptions/invoices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/products/updateAutoRenew\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/products/updateAutoRenew\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-06-30\",\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/initiateTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/initiateTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/transfers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/transfers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers/acceptTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers/declineTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers/validateTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/initiateTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/transfers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingProperty\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/policies\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/policies\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoices/pricesheet\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/pricesheet\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/pricesheetDownloadOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/billingSubscriptions/transfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/products/transfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/products/transfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/productTransfersResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers/operationStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/agreements\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/lineOfCredit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/paymentMethods\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateAddress\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Blockchain\",\r\n \"namespace\": \"Microsoft.Blockchain\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"78827f38-7b69-4d5e-a627-d6fdd9c759a0\",\r\n \"roleDefinitionId\": \"9c68eaf3-8315-4e5c-b857-641b16b21f8f\"\r\n },\r\n {\r\n \"applicationId\": \"049d4938-2ef2-4274-aa8f-630fc9bc33d1\",\r\n \"roleDefinitionId\": \"c6dd0893-0495-488a-ac21-ee5f1ba89769\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"watchers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"blockchainMembers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/watcherOperationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/blockchainMemberOperationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/listConsortiums\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Blueprint\",\r\n \"namespace\": \"Microsoft.Blueprint\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"f71766dc-90d9-4b7d-bd9d-4499c4331c3f\",\r\n \"roleDefinitionId\": \"cb180127-cf6d-4672-9e75-e29a487f9658\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"blueprints\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"blueprints/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity, SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments/assignmentOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.BotService\",\r\n \"namespace\": \"Microsoft.BotService\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3723d34-6ff5-4ceb-a148-d99dcd2511fc\",\r\n \"roleDefinitionId\": \"71213c26-43ed-41d8-9905-3c12971517a3\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"botServices\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"botServices/channels\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"botServices/connections\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAuthServiceProviders\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Capacity\",\r\n \"namespace\": \"Microsoft.Capacity\",\r\n \"authorization\": {\r\n \"applicationId\": \"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b\",\r\n \"roleDefinitionId\": \"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-06-01\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations/revisions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliedReservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatePrice\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculateExchange\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"exchange\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/calculateRefund\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/return\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/split\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/merge\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/swap\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateReservationOrder\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/availableScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations/availableScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commercialReservationOrders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatePurchasePrice\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-privatepreview\",\r\n \"2019-06-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"placePurchaseOrder\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-privatepreview\",\r\n \"2019-06-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkPurchaseStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-privatepreview\",\r\n \"2019-06-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"authorizations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/customdomains\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/originresults\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/customdomainresults\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkResourceUsage\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateProbe\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"edgenodes\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CdnWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"CdnWebApplicationFirewallManagedRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ClassicInfrastructureMigrate\",\r\n \"namespace\": \"Microsoft.ClassicInfrastructureMigrate\",\r\n \"authorization\": {\r\n \"applicationId\": \"5e5abe2b-83cd-4786-826a-a05653ebb103\",\r\n \"roleDefinitionId\": \"766c4d9b-ef83-4f73-8352-1450a506a69b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicInfrastructureResources\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ClassicSubscription\",\r\n \"namespace\": \"Microsoft.ClassicSubscription\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.CognitiveServices\",\r\n \"namespace\": \"Microsoft.CognitiveServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"7d312290-28c8-473c-a0ed-8e53749b6d6d\",\r\n \"roleDefinitionId\": \"5cb87f79-a7c3-4a95-9414-45b65974b51b\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkSkuAvailability\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-18\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Commerce\",\r\n \"namespace\": \"Microsoft.Commerce\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"UsageAggregates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RateCard\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-31-preview\",\r\n \"2015-06-01-preview\",\r\n \"2015-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Consumption\",\r\n \"namespace\": \"Microsoft.Consumption\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c5b17a4f-cc6f-4649-9480-684280a2af3a\",\r\n \"roleDefinitionId\": \"4a2e6ae9-2713-4cc9-a3b3-312899d687c3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Forecasts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"AggregatedCost\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ReservationRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ReservationSummaries\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ReservationTransactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Balances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Marketplaces\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Pricesheets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ReservationDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Budgets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"CostTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Terms\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"UsageDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-05-01\",\r\n \"2019-04-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Charges\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"credits\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"events\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"lots\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"OperationStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-05-01\",\r\n \"2019-04-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"OperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-05-01\",\r\n \"2019-04-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ContainerInstance\",\r\n \"namespace\": \"Microsoft.ContainerInstance\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9\",\r\n \"roleDefinitionId\": \"3c60422b-a83a-428d-9830-22609c77aa6c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerGroups\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"serviceAssociationLinks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cachedImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ContainerService\",\r\n \"namespace\": \"Microsoft.ContainerService\",\r\n \"authorization\": {\r\n \"applicationId\": \"7319c514-987d-4e9b-ac3d-d38c4f427f4c\",\r\n \"roleDefinitionId\": \"1b4a0c7f-2217-416f-acfa-cf73452fdc1c\",\r\n \"managedByRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\",\r\n \"managedByAuthorization\": {\r\n \"allowManagedByInheritance\": true\r\n }\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerServices\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"managedClusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Germany North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany West Central\",\r\n \"UAE North\",\r\n \"Norway East\",\r\n \"Norway West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-08-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-08-01-preview\",\r\n \"2018-03-31\",\r\n \"2017-08-31\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"openShiftManagedClusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Central India\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-30-preview\",\r\n \"2019-04-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/openShiftClusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Central India\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-30-preview\",\r\n \"2019-04-30\",\r\n \"2018-09-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE North\",\r\n \"Norway East\",\r\n \"Norway West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE North\",\r\n \"Norway East\",\r\n \"Norway West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-31\",\r\n \"2018-03-31\",\r\n \"2017-08-31\",\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/orchestrators\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE North\",\r\n \"Norway East\",\r\n \"Norway West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-08-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2017-09-30\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.CostManagement\",\r\n \"namespace\": \"Microsoft.CostManagement\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"3184af01-7a88-49e0-8b55-8ecdce0aa950\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Connectors\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"CloudConnectors\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts/Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts/Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions/Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions/Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Forecast\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2018-12-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions/Forecast\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2018-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts/Forecast\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2018-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Settings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"register\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-10-01-preview\",\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-10-01-preview\",\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Budgets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions/Alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts/Alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"showbackRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\r\n \"2019-02-03-alpha\",\r\n \"2019-02-02-alpha\",\r\n \"2019-02-01-alpha\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Exports\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Reports\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-12-01-preview\",\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Reportconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Views\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.CostManagementExports\",\r\n \"namespace\": \"Microsoft.CostManagementExports\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e5408ad0-c4e2-43aa-b6f2-3b4951286d99\",\r\n \"roleDefinitionId\": \"5e4888b3-2747-4e5b-9897-ec0865b91bcf\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.CustomerLockbox\",\r\n \"namespace\": \"Microsoft.CustomerLockbox\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a0551534-cfc9-4e1f-9a7a-65093b32bb38\"\r\n },\r\n {\r\n \"applicationId\": \"01fc33a7-78ba-4d2f-a4b7-768e336e890e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"requests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.CustomProviders\",\r\n \"namespace\": \"Microsoft.CustomProviders\",\r\n \"authorization\": {\r\n \"applicationId\": \"bf8eb16c-7ba7-4b47-86be-ac5e4b2007a5\",\r\n \"roleDefinitionId\": \"FACF09C9-A5D0-4D34-8B1F-B623AC29C6F7\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceProviders\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"associations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DataBox\",\r\n \"namespace\": \"Microsoft.DataBox\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"5613cb5c-a7c9-4099-8034-511fd7616cb2\",\r\n \"roleDefinitionId\": \"382D72D1-63DC-4243-9B99-CB69FDD473D8\",\r\n \"managedByRoleDefinitionId\": \"f4c0a4f9-768c-4927-ab83-d319111d6ef4\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateAddress\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableSkus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateInputs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/regionConfiguration\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DataBoxEdge\",\r\n \"namespace\": \"Microsoft.DataBoxEdge\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2368d027-f996-4edb-bf48-928f98f2ab8c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Databricks\",\r\n \"namespace\": \"Microsoft.Databricks\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d9327919-6775-4843-9037-3fb0fb0473cb\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"applicationId\": \"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Brazil South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/dbWorkspaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Brazil South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"UAE North\",\r\n \"Brazil South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Brazil South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/getNetworkPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"authorization\": {\r\n \"applicationId\": \"213f5f78-fb30-46c7-9e98-91c720a1c026\",\r\n \"roleDefinitionId\": \"D55E2225-A6AB-481C-A5BE-1B7687C293FA\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01-preview\",\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01-preview\",\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0947a342-ab4a-43be-93b3-b8243fc161e5\",\r\n \"roleDefinitionId\": \"f0a6aa2a-e9d8-4bae-bcc2-36b405e8a5da\"\r\n },\r\n {\r\n \"applicationId\": \"5d13f7d7-0567-429c-9880-320e9555e5fc\",\r\n \"roleDefinitionId\": \"956a8f20-9168-4c71-8e27-3c0460ac39a4\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"factories\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"factories/integrationRuntimes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/configureFactoryRepo\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/getFeatureValue\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/eventGridFilters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DataMigration\",\r\n \"namespace\": \"Microsoft.DataMigration\",\r\n \"authorization\": {\r\n \"applicationId\": \"a4bad4aa-bf02-4631-9f78-a64ffdba8150\",\r\n \"roleDefinitionId\": \"b831a21d-db98-4760-89cb-bef871952df1\",\r\n \"managedByRoleDefinitionId\": \"6256fb55-9e59-4018-a9e1-76b11c0a4c89\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"services/projects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DataShare\",\r\n \"namespace\": \"Microsoft.DataShare\",\r\n \"authorization\": {\r\n \"applicationId\": \"799f1985-1517-4fe1-af2b-ba3d87d4996b\",\r\n \"roleDefinitionId\": \"0146496b-e06f-439a-83be-49fac884edf5\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares/datasets\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares/synchronizationSettings\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares/invitations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/sharesubscriptions\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares/providersharesubscriptions\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/sharesubscriptions/datasetmappings\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/sharesubscriptions/triggers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/sharesubscriptions/consumerSourceDataSets\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listinvitations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/rejectInvitation\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2018-11-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consumerInvitations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2018-11-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2018-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DBforMariaDB\",\r\n \"namespace\": \"Microsoft.DBforMariaDB\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/waitStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateLinkResources\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateEndpointConnections\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DBforMySQL\",\r\n \"namespace\": \"Microsoft.DBforMySQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UAE North\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/waitStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateLinkResources\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateEndpointConnections\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DBforPostgreSQL\",\r\n \"namespace\": \"Microsoft.DBforPostgreSQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"serversv2\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-29-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-29-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/waitStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateLinkResources\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateEndpointConnections\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DeploymentManager\",\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"5b306cba-9c71-49db-96c3-d17ca2379c4d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"artifactSources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceTopologies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceTopologies/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceTopologies/services/serviceUnits\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"steps\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DesktopVirtualization\",\r\n \"namespace\": \"Microsoft.DesktopVirtualization\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"50e95039-b200-4007-bc97-8d5790743a63\",\r\n \"roleDefinitionId\": \"CAD30215-AD1C-43BF-BE90-7BFA8B493E62\"\r\n },\r\n {\r\n \"applicationId\": \"9cdead84-a844-4324-93f2-b2e6bb768d07\"\r\n },\r\n {\r\n \"applicationId\": \"a85cf173-4192-42f8-81fa-777a763e6e2c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-23-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0cd79364-7a90-4354-9984-6e36c841418d\",\r\n \"roleDefinitionId\": \"C121DF10-FE58-4BC4-97F9-8296879F7BBB\"\r\n },\r\n {\r\n \"applicationId\": \"29f411f1-b2cf-4043-8ac8-2185d7316811\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-04\",\r\n \"2019-09-01\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22-preview\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-09-25-preview\",\r\n \"2017-08-21-preview\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-31\",\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DevOps\",\r\n \"namespace\": \"Microsoft.DevOps\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"pipelines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DevSpaces\",\r\n \"namespace\": \"Microsoft.DevSpaces\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"controllers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia SouthEast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"controllers/listConnectionDetails\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia SouthEast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia SouthEast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia SouthEast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia SouthEast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkContainerHostMapping\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia SouthEast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs/environments\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"schedules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs/virtualMachines\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs/serviceRunners\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"57c0fc58-a83a-41d0-8ae9-08952659bdfd\",\r\n \"roleDefinitionId\": \"FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282\"\r\n },\r\n {\r\n \"applicationId\": \"36e2398c-9dd3-4f29-9a72-d9f2cfc47ad9\",\r\n \"roleDefinitionId\": \"D5A795DE-916D-4818-B015-33C9E103E39B\"\r\n },\r\n {\r\n \"applicationId\": \"a232010e-820c-4083-83bb-3ace5fc29d0b\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.EnterpriseKnowledgeGraph\",\r\n \"namespace\": \"Microsoft.EnterpriseKnowledgeGraph\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-03\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-03\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-03\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-03\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.EventGrid\",\r\n \"namespace\": \"Microsoft.EventGrid\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"4962773b-9cdb-44cf-a8bf-237846a00ab7\",\r\n \"roleDefinitionId\": \"7FE036D8-246F-48BF-A78F-AB3EE699C8F3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"topics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2018-09-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/topics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2018-09-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extensionTopics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationsStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"systemTopics\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"systemTopics/eventSubscriptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"partnerNamespaces\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"partnerTopics\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"partnerTopics/eventSubscriptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"partnerNamespaces/eventChannels\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Experimentation\",\r\n \"namespace\": \"Microsoft.Experimentation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e00d2f8a-f6c8-46e4-b379-e66082e28ca8\",\r\n \"roleDefinitionId\": \"d3a360d9-17f9-410e-9465-5c914c8cf570\",\r\n \"managedByRoleDefinitionId\": \"fa096ccd-4e8f-49de-9594-64449b3ac6b3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"featureProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptionFeatureRegistrations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.GuestConfiguration\",\r\n \"namespace\": \"Microsoft.GuestConfiguration\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e935b4a5-8968-416d-8414-caed51c782a9\",\r\n \"roleDefinitionId\": \"9c6ffa40-421e-4dc0-9739-76b0699a11de\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"guestConfigurationAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-20\",\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"software\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"softwareUpdates\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"softwareUpdateProfile\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-20\",\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.HanaOnAzure\",\r\n \"namespace\": \"Microsoft.HanaOnAzure\",\r\n \"authorization\": {\r\n \"applicationId\": \"cc5476ec-3074-44d1-8461-711f5d9b0e39\",\r\n \"roleDefinitionId\": \"4a10987e-dbcf-4c3d-8e3d-7ddcd9c771c2\",\r\n \"managedByRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hanaInstances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sapMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.HardwareSecurityModules\",\r\n \"namespace\": \"Microsoft.HardwareSecurityModules\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0eb690b7-d23e-4fb0-b43e-cd161ac80cc3\",\r\n \"roleDefinitionId\": \"48397dc8-3910-486a-8165-ab2df987447f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-31-preview\",\r\n \"2018-10-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-31-preview\",\r\n \"2018-10-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9191c4da-09fe-49d9-a5f1-d41cbe92ad95\",\r\n \"roleDefinitionId\": \"d102a6f3-d9cb-4633-8950-1243b975886c\",\r\n \"managedByRoleDefinitionId\": \"346da55d-e1db-4a5a-89db-33ab3cdb6fc6\"\r\n },\r\n {\r\n \"applicationId\": \"7865c1d2-f040-46cc-875f-831a1ef6a28a\",\r\n \"roleDefinitionId\": \"e27c0895-d168-46d5-8b65-870eb2350378\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/billingSpecs\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureasyncoperations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateCreateRequest\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.HealthcareApis\",\r\n \"namespace\": \"Microsoft.HealthcareApis\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"4f6778d8-5aef-43dc-a1ff-b073724b9495\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-16\",\r\n \"2018-08-20-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-16\",\r\n \"2018-08-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-16\",\r\n \"2018-08-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-16\",\r\n \"2018-08-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-16\",\r\n \"2018-08-20-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.HybridCompute\",\r\n \"namespace\": \"Microsoft.HybridCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"machines\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-12\",\r\n \"2019-08-02-preview\",\r\n \"2019-03-18-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-12\",\r\n \"2019-08-02-preview\",\r\n \"2019-03-18-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.HybridData\",\r\n \"namespace\": \"Microsoft.HybridData\",\r\n \"authorization\": {\r\n \"applicationId\": \"621269cf-1195-44a3-a835-c613d103dd15\",\r\n \"roleDefinitionId\": \"00320cd4-8823-47f2-bbe4-5c9da031311d\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataManagers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Hydra\",\r\n \"namespace\": \"Microsoft.Hydra\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"37ae09d4-a310-41e1-803d-8e85cec4bf23\",\r\n \"roleDefinitionId\": \"37ae09d4-a310-41e1-803d-8e85cec4bf23\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ImportExport\",\r\n \"namespace\": \"Microsoft.ImportExport\",\r\n \"authorization\": {\r\n \"applicationId\": \"7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a\",\r\n \"roleDefinitionId\": \"9f7aa6bb-9454-46b6-8c01-a4b0f33ca151\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.IoTCentral\",\r\n \"namespace\": \"Microsoft.IoTCentral\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9edfcdd9-0bc5-4bd4-b287-c3afc716aac7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"IoTApps\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Central US\",\r\n \"West Central US\",\r\n \"Australia\",\r\n \"Asia Pacific\",\r\n \"Europe\",\r\n \"Japan\",\r\n \"UK\",\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkSubdomainAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appTemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.IoTSpaces\",\r\n \"namespace\": \"Microsoft.IoTSpaces\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0b07f429-9f4b-4714-9392-cc5e8e80c8b0\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"West US 2\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"Graph\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"West US 2\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Kubernetes\",\r\n \"namespace\": \"Microsoft.Kubernetes\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"64b12d6e-6549-484c-8cc6-6281839ba394\",\r\n \"roleDefinitionId\": \"1d1d44cf-68a1-4def-a2b6-cd7efc3515af\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2019-09-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Kusto\",\r\n \"namespace\": \"Microsoft.Kusto\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2746ea77-4702-4b45-80ca-3c97e680e8b7\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/attacheddatabaseconfigurations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/principalassignments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-09\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases/eventhubconnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases/dataconnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases/principalassignments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-09\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/sharedidentities\",\r\n \"locations\": [\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-09\",\r\n \"2019-09-07\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.LabServices\",\r\n \"namespace\": \"Microsoft.LabServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labaccounts\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"users\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2019-01-01-beta\",\r\n \"2019-01-01-alpha\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\",\r\n \"2017-12-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"integrationAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"integrationServiceEnvironments\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"integrationServiceEnvironments/managedApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.MachineLearning\",\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"webServices\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commitmentPlans\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Maintenance\",\r\n \"namespace\": \"Microsoft.Maintenance\",\r\n \"authorization\": {\r\n \"applicationId\": \"f18474f2-a66a-4bb0-a3c9-9b8d892092fa\",\r\n \"roleDefinitionId\": \"2f1ef7b0-d5c4-4d3c-98fa-6a9fa8e74aa5\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"maintenanceConfigurations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-06-01-preview\",\r\n \"2017-04-26\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"updates\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-06-01-preview\",\r\n \"2017-04-26\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"configurationAssignments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-06-01-preview\",\r\n \"2017-04-26\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"applyUpdates\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-06-01-preview\",\r\n \"2017-04-26\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ManagedServices\",\r\n \"namespace\": \"Microsoft.ManagedServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"66c6d0d1-f2e7-4a18-97a9-ed10f3347016\",\r\n \"roleDefinitionId\": \"1e86f807-6ec0-40b3-8b5f-686b7e43a0a2\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registrationDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01-preview\",\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"registrationAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01-preview\",\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"marketplaceRegistrationDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Management\",\r\n \"namespace\": \"Microsoft.Management\",\r\n \"authorization\": {\r\n \"applicationId\": \"f2c304cf-8e7e-4c3f-8164-16299ad9d272\",\r\n \"roleDefinitionId\": \"c1cf3708-588a-4647-be7f-f400bbe214cf\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managementGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getEntities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managementGroups/settings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults/asyncOperation\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenantBackfillStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"startTenantBackfill\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Maps\",\r\n \"namespace\": \"Microsoft.Maps\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"608f6f31-fed0-4f7b-809f-90f6c9b3de78\",\r\n \"roleDefinitionId\": \"3431F0E6-63BC-482D-A96E-0AB819610A5F\"\r\n },\r\n {\r\n \"applicationId\": \"ba1ea022-5807-41d5-bbeb-292c7e1cf5f6\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/eventGridFilters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"authorization\": {\r\n \"applicationId\": \"a0e1e353-1a3e-42cf-a8ea-3a9746eec58c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"register\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privategalleryitems\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs/importImage\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/agreements\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAvailableOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishers/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishers/offers/amendments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateStoreClient\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-beta\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateStores\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateStores/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.MarketplaceApps\",\r\n \"namespace\": \"Microsoft.MarketplaceApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicDevServices\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offertypes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Media\",\r\n \"namespace\": \"Microsoft.Media\",\r\n \"authorization\": {\r\n \"applicationId\": \"374b2a64-3b6b-436b-934c-b820eacca870\",\r\n \"roleDefinitionId\": \"aab70789-0cec-44b5-95d7-84b64c9487af\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mediaservices\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/assets\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/contentKeyPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingLocators\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/eventGridFilters\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms/jobs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpoints\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents/liveOutputs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpointOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEventOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveOutputOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/assets/assetFilters\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/accountFilters\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2018-02-05\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Migrate\",\r\n \"namespace\": \"Microsoft.Migrate\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3bfd6ac-eace-4438-9dc1-eed439e738de\",\r\n \"roleDefinitionId\": \"e88f4159-1d71-4b12-8ef0-38c039cb051e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"projects\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"migrateprojects\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"assessmentProjects\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/assessmentOptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.MixedReality\",\r\n \"namespace\": \"Microsoft.MixedReality\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c7ddd9b4-5172-4e28-bd29-1e0792947d18\",\r\n \"roleDefinitionId\": \"b67ee066-e058-4ddb-92bc-83cdd74bc38a\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-02-preview\",\r\n \"2019-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-02-preview\",\r\n \"2019-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-02-preview\",\r\n \"2019-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"spatialAnchorsAccounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-02-preview\",\r\n \"2019-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.NetApp\",\r\n \"namespace\": \"Microsoft.NetApp\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"12fb057d-b751-47cd-857c-f2934bb677b4\",\r\n \"roleDefinitionId\": \"e4796bef-6b6d-4cbc-ba1e-27f1a308d860\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"West US (Stage)\",\r\n \"West US 2 (Stage)\",\r\n \"South Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2017-08-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ObjectStore\",\r\n \"namespace\": \"Microsoft.ObjectStore\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"osNamespaces\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.OffAzure\",\r\n \"namespace\": \"Microsoft.OffAzure\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"728a93e3-065d-4678-93b1-3cc281223341\",\r\n \"roleDefinitionId\": \"b9967bf7-a345-4af8-95f0-49916f760fc6\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"VMwareSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\",\r\n \"2019-06-06\",\r\n \"2019-05-01-preview\",\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"HyperVSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-06-06\",\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ServerSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ImportSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-06-06\",\r\n \"2018-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"86695298-2eb9-48a7-9ec3-2fdb38b6878b\"\r\n },\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2017-03-15-preview\",\r\n \"2017-03-03-preview\",\r\n \"2017-01-01-preview\",\r\n \"2015-11-01-preview\",\r\n \"2015-03-20\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01-preview\",\r\n \"2017-04-26-preview\",\r\n \"2017-03-15-preview\",\r\n \"2017-03-03-preview\",\r\n \"2017-01-01-preview\",\r\n \"2015-11-01-preview\",\r\n \"2015-03-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01-preview\",\r\n \"2017-04-26-preview\",\r\n \"2017-03-15-preview\",\r\n \"2017-03-03-preview\",\r\n \"2017-01-01-preview\",\r\n \"2015-11-01-preview\",\r\n \"2015-03-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/privateEndpointConnections\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01-preview\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/privateLinkResources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01-preview\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01-preview\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/scopedPrivateLinkProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01-preview\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/query\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Australia Southeast\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland West\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/dataSources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/linkedServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01-preview\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.OperationsManagement\",\r\n \"namespace\": \"Microsoft.OperationsManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"aa249101-6816-4966-aafa-08175d795f14\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"solutions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central Us\",\r\n \"East Us 2\",\r\n \"East Asia\",\r\n \"West Us\",\r\n \"South Central Us\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementconfigurations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central Us\",\r\n \"East Us 2\",\r\n \"East Asia\",\r\n \"West Us\",\r\n \"South Central Us\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementassociations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"views\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central Us\",\r\n \"East Us 2\",\r\n \"East Asia\",\r\n \"West Us\",\r\n \"South Central Us\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Peering\",\r\n \"namespace\": \"Microsoft.Peering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"peerings\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"East Asia\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West India\",\r\n \"South India\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"peeringLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"legacyPeerings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"peerAsns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"peeringServiceCountries\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"peeringServiceLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"peeringServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceProviderAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Portal\",\r\n \"namespace\": \"Microsoft.Portal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dashboards\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-10-01-preview\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"consoles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consoles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.PowerBI\",\r\n \"namespace\": \"Microsoft.PowerBI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaceCollections\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.PowerBIDedicated\",\r\n \"namespace\": \"Microsoft.PowerBIDedicated\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"capacities\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South Africa North\",\r\n \"Canada East\",\r\n \"South Africa West\",\r\n \"UK West\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South Africa West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ProjectBabylon\",\r\n \"namespace\": \"Microsoft.ProjectBabylon\",\r\n \"authorization\": {\r\n \"applicationId\": \"73c2949e-da2d-457a-9607-fcc665198967\",\r\n \"roleDefinitionId\": \"1BC09725-0C9B-4F57-A3D0-FCCF4EB40120\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ProviderHub\",\r\n \"namespace\": \"Microsoft.ProviderHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"providerRegistrations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerRegistrations/resourceTypeRegistrations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"availableAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.RecoveryServices\",\r\n \"namespace\": \"Microsoft.RecoveryServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6\"\r\n },\r\n {\r\n \"applicationId\": \"3b2fa68d-a091-48c9-95be-88d572e08fb7\",\r\n \"roleDefinitionId\": \"47d68fae-99c7-4c10-b9db-2316116a061e\"\r\n },\r\n {\r\n \"applicationId\": \"9bdab391-7bbe-42e8-8132-e4491dc29cc0\",\r\n \"roleDefinitionId\": \"0383f7f5-023d-4379-b2c7-9ef786459969\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15\",\r\n \"2019-05-13-preview\",\r\n \"2019-05-13\",\r\n \"2018-12-20-preview\",\r\n \"2018-07-10-preview\",\r\n \"2018-07-10\",\r\n \"2018-01-10\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-12-01\",\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2016-05-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocatedStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocateStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupValidateFeatures\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupPreValidateProtection\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupCrrJobs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupCrrJob\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupAadProperties\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupCrossRegionRestore\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupCrrOperationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupCrrOperationsStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"backupProtectedItems\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"replicationEligibilityResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-10\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Relay\",\r\n \"namespace\": \"Microsoft.Relay\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.ResourceGraph\",\r\n \"namespace\": \"Microsoft.ResourceGraph\",\r\n \"authorization\": {\r\n \"applicationId\": \"509e4652-da8d-478d-a730-e9d4a1996ca4\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourcesHistory\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceChanges\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceChangeDetails\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptionsStatus\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"applicationId\": \"3b990c8b-9607-4c2a-8b04-1d41985facca\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.SaaS\",\r\n \"namespace\": \"Microsoft.SaaS\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"f738ef14-47dc-4564-b53b-45069484ccc7\",\r\n \"roleDefinitionId\": \"b131dd2d-387a-4cae-bb9b-3d021f80d1e6\"\r\n },\r\n {\r\n \"applicationId\": \"20e940b3-4c77-4b0b-9a53-9e16a1b010a7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkModernEligibility\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"saasresources\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-Preview\",\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.SecurityInsights\",\r\n \"namespace\": \"Microsoft.SecurityInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"98785600-1bb7-4fb9-b9fa-19afe2c8a360\",\r\n \"roleDefinitionId\": \"ef1c46aa-ae81-4091-ab83-f75f28efb7b8\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertRules\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"alertRuleTemplates\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"cases\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"bookmarks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"dataConnectors\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"dataConnectorsCheckRequirements\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"entities\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"incidents\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"officeConsents\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"settings\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"aggregations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"entityQueries\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.SerialConsole\",\r\n \"namespace\": \"Microsoft.SerialConsole\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"consoleServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consoleServices\",\r\n \"locations\": [\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Services\",\r\n \"namespace\": \"Microsoft.Services\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"providerRegistrations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerRegistrations/resourceTypeRegistrations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.SignalRService\",\r\n \"namespace\": \"Microsoft.SignalRService\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cdad765c-f191-43ba-b9f5-7aef392f811d\",\r\n \"roleDefinitionId\": \"346b504e-4aec-45d1-be25-a6e10f3cb4fe\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SignalR\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SignalR/eventGridFilters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.SoftwarePlan\",\r\n \"namespace\": \"Microsoft.SoftwarePlan\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hybridUseBenefits\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Solutions\",\r\n \"namespace\": \"Microsoft.Solutions\",\r\n \"authorization\": {\r\n \"applicationId\": \"ba4bc2bd-843f-4d61-9d33-199178eae34e\",\r\n \"roleDefinitionId\": \"6cb99a0b-29a8-49bc-b57b-057acc68cd9a\",\r\n \"managedByRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\",\r\n \"managedByAuthorization\": {\r\n \"managedByResourceRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\"\r\n }\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"applicationDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"jitRequests\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.SqlVirtualMachine\",\r\n \"namespace\": \"Microsoft.SqlVirtualMachine\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"bd93b475-f9e2-476e-963d-b2daf143ffb9\",\r\n \"roleDefinitionId\": \"f96bd990-ffdf-4c17-8ee3-77454d9c3f5d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SqlVirtualMachineGroups\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"SqlVirtualMachines\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"SqlVirtualMachineGroups/AvailabilityGroupListeners\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/OperationTypes\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/sqlVirtualMachineOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/sqlVirtualMachineGroupOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/availabilityGroupListenerOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.StorageCache\",\r\n \"namespace\": \"Microsoft.StorageCache\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"4392ab71-2ce2-4b0d-8770-b352745c73f5\",\r\n \"roleDefinitionId\": \"e27430df-bd6b-4f3a-bd6d-d52ad1a7d075\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.StorageSync\",\r\n \"namespace\": \"Microsoft.StorageSync\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9469b9f5-6722-4481-a2b2-14ed560b706f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageSyncServices\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/cloudEndpoints\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/serverEndpoints\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/registeredServers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/workflows\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.StorSimple\",\r\n \"namespace\": \"Microsoft.StorSimple\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"managers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-05-15\",\r\n \"2017-01-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"authorization\": {\r\n \"applicationId\": \"66f1e791-7bfb-4e18-aed8-1720056421c7\",\r\n \"roleDefinitionId\": \"15f6e7b0-eec0-4f18-a552-c97e000cbc61\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-11-01\",\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-11-01\",\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-11-01\",\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-11-01\",\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"959678cf-d004-4c22-82a6-d2ce549a58b8\",\r\n \"roleDefinitionId\": \"81a3dd11-5123-4ec3-9485-772b0a27d1bd\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services/problemclassifications\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationsstatus\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Synapse\",\r\n \"namespace\": \"Microsoft.Synapse\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9e09aefc-b2e5-4d19-9f74-3e3e8b11a57b\",\r\n \"roleDefinitionId\": \"a53b114a-452b-4d20-bcd6-c51c3c8c5878\",\r\n \"managedByRoleDefinitionId\": \"ede175bc-31e5-4074-ba98-e62b895797aa\"\r\n },\r\n {\r\n \"applicationId\": \"1ac05c7e-12d2-4605-bf9d-549d7041c6b3\",\r\n \"roleDefinitionId\": \"48e77487-c9fa-4abe-8484-71ebdebdbbc2\"\r\n },\r\n {\r\n \"applicationId\": \"ec52d13d-2e85-410e-a89a-8c79fb6a32ac\",\r\n \"roleDefinitionId\": \"c3a447c3-a63a-4905-a125-c6856f9d0e17\"\r\n },\r\n {\r\n \"applicationId\": \"5ebe1e69-13dd-4953-84fa-a74ed591db2e\",\r\n \"roleDefinitionId\": \"e8ebe3e8-569b-4ad3-bea1-5b274fe0c49f\"\r\n },\r\n {\r\n \"applicationId\": \"2e458d69-0892-4655-b713-4f7b182315dd\",\r\n \"roleDefinitionId\": \"45EA3B16-D4DD-48CA-BF0D-BBE644C0C0AF\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.TimeSeriesInsights\",\r\n \"namespace\": \"Microsoft.TimeSeriesInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"120d688d-1518-4cf7-bd38-182f158850b6\",\r\n \"roleDefinitionId\": \"5a43abdf-bb87-42c4-9e56-1c24bf364150\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/eventsources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/referenceDataSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/accessPolicies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Token\",\r\n \"namespace\": \"Microsoft.Token\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"fe053c5f-3692-4f14-aef2-ee34fc081cae\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"stores\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"stores/accessPolicies\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"stores/services\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"stores/services/tokens\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.VirtualMachineImages\",\r\n \"namespace\": \"Microsoft.VirtualMachineImages\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cf32a0cc-373c-47c9-9156-0db11f6a6dfc\",\r\n \"roleDefinitionId\": \"0ee55a0b-f45f-4392-92ec-e8bf1b4b5da5\",\r\n \"managedByRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2019-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"account/extension\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.VMwareCloudSimple\",\r\n \"namespace\": \"Microsoft.VMwareCloudSimple\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d96199e7-4674-4bbf-a1c6-ddf93682f5ee\",\r\n \"roleDefinitionId\": \"533012ca-a3e7-44e4-93b4-3143f8b9409d\",\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"CloudSimpleExtension\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dedicatedCloudNodes\",\r\n \"locations\": [\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dedicatedCloudServices\",\r\n \"locations\": [\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availabilities\",\r\n \"locations\": [\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds\",\r\n \"locations\": [\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds/virtualNetworks\",\r\n \"locations\": [\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds/virtualMachineTemplates\",\r\n \"locations\": [\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds/resourcePools\",\r\n \"locations\": [\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.VnfManager\",\r\n \"namespace\": \"Microsoft.VnfManager\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"b8ed041c-aa91-418e-8f47-20c70abc2de1\",\r\n \"roleDefinitionId\": \"c8d69fc0-f0ed-43b3-bf1d-4dfdaacc6d2d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/OperationStatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.VSOnline\",\r\n \"namespace\": \"Microsoft.VSOnline\",\r\n \"authorizations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West Us 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-07-01-beta\",\r\n \"2019-07-01-alpha\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"plans\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West Us 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-07-01-beta\",\r\n \"2019-07-01-alpha\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-07-01-beta\",\r\n \"2019-07-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.WindowsESU\",\r\n \"namespace\": \"Microsoft.WindowsESU\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e6c69915-bcc7-4335-b655-c62f949d691b\",\r\n \"roleDefinitionId\": \"9bccffcd-2d3d-4b7c-a2cb-bb26e77b4810\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-16-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-16-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/OperationStatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.WindowsIoT\",\r\n \"namespace\": \"Microsoft.WindowsIoT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DeviceServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-02-16-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-02-16-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.WorkloadMonitor\",\r\n \"namespace\": \"Microsoft.WorkloadMonitor\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"componentsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitorInstancesSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitorInstances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"monitors\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"notificationSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Myget.PackageManagement\",\r\n \"namespace\": \"Myget.PackageManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Paraleap.CloudMonix\",\r\n \"namespace\": \"Paraleap.CloudMonix\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Pokitdok.Platform\",\r\n \"namespace\": \"Pokitdok.Platform\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/RavenHq.Db\",\r\n \"namespace\": \"RavenHq.Db\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Raygun.CrashReporting\",\r\n \"namespace\": \"Raygun.CrashReporting\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Sparkpost.Basic\",\r\n \"namespace\": \"Sparkpost.Basic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/stackify.retrace\",\r\n \"namespace\": \"stackify.retrace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/U2uconsult.TheIdentityHub\",\r\n \"namespace\": \"U2uconsult.TheIdentityHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/ps8564?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlZ3JvdXBzL3BzODU2ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"West US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b3959025-1da0-41a2-a46a-90d86c5c33fc"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "29"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-request-id": [
+ "80f182ed-0c4a-4294-9d14-01ddb97ccd83"
+ ],
+ "x-ms-correlation-request-id": [
+ "80f182ed-0c4a-4294-9d14-01ddb97ccd83"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111507Z:80f182ed-0c4a-4294-9d14-01ddb97ccd83"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:15:07 GMT"
+ ],
+ "Content-Length": [
+ "165"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564\",\r\n \"name\": \"ps8564\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/serverfarms/ps6569?api-version=2018-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzODU2NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9wczY1Njk/YXBpLXZlcnNpb249MjAxOC0wMi0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"perSiteScaling\": false,\r\n \"isXenon\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "99a46f3e-937d-46c7-a8d7-ea9bdd147b1e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "187"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b525e7ac-7dfc-4611-8027-d4d68fe9d715"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "ec46800f-b1ca-4792-a360-7a59a4d50eff"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111521Z:ec46800f-b1ca-4792-a360-7a59a4d50eff"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:15:20 GMT"
+ ],
+ "Content-Length": [
+ "1267"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/serverfarms/ps6569\",\r\n \"name\": \"ps6569\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"serverFarmId\": 10814,\r\n \"name\": \"ps6569\",\r\n \"workerSize\": \"Default\",\r\n \"workerSizeId\": 0,\r\n \"workerTierName\": null,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": \"Default\",\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": \"Ready\",\r\n \"webSpace\": \"ps8564-WestUSwebspace\",\r\n \"subscription\": \"04b0639d-85d8-445a-bada-8da78e50ff30\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": \"Dedicated\",\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"maximumElasticWorkerCount\": 1,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"isSpot\": false,\r\n \"spotExpirationTime\": null,\r\n \"freeOfferExpirationTime\": null,\r\n \"tags\": null,\r\n \"kind\": \"app\",\r\n \"resourceGroup\": \"ps8564\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"mdmId\": \"waws-prod-bay-141_10814\",\r\n \"targetWorkerCount\": 0,\r\n \"targetWorkerSizeId\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"webSiteId\": null,\r\n \"existingServerFarmIds\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Web/checknameavailability?api-version=2018-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NoZWNrbmFtZWF2YWlsYWJpbGl0eT9hcGktdmVyc2lvbj0yMDE4LTAyLTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"name\": \"ps4020\",\r\n \"type\": \"Site\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1eff7291-717f-475c-a02b-4fd09f69f409"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "43"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5bd77892-7d42-49fd-bf8d-ee6ef05397eb"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "80e596e9-1dda-4443-8240-1126137f60da"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111522Z:80e596e9-1dda-4443-8240-1126137f60da"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:15:22 GMT"
+ ],
+ "Content-Length": [
+ "47"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"nameAvailable\": true,\r\n \"reason\": \"\",\r\n \"message\": \"\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/serverfarms/ps6569?api-version=2018-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzODU2NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9wczY1Njk/YXBpLXZlcnNpb249MjAxOC0wMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6d56b247-58c5-42c0-b869-9f7d504a97f7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8bf489c4-2c71-413b-ac5c-eb57f27b1ff3"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "916d0017-cd61-4b86-ace4-d4c91b83aefc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111523Z:916d0017-cd61-4b86-ace4-d4c91b83aefc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:15:22 GMT"
+ ],
+ "Content-Length": [
+ "1267"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/serverfarms/ps6569\",\r\n \"name\": \"ps6569\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"serverFarmId\": 10814,\r\n \"name\": \"ps6569\",\r\n \"workerSize\": \"Default\",\r\n \"workerSizeId\": 0,\r\n \"workerTierName\": null,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": \"Default\",\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": \"Ready\",\r\n \"webSpace\": \"ps8564-WestUSwebspace\",\r\n \"subscription\": \"04b0639d-85d8-445a-bada-8da78e50ff30\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": \"Dedicated\",\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"maximumElasticWorkerCount\": 1,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"isSpot\": false,\r\n \"spotExpirationTime\": null,\r\n \"freeOfferExpirationTime\": null,\r\n \"tags\": null,\r\n \"kind\": \"app\",\r\n \"resourceGroup\": \"ps8564\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"mdmId\": \"waws-prod-bay-141_10814\",\r\n \"targetWorkerCount\": 0,\r\n \"targetWorkerSizeId\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"webSiteId\": null,\r\n \"existingServerFarmIds\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/serverfarms/ps6569?api-version=2018-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzODU2NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9wczY1Njk/YXBpLXZlcnNpb249MjAxOC0wMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "82c6dc85-ee3d-4d8b-8418-e009b24abc0b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1ced30e0-6239-4d53-834a-916c59d07fdf"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-correlation-request-id": [
+ "b3aca10a-3aed-40aa-bb4c-2104bbe479a6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111523Z:b3aca10a-3aed-40aa-bb4c-2104bbe479a6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:15:23 GMT"
+ ],
+ "Content-Length": [
+ "1267"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/serverfarms/ps6569\",\r\n \"name\": \"ps6569\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"serverFarmId\": 10814,\r\n \"name\": \"ps6569\",\r\n \"workerSize\": \"Default\",\r\n \"workerSizeId\": 0,\r\n \"workerTierName\": null,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": \"Default\",\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": \"Ready\",\r\n \"webSpace\": \"ps8564-WestUSwebspace\",\r\n \"subscription\": \"04b0639d-85d8-445a-bada-8da78e50ff30\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": \"Dedicated\",\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"maximumElasticWorkerCount\": 1,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"isSpot\": false,\r\n \"spotExpirationTime\": null,\r\n \"freeOfferExpirationTime\": null,\r\n \"tags\": null,\r\n \"kind\": \"app\",\r\n \"resourceGroup\": \"ps8564\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"mdmId\": \"waws-prod-bay-141_10814\",\r\n \"targetWorkerCount\": 0,\r\n \"targetWorkerSizeId\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"webSiteId\": null,\r\n \"existingServerFarmIds\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/serverfarms/ps6569?api-version=2018-02-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzODU2NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zZXJ2ZXJmYXJtcy9wczY1Njk/YXBpLXZlcnNpb249MjAxOC0wMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cce20159-3362-4b66-8827-4cec01c3a644"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b426b3b1-6882-4bff-a4bc-da8c8c1c8142"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-correlation-request-id": [
+ "2b106dd7-ebc3-4038-a5c3-ec56fd3b48a1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111524Z:2b106dd7-ebc3-4038-a5c3-ec56fd3b48a1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:15:23 GMT"
+ ],
+ "Content-Length": [
+ "1267"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/serverfarms/ps6569\",\r\n \"name\": \"ps6569\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"serverFarmId\": 10814,\r\n \"name\": \"ps6569\",\r\n \"workerSize\": \"Default\",\r\n \"workerSizeId\": 0,\r\n \"workerTierName\": null,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": \"Default\",\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": \"Ready\",\r\n \"webSpace\": \"ps8564-WestUSwebspace\",\r\n \"subscription\": \"04b0639d-85d8-445a-bada-8da78e50ff30\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"maximumNumberOfWorkers\": 10,\r\n \"planName\": \"VirtualDedicatedPlan\",\r\n \"adminRuntimeSiteName\": null,\r\n \"computeMode\": \"Dedicated\",\r\n \"siteMode\": null,\r\n \"geoRegion\": \"West US\",\r\n \"perSiteScaling\": false,\r\n \"maximumElasticWorkerCount\": 1,\r\n \"numberOfSites\": 0,\r\n \"hostingEnvironmentId\": null,\r\n \"isSpot\": false,\r\n \"spotExpirationTime\": null,\r\n \"freeOfferExpirationTime\": null,\r\n \"tags\": null,\r\n \"kind\": \"app\",\r\n \"resourceGroup\": \"ps8564\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"mdmId\": \"waws-prod-bay-141_10814\",\r\n \"targetWorkerCount\": 0,\r\n \"targetWorkerSizeId\": 0,\r\n \"provisioningState\": \"Succeeded\",\r\n \"webSiteId\": null,\r\n \"existingServerFarmIds\": null\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"S1\",\r\n \"family\": \"S\",\r\n \"capacity\": 1\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzODU2NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczQwMjA/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8dbd3859-7aac-44ad-99ff-9e46418bf4bc"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "004142c5-c43e-43e4-aefa-43120d3ba0eb"
+ ],
+ "x-ms-correlation-request-id": [
+ "004142c5-c43e-43e4-aefa-43120d3ba0eb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111523Z:004142c5-c43e-43e4-aefa-43120d3ba0eb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:15:22 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "136"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Web/sites/ps4020' under resource group 'ps8564' was not found.\"\r\n }\r\n}",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzODU2NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczQwMjA/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "42764484-caf4-4bb4-9b67-625def0fd693"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1D5F21635B5B200\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e92bc1d7-69ca-4e2e-be88-973f26beaa6b"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-correlation-request-id": [
+ "5021c81b-ee90-4611-82d0-60e41f9baea9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111548Z:5021c81b-ee90-4611-82d0-60e41f9baea9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:15:48 GMT"
+ ],
+ "Content-Length": [
+ "3043"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020\",\r\n \"name\": \"ps4020\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"name\": \"ps4020\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"ps4020.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"ps8564-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-141.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/ps8564-WestUSwebspace/sites/ps4020\",\r\n \"repositorySiteName\": \"ps4020\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"ps4020.azurewebsites.net\",\r\n \"ps4020.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"ps4020.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"ps4020.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/serverfarms/ps6569\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-03-04T11:15:28.16\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"ps4020\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"E4569F549E490AC80183BDE8A964266E059049AB15C1D6935ED19FC8F879ECC5\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"40.112.243.8\",\r\n \"possibleInboundIpAddresses\": \"40.112.243.8\",\r\n \"outboundIpAddresses\": \"40.112.243.8,52.160.87.144,52.160.81.29,40.83.173.84,52.160.87.145\",\r\n \"possibleOutboundIpAddresses\": \"40.112.243.8,52.160.87.144,52.160.81.29,40.83.173.84,52.160.87.145,52.160.69.205,40.118.207.199,52.160.67.221,52.160.67.220,52.160.67.45\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-141\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"ps8564\",\r\n \"defaultHostName\": \"ps4020.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzODU2NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczQwMjA/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9a03af95-fda9-40a9-9249-6ba5b9847e39"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1D5F21635B5B200\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b1e09ce8-5d25-4aa3-aa0c-2c8458fb8582"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-correlation-request-id": [
+ "781b3dc9-a7b7-44e0-9cd1-13f56d1843f1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111613Z:781b3dc9-a7b7-44e0-9cd1-13f56d1843f1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:16:12 GMT"
+ ],
+ "Content-Length": [
+ "3043"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020\",\r\n \"name\": \"ps4020\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"name\": \"ps4020\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"ps4020.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"ps8564-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-141.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/ps8564-WestUSwebspace/sites/ps4020\",\r\n \"repositorySiteName\": \"ps4020\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"ps4020.azurewebsites.net\",\r\n \"ps4020.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"ps4020.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"ps4020.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/serverfarms/ps6569\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-03-04T11:15:28.16\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"ps4020\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"E4569F549E490AC80183BDE8A964266E059049AB15C1D6935ED19FC8F879ECC5\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"40.112.243.8\",\r\n \"possibleInboundIpAddresses\": \"40.112.243.8\",\r\n \"outboundIpAddresses\": \"40.112.243.8,52.160.87.144,52.160.81.29,40.83.173.84,52.160.87.145\",\r\n \"possibleOutboundIpAddresses\": \"40.112.243.8,52.160.87.144,52.160.81.29,40.83.173.84,52.160.87.145,52.160.69.205,40.118.207.199,52.160.67.221,52.160.67.220,52.160.67.45\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-141\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"ps8564\",\r\n \"defaultHostName\": \"ps4020.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzODU2NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczQwMjA/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "749b59eb-75d9-423a-a4b7-78f2027e79be"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1D5F216521F8F60\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "88192e3c-d416-45b1-94e7-af5b9a4ac16b"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "x-ms-correlation-request-id": [
+ "09114992-4342-4c93-a040-d39890a12774"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111616Z:09114992-4342-4c93-a040-d39890a12774"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:16:16 GMT"
+ ],
+ "Content-Length": [
+ "3043"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020\",\r\n \"name\": \"ps4020\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"name\": \"ps4020\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"ps4020.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"ps8564-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-141.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/ps8564-WestUSwebspace/sites/ps4020\",\r\n \"repositorySiteName\": \"ps4020\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"ps4020.azurewebsites.net\",\r\n \"ps4020.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"ps4020.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"ps4020.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/serverfarms/ps6569\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-03-04T11:16:15.83\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"ps4020\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"E4569F549E490AC80183BDE8A964266E059049AB15C1D6935ED19FC8F879ECC5\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"40.112.243.8\",\r\n \"possibleInboundIpAddresses\": \"40.112.243.8\",\r\n \"outboundIpAddresses\": \"40.112.243.8,52.160.87.144,52.160.81.29,40.83.173.84,52.160.87.145\",\r\n \"possibleOutboundIpAddresses\": \"40.112.243.8,52.160.87.144,52.160.81.29,40.83.173.84,52.160.87.145,52.160.69.205,40.118.207.199,52.160.67.221,52.160.67.220,52.160.67.45\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-141\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"ps8564\",\r\n \"defaultHostName\": \"ps4020.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/ps8564?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlZ3JvdXBzL3BzODU2ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8ef82895-ee27-4052-b094-c1652cc38cb4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11980"
+ ],
+ "x-ms-request-id": [
+ "2d94cac3-e150-48fb-b9ee-5f03e7530f87"
+ ],
+ "x-ms-correlation-request-id": [
+ "2d94cac3-e150-48fb-b9ee-5f03e7530f87"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111523Z:2d94cac3-e150-48fb-b9ee-5f03e7530f87"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:15:23 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "165"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564\",\r\n \"name\": \"ps8564\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzODU2NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczQwMjA/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/serverFarms/ps6569\"\r\n },\r\n \"location\": \"West US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4e5a705b-217e-4728-bc6c-6260dad7866d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "194"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1D5F21635B5B200\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "65ed1578-ae05-4876-adc7-1d2656f9e87b"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "499"
+ ],
+ "x-ms-correlation-request-id": [
+ "017b22ef-0d51-4516-b223-03c294726713"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111546Z:017b22ef-0d51-4516-b223-03c294726713"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:15:46 GMT"
+ ],
+ "Content-Length": [
+ "3050"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020\",\r\n \"name\": \"ps4020\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"name\": \"ps4020\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"ps4020.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"ps8564-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-141.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/ps8564-WestUSwebspace/sites/ps4020\",\r\n \"repositorySiteName\": \"ps4020\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"ps4020.azurewebsites.net\",\r\n \"ps4020.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"ps4020.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"ps4020.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/serverfarms/ps6569\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-03-04T11:15:28.0833333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"ps4020\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"E4569F549E490AC80183BDE8A964266E059049AB15C1D6935ED19FC8F879ECC5\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"40.112.243.8\",\r\n \"possibleInboundIpAddresses\": \"40.112.243.8\",\r\n \"outboundIpAddresses\": \"40.112.243.8,52.160.87.144,52.160.81.29,40.83.173.84,52.160.87.145\",\r\n \"possibleOutboundIpAddresses\": \"40.112.243.8,52.160.87.144,52.160.81.29,40.83.173.84,52.160.87.145,52.160.69.205,40.118.207.199,52.160.67.221,52.160.67.220,52.160.67.45\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-141\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"ps8564\",\r\n \"defaultHostName\": \"ps4020.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/config/web?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzODU2NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczQwMjAvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "900f4e02-f9df-4f55-87f4-caf2f16a9155"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "534164b0-37bd-4b81-92cd-1d447bec3910"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-correlation-request-id": [
+ "17a66325-8116-4758-8715-abf611667049"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111546Z:17a66325-8116-4758-8715-abf611667049"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:15:46 GMT"
+ ],
+ "Content-Length": [
+ "2993"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/config/web\",\r\n \"name\": \"ps4020\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps4020\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"reservedInstanceCount\": 0,\r\n \"preWarmedInstanceCount\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/config/web?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzODU2NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczQwMjAvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "29c1019c-1acf-4ce2-9adb-6baceee1efda"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "61a326d1-ae63-4102-a229-175baed4739d"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-correlation-request-id": [
+ "20397f0d-eb34-485b-854d-1bc8d3fa6cce"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111548Z:20397f0d-eb34-485b-854d-1bc8d3fa6cce"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:15:48 GMT"
+ ],
+ "Content-Length": [
+ "2993"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/config/web\",\r\n \"name\": \"ps4020\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps4020\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"reservedInstanceCount\": 0,\r\n \"preWarmedInstanceCount\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/config/web?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzODU2NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczQwMjAvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "26e38e49-c41b-427f-b39b-ba950e6c6174"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b7aedccb-a33e-4819-a5a8-6c6456d5e028"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "x-ms-correlation-request-id": [
+ "0c28ceba-25f6-4b06-896b-2b3357da97ca"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111613Z:0c28ceba-25f6-4b06-896b-2b3357da97ca"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:16:13 GMT"
+ ],
+ "Content-Length": [
+ "2993"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/config/web\",\r\n \"name\": \"ps4020\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps4020\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"reservedInstanceCount\": 0,\r\n \"preWarmedInstanceCount\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/config/web?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzODU2NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczQwMjAvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "23d1d67d-d109-4a3b-8ded-38b509e48ec2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b0033c4e-98bb-4fe6-a5b5-d84be9372ed2"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
+ ],
+ "x-ms-correlation-request-id": [
+ "62abdb9f-4b95-4eff-9c7f-7b7847fea3bc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111616Z:62abdb9f-4b95-4eff-9c7f-7b7847fea3bc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:16:16 GMT"
+ ],
+ "Content-Length": [
+ "3463"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/config/web\",\r\n \"name\": \"ps4020\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps4020\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [\r\n {\r\n \"actionHostName\": \"ps4020-staging.azurewebsites.net\",\r\n \"reroutePercentage\": 15.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"staging\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"ps4020-staging.azurewebsites.net\",\r\n \"reroutePercentage\": 15.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"staging\"\r\n }\r\n ]\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"reservedInstanceCount\": 0,\r\n \"preWarmedInstanceCount\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/config/appsettings/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzODU2NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczQwMjAvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "65fe52b3-4d58-44f4-a4ea-4e98b7c4117c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "eebd83f9-134d-40cd-bc4b-c8480b0d677e"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "f65a0c23-8471-499c-a10b-f7411fcecc3d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111547Z:f65a0c23-8471-499c-a10b-f7411fcecc3d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:15:47 GMT"
+ ],
+ "Content-Length": [
+ "270"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"6.9.1\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/config/appsettings/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzODU2NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczQwMjAvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0bfd398d-8a23-4716-b50c-c942772617ec"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "95c816d9-6fba-4eeb-960f-21dcaee31e29"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11997"
+ ],
+ "x-ms-correlation-request-id": [
+ "6e1e2533-62ab-4db5-8d08-8022c0557f67"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111549Z:6e1e2533-62ab-4db5-8d08-8022c0557f67"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:15:49 GMT"
+ ],
+ "Content-Length": [
+ "270"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"6.9.1\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/config/appsettings/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzODU2NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczQwMjAvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6837b6e9-aa67-45cf-99aa-ccd01ac61f9e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a404bbd9-9ab7-4944-bc8e-b0e5e6d8ee0d"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11994"
+ ],
+ "x-ms-correlation-request-id": [
+ "afb92b20-5991-473e-ba8c-41e76c7cdfd5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111613Z:afb92b20-5991-473e-ba8c-41e76c7cdfd5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:16:13 GMT"
+ ],
+ "Content-Length": [
+ "270"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"6.9.1\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/config/appsettings/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzODU2NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczQwMjAvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d968522e-f12c-4b60-a3ac-194a3d49e771"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d4452504-8235-40b0-8ed6-f83ad4538521"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11991"
+ ],
+ "x-ms-correlation-request-id": [
+ "ef8a32ef-ff03-4004-a7b1-b2f1d1f92cf4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111617Z:ef8a32ef-ff03-4004-a7b1-b2f1d1f92cf4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:16:16 GMT"
+ ],
+ "Content-Length": [
+ "270"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"6.9.1\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/config/connectionstrings/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzODU2NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczQwMjAvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6be52629-9494-4eff-a814-576b8de4ea1e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "de765cde-3088-405f-8084-fab52fc50d2c"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "861cdac1-d876-454f-9389-bbacda407f73"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111547Z:861cdac1-d876-454f-9389-bbacda407f73"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:15:47 GMT"
+ ],
+ "Content-Length": [
+ "244"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/config/connectionstrings/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzODU2NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczQwMjAvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f2f7b62b-f3c6-4b24-abc2-595040551ee4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6235207c-7c48-4355-b9eb-f0a98d2024db"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11996"
+ ],
+ "x-ms-correlation-request-id": [
+ "2b485fd1-fb72-4bf6-bfd2-6951b872c023"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111549Z:2b485fd1-fb72-4bf6-bfd2-6951b872c023"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:15:49 GMT"
+ ],
+ "Content-Length": [
+ "244"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/config/connectionstrings/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzODU2NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczQwMjAvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "494eb44d-a4da-43a6-8149-71acf5978c3c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4fc9519f-2ae3-432a-9bea-512c7e17a29d"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11993"
+ ],
+ "x-ms-correlation-request-id": [
+ "39af51bd-d997-4546-ab83-e2e9ca233b7a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111614Z:39af51bd-d997-4546-ab83-e2e9ca233b7a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:16:13 GMT"
+ ],
+ "Content-Length": [
+ "244"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/config/connectionstrings/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzODU2NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczQwMjAvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "38604058-b3bc-4867-82be-24467f9ebaf4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2c904a4a-596c-4cec-ad4f-fc66dec00ae3"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11990"
+ ],
+ "x-ms-correlation-request-id": [
+ "79985493-743d-4b9c-bd51-5f9cdec6d126"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111617Z:79985493-743d-4b9c-bd51-5f9cdec6d126"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:16:17 GMT"
+ ],
+ "Content-Length": [
+ "244"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/publishxml?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzODU2NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczQwMjAvcHVibGlzaHhtbD9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"format\": \"WebDeploy\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c43723ae-d8d2-4427-8502-08f27f15d7bd"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "29"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11999"
+ ],
+ "x-ms-request-id": [
+ "94ae207c-2ecd-475c-aba7-cacdd102550e"
+ ],
+ "x-ms-correlation-request-id": [
+ "94ae207c-2ecd-475c-aba7-cacdd102550e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111548Z:94ae207c-2ecd-475c-aba7-cacdd102550e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:15:48 GMT"
+ ],
+ "Content-Length": [
+ "1496"
+ ],
+ "Content-Type": [
+ "application/xml"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/config/azurestorageaccounts/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzODU2NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczQwMjAvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "64146b28-3143-46f0-91b8-4513b74492b3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "da26900d-1d29-42e1-b474-af28e781e55d"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11995"
+ ],
+ "x-ms-correlation-request-id": [
+ "601ee098-7b74-49e0-9d75-6f17a4a72b6f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111549Z:601ee098-7b74-49e0-9d75-6f17a4a72b6f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:15:49 GMT"
+ ],
+ "Content-Length": [
+ "241"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/config/azurestorageaccounts/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzODU2NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczQwMjAvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "42d3bf9d-3cc3-4fea-adf1-20e4e40a5437"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "eb89662b-5086-4e89-85b7-9bc1891dce2b"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11992"
+ ],
+ "x-ms-correlation-request-id": [
+ "16bd029c-3c2b-48be-a258-f0fa1437055f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111614Z:16bd029c-3c2b-48be-a258-f0fa1437055f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:16:14 GMT"
+ ],
+ "Content-Length": [
+ "241"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/config/azurestorageaccounts/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzODU2NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczQwMjAvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAxOC0xMS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b2f5302c-288e-4fa5-9e15-215ac70201ce"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "079ea729-051b-4c9c-a0f5-2ffb8c78045f"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11989"
+ ],
+ "x-ms-correlation-request-id": [
+ "be341ec5-740b-41f0-b753-fa484196abda"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111617Z:be341ec5-740b-41f0-b753-fa484196abda"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:16:17 GMT"
+ ],
+ "Content-Length": [
+ "241"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/slots/staging?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzODU2NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczQwMjAvc2xvdHMvc3RhZ2luZz9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/serverfarms/ps6569\"\r\n },\r\n \"location\": \"West US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "84e2fb57-6a60-475d-a555-e423f7320889"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "194"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1D5F21635B5B200\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "bbfc4f11-7d23-4c0f-a25d-dc7d0aa5296a"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "499"
+ ],
+ "x-ms-correlation-request-id": [
+ "0ff74fab-fa2d-4cf7-a07d-ebc49a28fb31"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111611Z:0ff74fab-fa2d-4cf7-a07d-ebc49a28fb31"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:16:10 GMT"
+ ],
+ "Content-Length": [
+ "3141"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/slots/staging\",\r\n \"name\": \"ps4020/staging\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"name\": \"ps4020(staging)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"ps4020-staging.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"ps8564-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-141.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/ps8564-WestUSwebspace/sites/ps4020\",\r\n \"repositorySiteName\": \"ps4020\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"ps4020-staging.azurewebsites.net\",\r\n \"ps4020-staging.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"ps4020-staging.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"ps4020-staging.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/serverfarms/ps6569\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-03-04T11:15:53.3266667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"ps4020__a960\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"65A072ED12C02514028BE9EA2D3116323D3E26625F8661BC3139854C50BCAC41\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"40.112.243.8\",\r\n \"possibleInboundIpAddresses\": \"40.112.243.8\",\r\n \"outboundIpAddresses\": \"40.112.243.8,52.160.87.144,52.160.81.29,40.83.173.84,52.160.87.145\",\r\n \"possibleOutboundIpAddresses\": \"40.112.243.8,52.160.87.144,52.160.81.29,40.83.173.84,52.160.87.145,52.160.69.205,40.118.207.199,52.160.67.221,52.160.67.220,52.160.67.45\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-141\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"ps8564\",\r\n \"defaultHostName\": \"ps4020-staging.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/slots/staging/config/web?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzODU2NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczQwMjAvc2xvdHMvc3RhZ2luZy9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTgtMTEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9a9fd535-8e64-4199-b23a-ef453409fb24"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6a8179e5-5298-4e2c-83b4-b869cb3136a9"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-correlation-request-id": [
+ "c065af71-0944-472a-b366-c1f606887931"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111611Z:c065af71-0944-472a-b366-c1f606887931"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:16:11 GMT"
+ ],
+ "Content-Length": [
+ "3020"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/slots/staging/config/web\",\r\n \"name\": \"ps4020\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps4020__staging\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"reservedInstanceCount\": 0,\r\n \"preWarmedInstanceCount\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/slots/staging/config/appsettings/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzODU2NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczQwMjAvc2xvdHMvc3RhZ2luZy9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "34a448d7-13c0-4d0d-bc1e-019e24d1b76e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "402064c2-e1e6-41cc-b462-62902be65088"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "04dcf1f0-8e89-46bc-b34e-5cadebee2ad2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111611Z:04dcf1f0-8e89-46bc-b34e-5cadebee2ad2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:16:11 GMT"
+ ],
+ "Content-Length": [
+ "284"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/slots/staging/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"6.9.1\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/slots/staging/config/connectionstrings/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzODU2NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczQwMjAvc2xvdHMvc3RhZ2luZy9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5c39a3cd-3993-4a76-bf48-79c71f01826c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ff9849b3-9619-4226-8e9a-ba663666fb00"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11998"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-correlation-request-id": [
+ "bec2d571-c777-469e-b3f4-3344e90c3a34"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111612Z:bec2d571-c777-469e-b3f4-3344e90c3a34"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:16:11 GMT"
+ ],
+ "Content-Length": [
+ "258"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/slots/staging/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/slots/staging/config/azurestorageaccounts/list?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzODU2NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczQwMjAvc2xvdHMvc3RhZ2luZy9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8c8838f2-4d35-4650-8b96-528eb7fa3e6e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0ceb183f-5221-4411-9028-c52feb3ad123"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11997"
+ ],
+ "x-ms-correlation-request-id": [
+ "4eace237-d4b0-4990-bd8b-62b9289b5d01"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111612Z:4eace237-d4b0-4990-bd8b-62b9289b5d01"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:16:12 GMT"
+ ],
+ "Content-Length": [
+ "255"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/slots/staging/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/config/web?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzODU2NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczQwMjAvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "PATCH",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"httpLoggingEnabled\": false,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps4020\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_NODE_DEFAULT_VERSION\",\r\n \"value\": \"6.9.1\"\r\n }\r\n ],\r\n \"connectionStrings\": [],\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false\r\n }\r\n ],\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"ps4020-staging.azurewebsites.net\",\r\n \"reroutePercentage\": 15.0,\r\n \"name\": \"staging\"\r\n }\r\n ]\r\n },\r\n \"autoHealEnabled\": false,\r\n \"vnetName\": \"\",\r\n \"localMySqlEnabled\": false,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"reservedInstanceCount\": 0\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0b8d566e-cb8f-4e92-b7cf-dd7c9fde16d5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "2094"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1D5F21635B5B200\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "fb4a4f2a-fcc3-41ec-8fc9-6253a3667789"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-correlation-request-id": [
+ "dda614ce-aa9b-434b-8378-e1c58b705608"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111616Z:dda614ce-aa9b-434b-8378-e1c58b705608"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:16:15 GMT"
+ ],
+ "Content-Length": [
+ "3445"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020\",\r\n \"name\": \"ps4020\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps4020\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [\r\n {\r\n \"actionHostName\": \"ps4020-staging.azurewebsites.net\",\r\n \"reroutePercentage\": 15.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"staging\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"ps4020-staging.azurewebsites.net\",\r\n \"reroutePercentage\": 15.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"staging\"\r\n }\r\n ]\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"reservedInstanceCount\": 0,\r\n \"preWarmedInstanceCount\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020/config/web?api-version=2018-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3BzODU2NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9wczQwMjAvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDE4LTExLTAx",
+ "RequestMethod": "PATCH",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps4020\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_NODE_DEFAULT_VERSION\",\r\n \"value\": \"6.9.1\"\r\n }\r\n ],\r\n \"connectionStrings\": [],\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false\r\n }\r\n ],\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"ps4020-staging.azurewebsites.net\",\r\n \"reroutePercentage\": 20.0,\r\n \"name\": \"staging\"\r\n }\r\n ]\r\n },\r\n \"autoHealEnabled\": false,\r\n \"vnetName\": \"\",\r\n \"localMySqlEnabled\": false,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"reservedInstanceCount\": 0\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "65430f53-1610-4b89-9a24-dc72d6aecdbe"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/2.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "2135"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1D5F216521F8F60\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a48630a9-3b6b-49fc-89ea-9bfc35f35dd6"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1197"
+ ],
+ "x-ms-correlation-request-id": [
+ "e8a74953-54de-4390-a25c-f8260fba9bd3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111619Z:e8a74953-54de-4390-a25c-f8260fba9bd3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:16:18 GMT"
+ ],
+ "Content-Length": [
+ "3445"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ps8564/providers/Microsoft.Web/sites/ps4020\",\r\n \"name\": \"ps4020\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.6\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$ps4020\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [\r\n {\r\n \"actionHostName\": \"ps4020-staging.azurewebsites.net\",\r\n \"reroutePercentage\": 20.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"staging\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"ps4020-staging.azurewebsites.net\",\r\n \"reroutePercentage\": 20.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"staging\"\r\n }\r\n ]\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"reservedInstanceCount\": 0,\r\n \"preWarmedInstanceCount\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/ps8564?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlZ3JvdXBzL3BzODU2ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b4a82c6f-576e-4e0f-ba74-1bc211af66d0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14998"
+ ],
+ "x-ms-request-id": [
+ "2f3aa3f1-efc8-4d19-b8a8-3408b95dcac9"
+ ],
+ "x-ms-correlation-request-id": [
+ "2f3aa3f1-efc8-4d19-b8a8-3408b95dcac9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111626Z:2f3aa3f1-efc8-4d19-b8a8-3408b95dcac9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:16:25 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU5qUXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11979"
+ ],
+ "x-ms-request-id": [
+ "ebc6dd84-d6b8-4216-8e3c-ed0b02175491"
+ ],
+ "x-ms-correlation-request-id": [
+ "ebc6dd84-d6b8-4216-8e3c-ed0b02175491"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111641Z:ebc6dd84-d6b8-4216-8e3c-ed0b02175491"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:16:41 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU5qUXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11978"
+ ],
+ "x-ms-request-id": [
+ "85165a61-30a1-493b-8c91-8b04a78b88d9"
+ ],
+ "x-ms-correlation-request-id": [
+ "85165a61-30a1-493b-8c91-8b04a78b88d9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111656Z:85165a61-30a1-493b-8c91-8b04a78b88d9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:16:56 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU5qUXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11977"
+ ],
+ "x-ms-request-id": [
+ "5c1e3a95-06a8-4fec-95e8-db38a7dbc1d7"
+ ],
+ "x-ms-correlation-request-id": [
+ "5c1e3a95-06a8-4fec-95e8-db38a7dbc1d7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111712Z:5c1e3a95-06a8-4fec-95e8-db38a7dbc1d7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:17:11 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU5qUXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11976"
+ ],
+ "x-ms-request-id": [
+ "ae9148c6-b24f-4c37-8a6b-4651798cb2fb"
+ ],
+ "x-ms-correlation-request-id": [
+ "ae9148c6-b24f-4c37-8a6b-4651798cb2fb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111727Z:ae9148c6-b24f-4c37-8a6b-4651798cb2fb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:17:27 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU5qUXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11975"
+ ],
+ "x-ms-request-id": [
+ "3f119dd6-5df7-41ae-b5d5-08f678f799b4"
+ ],
+ "x-ms-correlation-request-id": [
+ "3f119dd6-5df7-41ae-b5d5-08f678f799b4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111743Z:3f119dd6-5df7-41ae-b5d5-08f678f799b4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:17:42 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU5qUXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11974"
+ ],
+ "x-ms-request-id": [
+ "2d3509c5-8944-4585-abdf-be9f913d417c"
+ ],
+ "x-ms-correlation-request-id": [
+ "2d3509c5-8944-4585-abdf-be9f913d417c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111758Z:2d3509c5-8944-4585-abdf-be9f913d417c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:17:58 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU5qUXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11973"
+ ],
+ "x-ms-request-id": [
+ "266428b9-75a4-4881-8b7c-12a7309f0366"
+ ],
+ "x-ms-correlation-request-id": [
+ "266428b9-75a4-4881-8b7c-12a7309f0366"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111814Z:266428b9-75a4-4881-8b7c-12a7309f0366"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:18:14 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU5qUXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11972"
+ ],
+ "x-ms-request-id": [
+ "2c812bc0-bfe3-4f05-96fa-838240aebe03"
+ ],
+ "x-ms-correlation-request-id": [
+ "2c812bc0-bfe3-4f05-96fa-838240aebe03"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111829Z:2c812bc0-bfe3-4f05-96fa-838240aebe03"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:18:29 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU5qUXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11971"
+ ],
+ "x-ms-request-id": [
+ "4543e671-5592-4ff4-9d43-2e59881c82bb"
+ ],
+ "x-ms-correlation-request-id": [
+ "4543e671-5592-4ff4-9d43-2e59881c82bb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111845Z:4543e671-5592-4ff4-9d43-2e59881c82bb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:18:44 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU5qUXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11970"
+ ],
+ "x-ms-request-id": [
+ "cd66bd2e-5ef7-4cd8-bad6-683c8980979d"
+ ],
+ "x-ms-correlation-request-id": [
+ "cd66bd2e-5ef7-4cd8-bad6-683c8980979d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111900Z:cd66bd2e-5ef7-4cd8-bad6-683c8980979d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:19:00 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU5qUXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11969"
+ ],
+ "x-ms-request-id": [
+ "7f32d530-ecec-429c-b8e1-5f36d1bf9495"
+ ],
+ "x-ms-correlation-request-id": [
+ "7f32d530-ecec-429c-b8e1-5f36d1bf9495"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111916Z:7f32d530-ecec-429c-b8e1-5f36d1bf9495"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:19:15 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU5qUXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11968"
+ ],
+ "x-ms-request-id": [
+ "53b8eaec-9df2-40af-b2f4-bb5cdf67ed6d"
+ ],
+ "x-ms-correlation-request-id": [
+ "53b8eaec-9df2-40af-b2f4-bb5cdf67ed6d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111931Z:53b8eaec-9df2-40af-b2f4-bb5cdf67ed6d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:19:31 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU5qUXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11967"
+ ],
+ "x-ms-request-id": [
+ "5ae544df-d2d0-4119-8fe5-78f43a20c91c"
+ ],
+ "x-ms-correlation-request-id": [
+ "5ae544df-d2d0-4119-8fe5-78f43a20c91c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T111947Z:5ae544df-d2d0-4119-8fe5-78f43a20c91c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:19:47 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU5qUXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11966"
+ ],
+ "x-ms-request-id": [
+ "4a27914e-c71f-4ef9-9d66-d472e63613fa"
+ ],
+ "x-ms-correlation-request-id": [
+ "4a27914e-c71f-4ef9-9d66-d472e63613fa"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112002Z:4a27914e-c71f-4ef9-9d66-d472e63613fa"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:20:02 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU5qUXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11965"
+ ],
+ "x-ms-request-id": [
+ "dca5f7a9-b395-4873-b0be-b1dee1e0cff9"
+ ],
+ "x-ms-correlation-request-id": [
+ "dca5f7a9-b395-4873-b0be-b1dee1e0cff9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112018Z:dca5f7a9-b395-4873-b0be-b1dee1e0cff9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:20:17 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg1NjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMU5qUXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.7"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11964"
+ ],
+ "x-ms-request-id": [
+ "df5cc93e-905c-4ca5-a239-347640f48572"
+ ],
+ "x-ms-correlation-request-id": [
+ "df5cc93e-905c-4ca5-a239-347640f48572"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20200304T112018Z:df5cc93e-905c-4ca5-a239-347640f48572"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 04 Mar 2020 11:20:18 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-UpdateWebAppTrafficRoutingRule": [
+ "ps8564",
+ "ps4020",
+ "ps6569"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "04b0639d-85d8-445a-bada-8da78e50ff30"
+ }
+}
\ No newline at end of file
diff --git a/src/Websites/Websites.Test/Websites.Test.csproj b/src/Websites/Websites.Test/Websites.Test.csproj
index 969e87e37b9b..3b9b3f32d83a 100644
--- a/src/Websites/Websites.Test/Websites.Test.csproj
+++ b/src/Websites/Websites.Test/Websites.Test.csproj
@@ -21,6 +21,9 @@
PreserveNewest
+
+ PreserveNewest
+
diff --git a/src/Websites/Websites/Az.Websites.psd1 b/src/Websites/Websites/Az.Websites.psd1
index f94c8369007d..bc0c0c6e04e5 100644
--- a/src/Websites/Websites/Az.Websites.psd1
+++ b/src/Websites/Websites/Az.Websites.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
-# Generated on: 3/3/2020
+# Generated on: 3/26/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '1.7.0'
+ModuleVersion = '1.8.0'
# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Microsoft.Azure.Management.Websites.dll'
@@ -100,7 +100,9 @@ CmdletsToExport = 'Get-AzAppServicePlan', 'Set-AzAppServicePlan',
'Publish-AzWebApp', 'Get-AzWebAppAccessRestrictionConfig',
'Add-AzWebAppAccessRestrictionRule',
'Remove-AzWebAppAccessRestrictionRule',
- 'Update-AzWebAppAccessRestrictionConfig'
+ 'Update-AzWebAppAccessRestrictionConfig',
+ 'Add-AzWebAppTrafficRouting', 'Remove-AzWebAppTrafficRouting',
+ 'Get-AzWebAppTrafficRouting', 'Update-AzWebAppTrafficRouting'
# Variables to export from this module
# VariablesToExport = @()
@@ -136,11 +138,11 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Added Tag parameter for ''New-AzAppServicePlan'' and ''Set-AzAppServicePlan''
-* Stop cmdlet execution if an exception is thrown when adding a custom domain to a website
-* Added support to perform operations for App Services not in the same resource group as the App Service Plan
-* Applied access restriction to WebApp/Function in different resource groups
-* Fixed issue to set custom hostnames for WebAppSlots'
+ ReleaseNotes = '* Added support for working with webapp Traffic Routing Rules via below new cmdlets
+ - ''Get-AzWebAppTrafficRouting''
+ - ''Update-AzWebAppTrafficRouting''
+ - ''Add-AzWebAppTrafficRouting''
+ - ''Remove-AzWebAppTrafficRouting'''
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/Websites/Websites/ChangeLog.md b/src/Websites/Websites/ChangeLog.md
index d2529dbd8745..d640b8917dc8 100644
--- a/src/Websites/Websites/ChangeLog.md
+++ b/src/Websites/Websites/ChangeLog.md
@@ -19,6 +19,13 @@
-->
## Upcoming Release
+## Version 1.8.0
+* Added support for working with webapp Traffic Routing Rules via below new cmdlets
+ - `Get-AzWebAppTrafficRouting`
+ - `Update-AzWebAppTrafficRouting`
+ - `Add-AzWebAppTrafficRouting`
+ - `Remove-AzWebAppTrafficRouting`
+
## Version 1.7.0
* Added Tag parameter for `New-AzAppServicePlan` and `Set-AzAppServicePlan`
* Stop cmdlet execution if an exception is thrown when adding a custom domain to a website
diff --git a/src/Websites/Websites/Cmdlets/TrafficRouting/AddAzureWebAppTrafficRoutingRule.cs b/src/Websites/Websites/Cmdlets/TrafficRouting/AddAzureWebAppTrafficRoutingRule.cs
new file mode 100644
index 000000000000..b598bd567caa
--- /dev/null
+++ b/src/Websites/Websites/Cmdlets/TrafficRouting/AddAzureWebAppTrafficRoutingRule.cs
@@ -0,0 +1,89 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+
+using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
+using Microsoft.Azure.Commands.WebApps.Models;
+using Microsoft.Azure.Commands.WebApps.Utilities;
+using Microsoft.Azure.Commands.WebApps.Validations;
+using Microsoft.Azure.Management.WebSites.Models;
+using System.Collections;
+using System.Collections.Generic;
+using System.Linq;
+using System.Management.Automation;
+
+namespace Microsoft.Azure.Commands.WebApps.Cmdlets.TrafficRouting
+{
+ ///
+ /// this commandlet will let you Add new Azure App Service Traffic Routing using ARM APIs
+ ///
+ [Cmdlet(VerbsCommon.Add, ResourceManager.Common.AzureRMConstants.AzurePrefix + "WebAppTrafficRouting", DefaultParameterSetName = RoutingParameterSet, SupportsShouldProcess = true), OutputType(typeof(RampUpRule))]
+ public class AddAzureWebAppTrafficRoutingRuleCmdlet : WebAppBaseClientCmdLet
+ {
+ private const string RoutingParameterSet = "RoutingParameterSet";
+
+ [Parameter(Mandatory = true, ParameterSetName = RoutingParameterSet)]
+ [ResourceGroupCompleter]
+ [ValidateNotNullOrEmpty]
+ public string ResourceGroupName { get; set; }
+
+ [Parameter(Mandatory = true, ParameterSetName = RoutingParameterSet)]
+ [ValidateNotNullOrEmpty]
+ public string WebAppName { get; set; }
+
+ [Parameter(ParameterSetName = RoutingParameterSet, Mandatory = true,
+ HelpMessage = "Web App RoutingRule. Example: -RoutingRule @{ActionHostName=$slot.DefaultHostName ; ReroutePercentage=$ReroutePercentage ; Name=$slotName}")]
+ [ValidateNotNullOrEmpty]
+ [ValidateStringDictionary]
+ public Hashtable RoutingRule { get; set; }
+
+ public override void ExecuteCmdlet()
+ {
+ if (!string.IsNullOrWhiteSpace(ResourceGroupName) && !string.IsNullOrWhiteSpace(WebAppName))
+ {
+ var webApp = new PSSite(WebsitesClient.GetWebApp(ResourceGroupName, WebAppName, null));
+ SiteConfig siteConfig = webApp.SiteConfig;
+ if (RoutingRule != null)
+ {
+ var routingRule = CmdletHelpers.ConvertToStringDictionary(RoutingRule);
+ RampUpRule rampUpRule = new RampUpRule();
+ foreach (var item in routingRule)
+ {
+ CmdletHelpers.SetObjectProperty(rampUpRule, item.Key, item.Value);
+ }
+ //Check for Rule existance with the given name.
+ var givenRampUpRuleObj = siteConfig.Experiments.RampUpRules.FirstOrDefault(item => item.Name == rampUpRule.Name);
+ if (givenRampUpRuleObj == null)
+ {
+ if (this.ShouldProcess(this.WebAppName, string.Format("Creating a new Routing Rule for slot '{0}' in Web Application - {1}.", rampUpRule.Name, this.WebAppName)))
+ {
+ //Add the given rule to the existing config
+ siteConfig.Experiments.RampUpRules.Add(rampUpRule);
+ // Update web app configuration
+ WebsitesClient.UpdateWebAppConfiguration(ResourceGroupName, webApp.Location, WebAppName, null, siteConfig, null, null, null);
+ //var app = WebsitesClient.GetWebApp(ResourceGroupName, WebAppName, null);
+ //WriteObject(app.SiteConfig.Experiments.RampUpRules.FirstOrDefault(rule => rule.Name == rampUpRule.Name));
+ WriteObject(rampUpRule);
+ }
+ }
+ else
+ {
+ throw new ValidationMetadataException(string.Format(Properties.Resources.AddRoutingRuleErrorMessage, rampUpRule.Name, WebAppName));
+ }
+
+ }
+ }
+ }
+ }
+}
diff --git a/src/Websites/Websites/Cmdlets/TrafficRouting/GetAzureWebAppTrafficRoutingRule.cs b/src/Websites/Websites/Cmdlets/TrafficRouting/GetAzureWebAppTrafficRoutingRule.cs
new file mode 100644
index 000000000000..4b91d4e0d96b
--- /dev/null
+++ b/src/Websites/Websites/Cmdlets/TrafficRouting/GetAzureWebAppTrafficRoutingRule.cs
@@ -0,0 +1,64 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+
+using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
+using Microsoft.Azure.Commands.WebApps.Models;
+using Microsoft.Azure.Management.WebSites.Models;
+using System.Linq;
+using System.Management.Automation;
+
+namespace Microsoft.Azure.Commands.WebApps.Cmdlets.TrafficRouting
+{
+ ///
+ /// this commandlet will let you Get the given Azure App Service Traffic Routing using ARM APIs
+ ///
+ [Cmdlet(VerbsCommon.Get, ResourceManager.Common.AzureRMConstants.AzurePrefix + "WebAppTrafficRouting", DefaultParameterSetName = RoutingParameterSet, SupportsShouldProcess = true), OutputType(typeof(RampUpRule))]
+ public class GetAzureWebAppTrafficRoutingRule : WebAppBaseClientCmdLet
+ {
+ private const string RoutingParameterSet = "RoutingParameterSet";
+
+ [Parameter(Mandatory = true, ParameterSetName = RoutingParameterSet)]
+ [ResourceGroupCompleter]
+ [ValidateNotNullOrEmpty]
+ public string ResourceGroupName { get; set; }
+
+ [Parameter(Mandatory = true, ParameterSetName = RoutingParameterSet)]
+ [ValidateNotNullOrEmpty]
+ public string WebAppName { get; set; }
+
+ [Parameter(Mandatory = true, ParameterSetName = RoutingParameterSet)]
+ [ValidateNotNullOrEmpty]
+ public string RuleName { get; set; }
+ public override void ExecuteCmdlet()
+ {
+ if (!string.IsNullOrWhiteSpace(ResourceGroupName) && !string.IsNullOrWhiteSpace(WebAppName))
+ {
+ var webApp = new PSSite(WebsitesClient.GetWebApp(ResourceGroupName, WebAppName, null));
+ SiteConfig siteConfig = webApp.SiteConfig;
+
+ //Check for Rule existance with the given name.
+ var givenRampUpRuleObj = siteConfig.Experiments.RampUpRules.FirstOrDefault(item => item.Name == RuleName);
+ if (givenRampUpRuleObj != null)
+ {
+ WriteObject(givenRampUpRuleObj);
+ }
+ else
+ {
+ throw new ValidationMetadataException(string.Format(Properties.Resources.UpdateAndGetRoutingRuleErrorMessage, RuleName, WebAppName));
+ }
+ }
+ }
+ }
+}
diff --git a/src/Websites/Websites/Cmdlets/TrafficRouting/RemoveAzureWebAppTrafficRoutingRule.cs b/src/Websites/Websites/Cmdlets/TrafficRouting/RemoveAzureWebAppTrafficRoutingRule.cs
new file mode 100644
index 000000000000..a37fcec43d76
--- /dev/null
+++ b/src/Websites/Websites/Cmdlets/TrafficRouting/RemoveAzureWebAppTrafficRoutingRule.cs
@@ -0,0 +1,78 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+
+using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
+using Microsoft.Azure.Commands.WebApps.Models;
+using Microsoft.Azure.Management.WebSites.Models;
+using System.Linq;
+using System.Management.Automation;
+
+namespace Microsoft.Azure.Commands.WebApps.Cmdlets.TrafficRouting
+{
+ ///
+ /// this commandlet will let you Remove the given Azure App Service Traffic Routing using ARM APIs
+ ///
+ [Cmdlet(VerbsCommon.Remove, ResourceManager.Common.AzureRMConstants.AzurePrefix + "WebAppTrafficRouting", DefaultParameterSetName = RoutingParameterSet, SupportsShouldProcess = true), OutputType(typeof(bool))]
+ public class RemoveAzureWebAppTrafficRoutingRuleCmdlet : WebAppBaseClientCmdLet
+ {
+ private const string RoutingParameterSet = "RoutingParameterSet";
+
+ [Parameter(Mandatory = true, ParameterSetName = RoutingParameterSet)]
+ [ResourceGroupCompleter]
+ [ValidateNotNullOrEmpty]
+ public string ResourceGroupName { get; set; }
+
+ [Parameter(Mandatory = true, ParameterSetName = RoutingParameterSet)]
+ [ValidateNotNullOrEmpty]
+ public string WebAppName { get; set; }
+
+ [Parameter(Mandatory = true, ParameterSetName = RoutingParameterSet)]
+ [ValidateNotNullOrEmpty]
+ public string RuleName { get; set; }
+
+ [Parameter(Mandatory = false, HelpMessage = "Return the Routing Rule object.")]
+ public SwitchParameter PassThru { get; set; }
+
+ public override void ExecuteCmdlet()
+ {
+ if (!string.IsNullOrWhiteSpace(ResourceGroupName) && !string.IsNullOrWhiteSpace(WebAppName))
+ {
+ var webApp = new PSSite(WebsitesClient.GetWebApp(ResourceGroupName, WebAppName, null));
+ SiteConfig siteConfig = webApp.SiteConfig;
+
+ //Check for Rule existance with the given name.
+ var givenRampUpRuleObj = siteConfig.Experiments.RampUpRules.FirstOrDefault(item => item.Name == RuleName);
+ if (givenRampUpRuleObj != null)
+ {
+ if (this.ShouldProcess(this.RuleName, string.Format("Deleting Routing Rule for slot - '{0}' from Web Application - {1}", this.RuleName, this.WebAppName)))
+ {
+ //Remove the rule
+ siteConfig.Experiments.RampUpRules.Remove(givenRampUpRuleObj);
+ // Update web app configuration
+ WebsitesClient.UpdateWebAppConfiguration(ResourceGroupName, webApp.Location, WebAppName, null, siteConfig, null, null, null);
+ if (PassThru.IsPresent)
+ {
+ WriteObject(true);
+ }
+ }
+ }
+ else
+ {
+ throw new ValidationMetadataException(string.Format(Properties.Resources.UpdateAndGetRoutingRuleErrorMessage, RuleName, WebAppName));
+ }
+ }
+ }
+ }
+}
diff --git a/src/Websites/Websites/Cmdlets/TrafficRouting/UpdateAzureWebAppTrafficRoutingRule.cs b/src/Websites/Websites/Cmdlets/TrafficRouting/UpdateAzureWebAppTrafficRoutingRule.cs
new file mode 100644
index 000000000000..53d45f665b93
--- /dev/null
+++ b/src/Websites/Websites/Cmdlets/TrafficRouting/UpdateAzureWebAppTrafficRoutingRule.cs
@@ -0,0 +1,91 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+
+using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
+using Microsoft.Azure.Commands.WebApps.Models;
+using Microsoft.Azure.Commands.WebApps.Utilities;
+using Microsoft.Azure.Commands.WebApps.Validations;
+using Microsoft.Azure.Management.WebSites.Models;
+using System;
+using System.Collections;
+using System.Collections.Generic;
+using System.Linq;
+using System.Management.Automation;
+using System.Text;
+
+namespace Microsoft.Azure.Commands.WebApps.Cmdlets.TrafficRouting
+{
+ ///
+ /// this commandlet will let you Add new Azure App Service Traffic Routing using ARM APIs
+ ///
+ [Cmdlet("Update", ResourceManager.Common.AzureRMConstants.AzurePrefix + "WebAppTrafficRouting", DefaultParameterSetName = RoutingParameterSet, SupportsShouldProcess = true), OutputType(typeof(RampUpRule))]
+ public class UpdateAzureWebAppTrafficRoutingRuleCmdlet : WebAppBaseClientCmdLet
+ {
+ private const string RoutingParameterSet = "RoutingParameterSet";
+
+ [Parameter(Mandatory = true, ParameterSetName = RoutingParameterSet)]
+ [ResourceGroupCompleter]
+ [ValidateNotNullOrEmpty]
+ public string ResourceGroupName { get; set; }
+
+ [Parameter(Mandatory = true, ParameterSetName = RoutingParameterSet)]
+ [ValidateNotNullOrEmpty]
+ public string WebAppName { get; set; }
+
+ [Parameter(ParameterSetName = RoutingParameterSet, Mandatory = true,
+ HelpMessage = "Web App RoutingRule. Example: -RoutingRule @{ActionHostName=$slot.DefaultHostName ; ReroutePercentage=$ReroutePercentage ; Name=$slotName}")]
+ [ValidateNotNullOrEmpty]
+ [ValidateStringDictionary]
+ public Hashtable RoutingRule { get; set; }
+
+ public override void ExecuteCmdlet()
+ {
+ if (!string.IsNullOrWhiteSpace(ResourceGroupName) && !string.IsNullOrWhiteSpace(WebAppName))
+ {
+ var webApp = new PSSite(WebsitesClient.GetWebApp(ResourceGroupName, WebAppName, null));
+ SiteConfig siteConfig = webApp.SiteConfig;
+ if (RoutingRule != null)
+ {
+ var routingRule = CmdletHelpers.ConvertToStringDictionary(RoutingRule);
+ RampUpRule rampUpRule = new RampUpRule();
+ foreach (var item in routingRule)
+ {
+ CmdletHelpers.SetObjectProperty(rampUpRule, item.Key, item.Value);
+ }
+ //Check for Rule existance with the given name.
+ var givenRampUpRuleObj = siteConfig.Experiments.RampUpRules.FirstOrDefault(item => item.Name == rampUpRule.Name);
+ if (givenRampUpRuleObj != null)
+ {
+ if (this.ShouldProcess(this.WebAppName, string.Format("Updating the Routing Rule for slot - '{0}' in Web Application - {1}.", rampUpRule.Name, this.WebAppName)))
+ {
+ //Remove previous rule
+ siteConfig.Experiments.RampUpRules.Remove(givenRampUpRuleObj);
+ //Add the updated rule
+ siteConfig.Experiments.RampUpRules.Add(rampUpRule);
+ // Update web app configuration
+ WebsitesClient.UpdateWebAppConfiguration(ResourceGroupName, webApp.Location, WebAppName, null, siteConfig, null, null, null);
+ WriteObject(rampUpRule);
+ }
+ }
+ else
+ {
+ throw new ValidationMetadataException(string.Format(Properties.Resources.UpdateAndGetRoutingRuleErrorMessage, rampUpRule.Name, WebAppName));
+ }
+
+ }
+ }
+ }
+ }
+}
diff --git a/src/Websites/Websites/Properties/AssemblyInfo.cs b/src/Websites/Websites/Properties/AssemblyInfo.cs
index 9cdffa56a175..ca836b3f03c5 100644
--- a/src/Websites/Websites/Properties/AssemblyInfo.cs
+++ b/src/Websites/Websites/Properties/AssemblyInfo.cs
@@ -25,8 +25,8 @@
[assembly: ComVisible(false)]
[assembly: CLSCompliant(false)]
[assembly: Guid("76158def-441b-472a-9b1a-a75726a813f4")]
-[assembly: AssemblyVersion("1.7.0")]
-[assembly: AssemblyFileVersion("1.7.0")]
+[assembly: AssemblyVersion("1.8.0")]
+[assembly: AssemblyFileVersion("1.8.0")]
#if !SIGN
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Websites.Test")]
#endif
diff --git a/src/Websites/Websites/Properties/Resources.Designer.cs b/src/Websites/Websites/Properties/Resources.Designer.cs
index f87afb10d42d..96df6e8ae4dc 100644
--- a/src/Websites/Websites/Properties/Resources.Designer.cs
+++ b/src/Websites/Websites/Properties/Resources.Designer.cs
@@ -60,6 +60,15 @@ internal Resources() {
}
}
+ ///
+ /// Looks up a localized string similar to "A Routing Rule with name '{0}' in WebApp '{1}' already exists.Please use Update-AzWebAppTrafficRouting to update an existing Routing Rule.".
+ ///
+ internal static string AddRoutingRuleErrorMessage {
+ get {
+ return ResourceManager.GetString("AddRoutingRuleErrorMessage", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Creating a new remote PowerShell session. Confirm?.
///
@@ -230,5 +239,14 @@ internal static string SimpleWebAppCreateTarget {
return ResourceManager.GetString("SimpleWebAppCreateTarget", resourceCulture);
}
}
+
+ ///
+ /// Looks up a localized string similar to "Given Routing Rule with name '{0}' in WebApp '{1}' is not present.Please use a valid Name to remove ".
+ ///
+ internal static string UpdateAndGetRoutingRuleErrorMessage {
+ get {
+ return ResourceManager.GetString("UpdateAndGetRoutingRuleErrorMessage", resourceCulture);
+ }
+ }
}
}
diff --git a/src/Websites/Websites/Properties/Resources.resx b/src/Websites/Websites/Properties/Resources.resx
index 1d163486f78e..65320bc9a20f 100644
--- a/src/Websites/Websites/Properties/Resources.resx
+++ b/src/Websites/Websites/Properties/Resources.resx
@@ -179,4 +179,12 @@
Remote Powershell sessions into Windows Containers on App Service from this version of PowerShell is not supported.
+
+ "A Routing Rule with name '{0}' in WebApp '{1}' already exists.Please use Update-AzWebAppTrafficRouting to update an existing Routing Rule."
+ {0}=RuleName,{1}=WebAppName
+
+
+ "Given Routing Rule with name '{0}' in WebApp '{1}' is not present.Please use a valid Name to remove "
+ {0}=RuleName,{1}=WebAppName
+
\ No newline at end of file
diff --git a/src/Websites/Websites/Utilities/CmdletHelpers.cs b/src/Websites/Websites/Utilities/CmdletHelpers.cs
index 613f69b29fda..b110b6d638d3 100644
--- a/src/Websites/Websites/Utilities/CmdletHelpers.cs
+++ b/src/Websites/Websites/Utilities/CmdletHelpers.cs
@@ -10,6 +10,7 @@
using System.Collections;
using System.Collections.Generic;
using System.Linq;
+using System.Reflection;
using System.Text.RegularExpressions;
namespace Microsoft.Azure.Commands.WebApps.Utilities
@@ -615,5 +616,36 @@ internal static string GetSubnetResourceGroupName(IAzureContext context, string
}
return null;
}
+
+ //To set a Value to Property of a Generic Type object
+ internal static void SetObjectProperty(object inputObject, string propertyName, object propertyVal)
+ {
+ //find out the type
+ Type type = inputObject.GetType();
+
+ //get the property information based on the type
+ PropertyInfo propertyInfo = type.GetProperty(propertyName);
+
+ //find the property type
+ Type propertyType = propertyInfo.PropertyType;
+
+ //Convert.ChangeType does not handle conversion to nullable types
+ //if the property type is nullable, we need to get the underlying type of the property
+ var targetType = IsNullableType(propertyType) ? Nullable.GetUnderlyingType(propertyType) : propertyType;
+
+ //Returns an System.Object with the specified System.Type and whose value is
+ //equivalent to the specified object.
+ propertyVal = Convert.ChangeType(propertyVal, targetType);
+
+ //Set the value of the property
+ propertyInfo.SetValue(inputObject, propertyVal, null);
+ }
+
+ //To check the property IsNullableType
+ private static bool IsNullableType(Type type)
+ {
+ return type.IsGenericType && type.GetGenericTypeDefinition().Equals(typeof(Nullable<>));
+ }
+
}
}
diff --git a/src/Websites/Websites/Websites.csproj b/src/Websites/Websites/Websites.csproj
index 994466a637ff..101d911e37d4 100644
--- a/src/Websites/Websites/Websites.csproj
+++ b/src/Websites/Websites/Websites.csproj
@@ -15,6 +15,21 @@
+
+
+ True
+ True
+ Resources.resx
+
+
+
+
+
+ ResXFileCodeGenerator
+ Resources.Designer.cs
+
+
+
diff --git a/src/Websites/Websites/help/Add-AzWebAppTrafficRouting.md b/src/Websites/Websites/help/Add-AzWebAppTrafficRouting.md
new file mode 100644
index 000000000000..97aa35e03d70
--- /dev/null
+++ b/src/Websites/Websites/help/Add-AzWebAppTrafficRouting.md
@@ -0,0 +1,153 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.Websites.dll-Help.xml
+Module Name: Az.Websites
+schema: 2.0.0
+---
+
+# Add-AzWebAppTrafficRouting
+
+## SYNOPSIS
+Add a routing Rule to the Slot.
+
+## SYNTAX
+
+```
+Add-AzWebAppTrafficRouting -ResourceGroupName -WebAppName -RoutingRule
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+## DESCRIPTION
+The **Add-AzWebAppTrafficRouting** cmdlet adds a Routing rule to an Azure Web App Slot.
+
+## EXAMPLES
+
+### Example 1 Add a routing rule to transfer 15% of production traffice to Stg slot
+```powershell
+PS C:\>Add-AzWebAppTrafficRouting -ResourceGroupName "Default-Web-WestUS" -WebAppName "ContosoSite"
+- RoutingRule @{AtionHostName='XXXX.azurewebsites.net';ReroutePercentage=15;Name='Stg'}
+```
+
+This command adds a routing rule to transfer 15% of production traffice to Stg slot
+
+### Example 2 Add a routing rule to transfer the production traffice to Stg slot ranges from 50% to 90% in incremental manner.
+```powershell
+PS C:\>Add-AzWebAppTrafficRouting -ResourceGroupName "Default-Web-WestUS" -WebAppName "ContosoSite"
+-RoutingRule @{ActionHostName='XXXX.azurewebsites.net';ReroutePercentage=50;ChangeIntervalInMinutes=1;
+MinReroutePercentage=50;MaxReroutePercentage=90;Name='Stg';ChangeStep=10}
+```
+
+This command adds a routing rule to transfer the production traffice to Stg slot ranges from 50% to 90% in incremental manner.
+
+## PARAMETERS
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -ResourceGroupName
+Resource Group Name
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -RoutingRule
+Web App RoutingRule.
+Example: -RoutingRule @{ActionHostName=$slot.DefaultHostName ; ReroutePercentage=$ReroutePercentage ; Name=$slotName}
+
+```yaml
+Type: System.Collections.Hashtable
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -WebAppName
+WebApp Name
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Confirm
+Prompts you for confirmation before running the cmdlet.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -WhatIf
+Shows what would happen if the cmdlet runs.
+The cmdlet is not run.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
+
+## INPUTS
+
+### None
+
+## OUTPUTS
+
+### Microsoft.Azure.Management.WebSites.Models.RampUpRule
+
+## NOTES
+
+## RELATED LINKS
+[Update-AzWebAppTrafficRouting](./Update-AzWebAppTrafficRouting.md)
+
+[Get-AzWebAppTrafficRouting](./Get-AzWebAppTrafficRouting.md)
+
+[Remove-AzWebAppTrafficRouting](./Remove-AzWebAppTrafficRouting.md)
\ No newline at end of file
diff --git a/src/Websites/Websites/help/Get-AzWebAppTrafficRouting.md b/src/Websites/Websites/help/Get-AzWebAppTrafficRouting.md
new file mode 100644
index 000000000000..80d9091ee9ac
--- /dev/null
+++ b/src/Websites/Websites/help/Get-AzWebAppTrafficRouting.md
@@ -0,0 +1,111 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.Websites.dll-Help.xml
+Module Name: Az.Websites
+schema: 2.0.0
+---
+
+# Get-AzWebAppTrafficRouting
+
+## SYNOPSIS
+Get a routing Rule for the given Slot name.
+
+## SYNTAX
+
+```
+Get-AzWebAppTrafficRouting -ResourceGroupName -WebAppName -RuleName
+ [-DefaultProfile ] []
+```
+
+## DESCRIPTION
+The **Get-AzWebAppTrafficRouting** cmdlet Gets a routing rule configuration from an Azure Web App Slot.
+
+## EXAMPLES
+
+### Example 1 Gets the specific routing rule from webapp slot
+```powershell
+PS C:\> Get-AzWebAppTrafficRouting -ResourceGroupName "Default-Web-WestUS" -WebAppName "ContosoSite" -RuleName 'Stg'
+```
+
+This command gets a routing rule for a given webapp slot.
+
+## PARAMETERS
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -ResourceGroupName
+Resource Group Name
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -RuleName
+Rule Name
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -WebAppName
+WebApp Name
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
+
+## INPUTS
+
+### None
+
+## OUTPUTS
+
+### Microsoft.Azure.Management.WebSites.Models.RampUpRule
+
+## NOTES
+
+## RELATED LINKS
+
+[Update-AzWebAppTrafficRouting](./Update-AzWebAppTrafficRouting.md)
+
+[Add-AzWebAppTrafficRouting](./Add-AzWebAppTrafficRouting.md)
+
+[Remove-AzWebAppTrafficRouting](./Remove-AzWebAppTrafficRouting.md)
diff --git a/src/Websites/Websites/help/Remove-AzWebAppTrafficRouting.md b/src/Websites/Websites/help/Remove-AzWebAppTrafficRouting.md
new file mode 100644
index 000000000000..36350ae6a4fb
--- /dev/null
+++ b/src/Websites/Websites/help/Remove-AzWebAppTrafficRouting.md
@@ -0,0 +1,157 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.Websites.dll-Help.xml
+Module Name: Az.Websites
+schema: 2.0.0
+---
+
+# Remove-AzWebAppTrafficRouting
+
+## SYNOPSIS
+Remove a routing Rule from the Slot.
+
+## SYNTAX
+
+```
+Remove-AzWebAppTrafficRouting -ResourceGroupName -WebAppName -RuleName
+ [-DefaultProfile ] [-PassThru] [-WhatIf] [-Confirm] []
+```
+
+## DESCRIPTION
+The **Remove-AzWebAppTrafficRouting** cmdlet removes a routing rule from an Azure Web App Slot.
+
+## EXAMPLES
+
+### Example 1 Removes the specific routing rule from webapp slot
+```powershell
+PS C:\> Remove-AzWebAppTrafficRouting -ResourceGroupName "Default-Web-WestUS" -WebAppName "ContosoSite" -RuleName 'Stg'
+```
+
+This command removes a routing rule for a given webapp slot.
+
+## PARAMETERS
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -ResourceGroupName
+Resource Group Name
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -RuleName
+Rule Name
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -WebAppName
+WebApp Name
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -PassThru
+Return the access restriction config object.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Confirm
+Prompts you for confirmation before running the cmdlet.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -WhatIf
+Shows what would happen if the cmdlet runs.
+The cmdlet is not run.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
+
+## INPUTS
+
+### None
+
+## OUTPUTS
+
+### Microsoft.Azure.Management.WebSites.Models.RampUpRule
+
+## NOTES
+
+## RELATED LINKS
+[Add-AzWebAppTrafficRouting](./Add-AzWebAppTrafficRouting.md)
+
+[Get-AzWebAppTrafficRouting](./Get-AzWebAppTrafficRouting.md)
+
+[Update-AzWebAppTrafficRouting](./Update-AzWebAppTrafficRouting.md)
\ No newline at end of file
diff --git a/src/Websites/Websites/help/Update-AzWebAppTrafficRouting.md b/src/Websites/Websites/help/Update-AzWebAppTrafficRouting.md
new file mode 100644
index 000000000000..ec9e6a39224e
--- /dev/null
+++ b/src/Websites/Websites/help/Update-AzWebAppTrafficRouting.md
@@ -0,0 +1,153 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.Websites.dll-Help.xml
+Module Name: Az.Websites
+schema: 2.0.0
+---
+
+# Update-AzWebAppTrafficRouting
+
+## SYNOPSIS
+Update a routing Rule to the Slot.
+
+## SYNTAX
+
+```
+Update-AzWebAppTrafficRouting -ResourceGroupName -WebAppName -RoutingRule
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+## DESCRIPTION
+The **Update-AzWebAppTrafficRouting** cmdlet updates the routing rule configuration for an Azure Web App Slot.
+
+## EXAMPLES
+
+### Example 1 Update a routing rule to transfer 15% of production traffice to Stg slot
+```powershell
+PS C:\>Update-AzWebAppTrafficRouting -ResourceGroupName "Default-Web-WestUS" -WebAppName "ContosoSite"
+- RoutingRule @{AtionHostName='XXXX.azurewebsites.net';ReroutePercentage=15;Name='Stg'}
+```
+
+This command updates a routing rule to transfer 15% of production traffic to Stg slot.
+
+### Example 2 Update a routing rule to transfer the production traffice to Stg slot ranges from 50% to 90% in incremental manner.
+```powershell
+PS C:\>Update-AzWebAppTrafficRouting -ResourceGroupName "Default-Web-WestUS" -WebAppName "ContosoSite"
+-RoutingRule @{ActionHostName='XXXX.azurewebsites.net';ReroutePercentage=50;ChangeIntervalInMinutes=1;
+MinReroutePercentage=50;MaxReroutePercentage=90;Name='Stg';ChangeStep=10}
+```
+
+This command Updates a routing rule to transfer the production traffice to Stg slot ranges from 50% to 90% in incremental manner.
+
+## PARAMETERS
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -ResourceGroupName
+ResourceGroupName
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -RoutingRule
+Web App RoutingRule.
+Example: -RoutingRule @{ActionHostName=$slot.DefaultHostName ; ReroutePercentage=$ReroutePercentage ; Name=$slotName}
+
+```yaml
+Type: System.Collections.Hashtable
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -WebAppName
+WebApp Name
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Confirm
+Prompts you for confirmation before running the cmdlet.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -WhatIf
+Shows what would happen if the cmdlet runs.
+The cmdlet is not run.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
+
+## INPUTS
+
+### None
+
+## OUTPUTS
+
+### Microsoft.Azure.Management.WebSites.Models.RampUpRule
+
+## NOTES
+
+## RELATED LINKS
+
+[Add-AzWebAppTrafficRouting](./Add-AzWebAppTrafficRouting.md)
+
+[Get-AzWebAppTrafficRouting](./Get-AzWebAppTrafficRouting.md)
+
+[Remove-AzWebAppTrafficRouting](./Remove-AzWebAppTrafficRouting.md)
\ No newline at end of file
diff --git a/tools/Az/Az.psd1 b/tools/Az/Az.psd1
index 79ca5b0d4506..fa46e17acd32 100644
--- a/tools/Az/Az.psd1
+++ b/tools/Az/Az.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
-# Generated on: 3/5/2020
+# Generated on: 3/26/2020
#
@{
@@ -12,7 +12,7 @@
# RootModule = ''
# Version number of this module.
-ModuleVersion = '3.6.1'
+ModuleVersion = '3.7.0'
# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'
@@ -52,7 +52,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; },
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.4'; },
@{ModuleName = 'Az.Advisor'; RequiredVersion = '1.1.1'; },
@{ModuleName = 'Az.Aks'; RequiredVersion = '1.0.3'; },
@{ModuleName = 'Az.AnalysisServices'; RequiredVersion = '1.1.2'; },
@@ -63,49 +63,50 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.7.3'; },
@{ModuleName = 'Az.Billing'; RequiredVersion = '1.0.2'; },
@{ModuleName = 'Az.Cdn'; RequiredVersion = '1.4.2'; },
@{ModuleName = 'Az.CognitiveServices'; RequiredVersion = '1.2.3'; },
- @{ModuleName = 'Az.Compute'; RequiredVersion = '3.5.0'; },
+ @{ModuleName = 'Az.Compute'; RequiredVersion = '3.6.0'; },
@{ModuleName = 'Az.ContainerInstance'; RequiredVersion = '1.0.3'; },
@{ModuleName = 'Az.ContainerRegistry'; RequiredVersion = '1.1.1'; },
@{ModuleName = 'Az.DataBoxEdge'; RequiredVersion = '1.1.0'; },
- @{ModuleName = 'Az.DataFactory'; RequiredVersion = '1.6.1'; },
+ @{ModuleName = 'Az.DataFactory'; RequiredVersion = '1.7.0'; },
@{ModuleName = 'Az.DataLakeAnalytics'; RequiredVersion = '1.0.2'; },
- @{ModuleName = 'Az.DataLakeStore'; RequiredVersion = '1.2.7'; },
+ @{ModuleName = 'Az.DataLakeStore'; RequiredVersion = '1.2.8'; },
@{ModuleName = 'Az.DeploymentManager'; RequiredVersion = '1.1.0'; },
@{ModuleName = 'Az.DevTestLabs'; RequiredVersion = '1.0.2'; },
@{ModuleName = 'Az.Dns'; RequiredVersion = '1.1.2'; },
@{ModuleName = 'Az.EventGrid'; RequiredVersion = '1.2.3'; },
@{ModuleName = 'Az.EventHub'; RequiredVersion = '1.4.3'; },
@{ModuleName = 'Az.FrontDoor'; RequiredVersion = '1.4.0'; },
- @{ModuleName = 'Az.HDInsight'; RequiredVersion = '3.0.3'; },
+ @{ModuleName = 'Az.HDInsight'; RequiredVersion = '3.1.0'; },
@{ModuleName = 'Az.HealthcareApis'; RequiredVersion = '1.0.1'; },
- @{ModuleName = 'Az.IotHub'; RequiredVersion = '2.2.0'; },
- @{ModuleName = 'Az.KeyVault'; RequiredVersion = '1.5.1'; },
+ @{ModuleName = 'Az.IotHub'; RequiredVersion = '2.3.0'; },
+ @{ModuleName = 'Az.KeyVault'; RequiredVersion = '1.5.2'; },
@{ModuleName = 'Az.LogicApp'; RequiredVersion = '1.3.2'; },
@{ModuleName = 'Az.MachineLearning'; RequiredVersion = '1.1.3'; },
@{ModuleName = 'Az.ManagedServices'; RequiredVersion = '1.0.2'; },
@{ModuleName = 'Az.MarketplaceOrdering'; RequiredVersion = '1.0.2'; },
@{ModuleName = 'Az.Media'; RequiredVersion = '1.1.1'; },
- @{ModuleName = 'Az.Monitor'; RequiredVersion = '1.6.1'; },
- @{ModuleName = 'Az.Network'; RequiredVersion = '2.3.2'; },
+ @{ModuleName = 'Az.Monitor'; RequiredVersion = '1.6.2'; },
+ @{ModuleName = 'Az.Network'; RequiredVersion = '2.4.0'; },
@{ModuleName = 'Az.NotificationHubs'; RequiredVersion = '1.1.1'; },
@{ModuleName = 'Az.OperationalInsights'; RequiredVersion = '1.3.4'; },
- @{ModuleName = 'Az.PolicyInsights'; RequiredVersion = '1.2.0'; },
+ @{ModuleName = 'Az.PolicyInsights'; RequiredVersion = '1.2.1'; },
@{ModuleName = 'Az.PowerBIEmbedded'; RequiredVersion = '1.1.1'; },
@{ModuleName = 'Az.PrivateDns'; RequiredVersion = '1.0.2'; },
- @{ModuleName = 'Az.RecoveryServices'; RequiredVersion = '2.7.0'; },
+ @{ModuleName = 'Az.RecoveryServices'; RequiredVersion = '2.8.0'; },
@{ModuleName = 'Az.RedisCache'; RequiredVersion = '1.2.1'; },
@{ModuleName = 'Az.Relay'; RequiredVersion = '1.0.3'; },
- @{ModuleName = 'Az.Resources'; RequiredVersion = '1.12.0'; },
+ @{ModuleName = 'Az.Resources'; RequiredVersion = '1.13.0'; },
@{ModuleName = 'Az.ServiceBus'; RequiredVersion = '1.4.1'; },
@{ModuleName = 'Az.ServiceFabric'; RequiredVersion = '2.0.1'; },
@{ModuleName = 'Az.SignalR'; RequiredVersion = '1.1.1'; },
- @{ModuleName = 'Az.Sql'; RequiredVersion = '2.4.0'; },
+ @{ModuleName = 'Az.Sql'; RequiredVersion = '2.5.0'; },
@{ModuleName = 'Az.SqlVirtualMachine'; RequiredVersion = '1.1.0'; },
@{ModuleName = 'Az.Storage'; RequiredVersion = '1.13.0'; },
@{ModuleName = 'Az.StorageSync'; RequiredVersion = '1.2.3'; },
@{ModuleName = 'Az.StreamAnalytics'; RequiredVersion = '1.0.1'; },
+ @{ModuleName = 'Az.Support'; RequiredVersion = '1.0.0'; },
@{ModuleName = 'Az.TrafficManager'; RequiredVersion = '1.0.3'; },
- @{ModuleName = 'Az.Websites'; RequiredVersion = '1.7.0'; })
+ @{ModuleName = 'Az.Websites'; RequiredVersion = '1.8.0'; })
# Assemblies that must be loaded prior to importing this module
# RequiredAssemblies = @()
@@ -161,88 +162,86 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '3.6.1 - March 2020
+ ReleaseNotes = '3.7.0 - March 2020
Az.Accounts
-* Open Azure PowerShell survey page in ''Send-Feedback'' [#11020]
-* Display Azure PowerShell survey URL in ''Resolve-Error'' [#11021]
-* Added Az version in UserAgent
-
-Az.ApiManagement
-* Added support for retrieving and configuring Custom Domain on the DeveloperPortal Endpoint [#11007]
-* ''Export-AzApiManagementApi'' Added support for downloading Api Definition in Json format [#9987]
-* ''Import-AzApiManagementApi'' Added support for importing OpenApi 3.0 definition from Json document
-* ''New-AzApiManagementIdentityProvider'' and ''Set-AzApiManagementIdentityProvider'' Added support for configuring ''Signin Tenant'' for AAD B2C Provider [#9784]
+* Fixed ''Get-AzTenant''/''Get-AzDefault''/''Set-AzDefault'' throw NullReferenceException when not login [#10292]
+
+Az.Compute
+* Added the following parameters to ''New-AzDiskConfig'' cmdlet:
+ - DiskIOPSReadOnly, DiskMBpsReadOnly, MaxSharesCount, GalleryImageReference
+* Allowed Encryption property to Target parameter of ''New-AzGalleryImageVersion'' cmdlet.
+* Fixed tempDisk issue for ''Set-AzVmss'' -Reimage and ''Invoke-AzVMReimage'' cmdlets. [#11354]
+* Added support to below cmdlets for new SAP Extension
+ - ''Set-AzVMAEMExtension''
+ - ''Get-AzVMAEMExtension''
+ - ''Remove-AzVMAEMExtension''
+ - ''Update-AzVMAEMExtension''
+* Fixed errors in examples of help document
+* Showed the exact string value for VM PowerState in the table format.
+* ''New-AzVmssConfig'': fixed serialization of AutomaticRepairs property when SinglePlacementGroup is disabled. [#11257]
+
+Az.DataFactory
+* Updated ADF .Net SDK version to 4.8.0
+* Added optional parameters to ''Invoke-AzDataFactoryV2Pipeline'' command to support rerun
Az.DataLakeStore
-* Added reference to System.Buffers explicitly in csproj and psd1.
+* Added breaking change description for ''Export-AzDataLakeStoreItem'' and ''Import-AzDataLakeStoreItem''
+* Added option of Byte encoding for ''New-AzDataLakeStoreItem'', ''Add-AzDAtaLakeStoreItemContent'', and ''Get-AzDAtaLakeStoreItemContent''
+
+Az.HDInsight
+* Supported specifying minimal supported TLS version when creating cluster.
Az.IotHub
-* Added support to manage devices in an Iot Hub. New Cmdlets are:
- - ''Add-AzIotHubDevice''
- - ''Get-AzIotHubDevice''
- - ''Remove-AzIotHubDevice''
- - ''Set-AzIotHubDevice''
-* Added support to manage modules on a target Iot device in an Iot Hub. New Cmdlets are:
- - ''Add-AzIotHubModule''
- - ''Get-AzIotHubModule''
- - ''Remove-AzIotHubModule''
- - ''Set-AzIotHubModule''
-* Added cmdlet to get the connection string of a target IoT device in an Iot Hub.
-* Added cmdlet to get the connection string of a module on a target IoT device in an Iot Hub.
-* Added support to get/set parent device of an IoT device. New Cmdlets are:
- - ''Get-AzIotHubDeviceParent''
- - ''Set-AzIotHubDeviceParent''
-* Added support to manage device parent-child relationship.
+* Added support to manage distributed settings per-device. New Cmdlets are:
+ - ''Get-AzIotHubDistributedTracing''
+ - ''Set-AzIotHubDistributedTracing''
+
+Az.KeyVault
+* Added breaking change attributes to ''New-AzKeyVault''
Az.Monitor
-* Fixed output value for ''Get-AzMetricDefinition'' [#9714]
+* Updated documentation for ''New-AzScheduledQueryRuleLogMetricTrigger''
Az.Network
-* Updated Sql Management SDK.
-* Fixed a naming-difference issue in PrivateLinkServiceConnectionState class.
- - Mapping the field ActionsRequired to ActionRequired.
-* Added PublicNetworkAccess to ''New-AzSqlServer'' and ''Set-AzSqlServer''
+* Updated cmdlets to allow cross-tenant VirtualHubVnetConnections
+ - ''New-AzVirtualHubVnetConnection''
+ - ''Update-AzVirtualHubVnetConnection''
+ - ''New-AzVirtualHub''
+ - ''Update-AzVirtualHub''
+* Removed Sql Management SDK dependency
+
+Az.PolicyInsights
+* Improved error messages
+
+Az.RecoveryServices
+* Azure Site Recovery added support for doing reprotect and updated vm properties for Azure disk encrypted Virtual Machines.
+* Added Azure Site Recovery VmwareToAzure properties DR monitoring
+* Azure Backup added support for retrying policy update for failed items.
+* Azure Backup Added support for disk exclusion settings during backup and restore.
+* Azure Backup Added Support for Restoring Multiple files/folders in AzureFileShare
+* Azure Backup Added support for User-specified Resourcegroup support while updating IaasVM Policy
Az.Resources
-* Fixed for null reference bug in ''Get-AzRoleAssignment''
-* Marked switch ''-Force'' and ''-PassThru'' optional in ''Remove-AzADGroup'' [#10849]
-* Fixed issue that ''MailNickname'' doesn''t return in ''Remove-AzADGroup'' [#11167]
-* Fixed issue that ''Remove-AzADGroup'' pipe operation doesn''t work [#11171]
-* Fixed for null reference bug in GetAzureRoleAssignmentCommand
-* Added breaking change attributes for upcoming changes to policy cmdlets
-* Updated ''Get-AzResourceGroup'' to perform resource group tag filtering on server-side
-* Extended Tag cmdlets to accept -ResourceId
- - Get-AzTag -ResourceId
- - New-AzTag -ResourceId
- - Remove-AzTag -ResourceId
-* Added new Tag cmdlet
- - Update-AzTag -ResourceId
-* Brought ScopedDeployment from SDK 3.3.0
+* Fixed ''Get-AzResource -ResourceGroupName -Name -ExpandProperties -ResourceType'' to use actual apiVersion of resources instead of default apiVersion [#11267]
+* Added correlationId logging for error scenarios
+* Small documentation change to ''Get-AzResourceLock''. Added example.
+* Escaped single quote in parameter value of ''Get-AzADUser'' [#11317]
+* Added new cmdlets for Deployment Scripts (''Get-AzDeploymentScript'', ''Get-AzDeploymentScriptLog'', ''Save-AzDeploymentScriptLog'', ''Remove-AzDeploymentScript'')
Az.Sql
-* Added PublicNetworkAccess to ''New-AzSqlServer'' and ''Set-AzSqlServer''
-* Added support for Long Term Retention backup configuration for Managed Databases
- - Get/Set LTR policy on a managed database
- - Get LTR backup(s) by managed database, managed instance, or by location
- - Remove an LTR backup
- - Restore an LTR backup to create a new managed database
-* Added MinimalTlsVersion to ''New-AzSqlServer'' and ''Set-AzSqlServer''
-* Added MinimalTlsVersion to ''New-AzSqlInstance'' and ''Set-AzSqlInstance''
-* Bumped SQL SDK version for Az.Network
-
-Az.Storage
-* Supported AllowProtectedAppendWrite in ImmutabilityPolicy
- - ''Set-AzRmStorageContainerImmutabilityPolicy''
-* Added breaking change warning message for AzureStorageTable type change in a future release
- - ''New-AzStorageTable''
- - ''Get-AzStorageTable''
+* Added readable secondary parameter to ''Invoke-AzSqlDatabaseFailover''
+* Added cmdlet ''Disable-AzSqlServerActiveDirectoryOnlyAuthentication''
+* Saved sensitivity rank when classifying columns in the database.
+
+Az.Support
+* General availability of ''Az.Support'' module
Az.Websites
-* Added Tag parameter for ''New-AzAppServicePlan'' and ''Set-AzAppServicePlan''
-* Stop cmdlet execution if an exception is thrown when adding a custom domain to a website
-* Added support to perform operations for App Services not in the same resource group as the App Service Plan
-* Applied access restriction to WebApp/Function in different resource groups
-* Fixed issue to set custom hostnames for WebAppSlots
+* Added support for working with webapp Traffic Routing Rules via below new cmdlets
+ - ''Get-AzWebAppTrafficRouting''
+ - ''Update-AzWebAppTrafficRouting''
+ - ''Add-AzWebAppTrafficRouting''
+ - ''Remove-AzWebAppTrafficRouting''
'
# Prerelease string of this module
diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Accounts.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Accounts.dll.json
index 0100563ac21f..f604ffe793ef 100644
--- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Accounts.dll.json
+++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Accounts.dll.json
@@ -14,7 +14,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.CommonModule",
"Name": "Microsoft.Azure.Commands.Profile.CommonModule.PSAzureServiceProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.CommonModule.PSAzureServiceProfile, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.CommonModule.PSAzureServiceProfile, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Description": "System.String"
@@ -164,7 +164,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Common",
"Name": "Microsoft.Azure.Commands.Common.VTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.VTable, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.VTable, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ProfileName": "System.String"
},
@@ -787,7 +787,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1027,7 +1027,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1380,7 +1380,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1709,7 +1709,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2086,7 +2086,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2419,7 +2419,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2844,7 +2844,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3272,7 +3272,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3752,7 +3752,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3921,7 +3921,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4125,7 +4125,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4363,7 +4363,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4601,7 +4601,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4778,7 +4778,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4931,7 +4931,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -5767,7 +5767,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -6255,7 +6255,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -6432,7 +6432,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -6585,7 +6585,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8078,7 +8078,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8380,7 +8380,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8688,7 +8688,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9011,7 +9011,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9293,7 +9293,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9548,7 +9548,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9776,7 +9776,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10793,7 +10793,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -11157,7 +11157,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -11987,7 +11987,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -12462,7 +12462,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -12976,7 +12976,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -13142,7 +13142,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -13939,7 +13939,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -14303,7 +14303,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -15133,7 +15133,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -15608,7 +15608,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -16752,7 +16752,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Errors",
"Name": "Microsoft.Azure.Commands.Profile.Errors.AzureErrorRecord",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.AzureErrorRecord, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.AzureErrorRecord, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ErrorCategory": "System.Management.Automation.ErrorCategoryInfo",
"ErrorDetails": "System.Management.Automation.ErrorDetails",
@@ -16809,7 +16809,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Errors",
"Name": "Microsoft.Azure.Commands.Profile.Errors.AzureExceptionRecord",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.AzureExceptionRecord, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.AzureExceptionRecord, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"InnerException": "System.Boolean",
"Exception": "System.Exception",
@@ -16879,7 +16879,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Errors",
"Name": "Microsoft.Azure.Commands.Profile.Errors.AzureRestExceptionRecord",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.AzureRestExceptionRecord, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.AzureRestExceptionRecord, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RequestMessage": "Microsoft.Azure.Commands.Profile.Errors.HttpRequestInfo",
"ServerResponse": "Microsoft.Azure.Commands.Profile.Errors.HttpResponseInfo",
@@ -17312,7 +17312,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17526,7 +17526,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17727,7 +17727,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17887,7 +17887,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Models",
"Name": "Microsoft.Azure.Commands.Profile.Models.PSResourceGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSResourceGroup, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSResourceGroup, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"ResourceGroupName": "System.String",
@@ -18120,7 +18120,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Models",
"Name": "Microsoft.Azure.Commands.Profile.Models.PSResourceGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSResourceGroup, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Models.PSResourceGroup, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"ResourceGroupName": "System.String",
@@ -18213,7 +18213,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -18403,7 +18403,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -18580,7 +18580,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -19286,7 +19286,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -19428,7 +19428,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -19646,7 +19646,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -19788,7 +19788,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -20006,7 +20006,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -20148,7 +20148,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -20363,7 +20363,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -20553,7 +20553,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -20908,7 +20908,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -21183,7 +21183,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -21384,7 +21384,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -21739,7 +21739,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -22014,7 +22014,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -22215,7 +22215,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -22534,7 +22534,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -22761,7 +22761,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -22914,7 +22914,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Profile.Common",
"Name": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Common.ContextModificationScope, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -24000,7 +24000,7 @@
"Microsoft.Azure.Commands.Profile.Errors.HttpRequestInfo": {
"Namespace": "Microsoft.Azure.Commands.Profile.Errors",
"Name": "Microsoft.Azure.Commands.Profile.Errors.HttpRequestInfo",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.HttpRequestInfo, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.HttpRequestInfo, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Headers": "System.Collections.Generic.IDictionary`2[System.String,System.Collections.Generic.IEnumerable`1[System.String]]",
"Verb": "System.String",
@@ -24097,7 +24097,7 @@
"Microsoft.Azure.Commands.Profile.Errors.HttpResponseInfo": {
"Namespace": "Microsoft.Azure.Commands.Profile.Errors",
"Name": "Microsoft.Azure.Commands.Profile.Errors.HttpResponseInfo",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.HttpResponseInfo, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Profile.Errors.HttpResponseInfo, Microsoft.Azure.PowerShell.Cmdlets.Accounts, Version=1.7.4.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Headers": "System.Collections.Generic.IDictionary`2[System.String,System.Collections.Generic.IEnumerable`1[System.String]]",
"ResponseStatusCode": "System.String",
diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Compute.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Compute.dll.json
index 9bd406f649d9..8704731314c9 100644
--- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Compute.dll.json
+++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Compute.dll.json
@@ -14,7 +14,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ProximityPlacementGroup": "Microsoft.Azure.Management.Compute.Models.SubResource",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -263,7 +263,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ProximityPlacementGroup": "Microsoft.Azure.Management.Compute.Models.SubResource",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -814,7 +814,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -1134,7 +1134,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ProximityPlacementGroup": "Microsoft.Azure.Management.Compute.Models.SubResource",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -1205,7 +1205,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ProximityPlacementGroup": "Microsoft.Azure.Management.Compute.Models.SubResource",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -1386,7 +1386,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ProximityPlacementGroup": "Microsoft.Azure.Management.Compute.Models.SubResource",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -1602,7 +1602,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAvailabilitySet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ProximityPlacementGroup": "Microsoft.Azure.Management.Compute.Models.SubResource",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -1799,7 +1799,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtensionImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtensionImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtensionImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StatusCode": "System.Net.HttpStatusCode",
"Version": "System.String",
@@ -1856,7 +1856,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtensionImageDetails",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtensionImageDetails, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtensionImageDetails, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StatusCode": "System.Net.HttpStatusCode",
"SupportsMultipleExtensions": "System.Nullable`1[System.Boolean]",
@@ -2222,7 +2222,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtensionImageType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtensionImageType, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtensionImageType, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StatusCode": "System.Net.HttpStatusCode",
"PublisherName": "System.String",
@@ -2455,7 +2455,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineADDomainExtensionContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineADDomainExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineADDomainExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
"Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
@@ -2799,7 +2799,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -3509,7 +3509,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
"SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
@@ -3885,7 +3885,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -4249,7 +4249,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -4427,6 +4427,42 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
+ {
+ "Name": "SetAccessToIndividualResources",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "InstallNewExtension",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
{
"Name": "DefaultProfile",
"AliasList": [
@@ -4675,6 +4711,268 @@
"ValueFromPipelineByPropertyName": false
}
]
+ },
+ {
+ "Name": "NewExtension",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "SetAccessToIndividualResources",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": 5,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "InstallNewExtension",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": 6,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "VMName",
+ "AliasList": [
+ "ResourceName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 1,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableWAD",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "WADStorageAccountName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": 2,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "OSType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": 3,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SkipStorage",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": 4,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "NoWait",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
}
],
"AliasList": []
@@ -4693,7 +4991,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Extension.AEM",
"Name": "Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Result": "System.Boolean",
"PartialResults": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult]",
@@ -5084,7 +5382,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -5580,7 +5878,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
"Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
@@ -5920,7 +6218,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -6284,7 +6582,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -6398,7 +6696,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -6498,7 +6796,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
"Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
@@ -7674,7 +7972,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -8150,7 +8448,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -9180,7 +9478,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
"Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
@@ -9621,7 +9919,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineCustomScriptExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
"Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
@@ -10215,7 +10513,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
"SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
@@ -10549,7 +10847,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -10871,7 +11169,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -10947,7 +11245,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -11081,7 +11379,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -11239,7 +11537,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -11923,7 +12221,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
"SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
@@ -12257,7 +12555,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -12579,7 +12877,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -14007,7 +14305,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute",
"Name": "Microsoft.Azure.Commands.Compute.VirtualMachineSqlServerExtensionContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.VirtualMachineSqlServerExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.VirtualMachineSqlServerExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
"SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
@@ -14295,7 +14593,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute",
"Name": "Microsoft.Azure.Commands.Compute.AutoBackupSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoBackupSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoBackupSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enable": "System.Boolean",
"EnableEncryption": "System.Boolean",
@@ -15453,7 +15751,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute",
"Name": "Microsoft.Azure.Commands.Compute.AutoPatchingSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoPatchingSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoPatchingSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enable": "System.Boolean",
"MaintenanceWindowStartingHour": "System.Int32",
@@ -15760,7 +16058,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute",
"Name": "Microsoft.Azure.Commands.Compute.KeyVaultCredentialSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.KeyVaultCredentialSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.KeyVaultCredentialSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enable": "System.Boolean",
"Credentials": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential]",
@@ -16089,7 +16387,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -16411,7 +16709,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -16541,7 +16839,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute",
"Name": "Microsoft.Azure.Commands.Compute.AutoPatchingSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoPatchingSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoPatchingSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enable": "System.Boolean",
"MaintenanceWindowStartingHour": "System.Int32",
@@ -16597,7 +16895,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute",
"Name": "Microsoft.Azure.Commands.Compute.AutoBackupSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoBackupSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoBackupSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enable": "System.Boolean",
"EnableEncryption": "System.Boolean",
@@ -16660,7 +16958,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute",
"Name": "Microsoft.Azure.Commands.Compute.KeyVaultCredentialSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.KeyVaultCredentialSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.KeyVaultCredentialSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enable": "System.Boolean",
"Credentials": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential]",
@@ -16873,7 +17171,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute",
"Name": "Microsoft.Azure.Commands.Compute.AutoPatchingSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoPatchingSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoPatchingSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enable": "System.Boolean",
"MaintenanceWindowStartingHour": "System.Int32",
@@ -16935,7 +17233,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute",
"Name": "Microsoft.Azure.Commands.Compute.AutoBackupSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoBackupSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AutoBackupSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enable": "System.Boolean",
"EnableEncryption": "System.Boolean",
@@ -17004,7 +17302,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute",
"Name": "Microsoft.Azure.Commands.Compute.KeyVaultCredentialSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.KeyVaultCredentialSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.KeyVaultCredentialSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enable": "System.Boolean",
"Credentials": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential]",
@@ -17143,7 +17441,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineAccessExtensionContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineAccessExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VirtualMachineAccessExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
"Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
@@ -17484,7 +17782,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -17848,7 +18146,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -18386,7 +18684,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StatusCode": "System.Net.HttpStatusCode",
"Version": "System.String",
@@ -18443,7 +18741,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageDetail",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageDetail, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageDetail, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticOSUpgradeProperties": "Microsoft.Azure.Management.Compute.Models.AutomaticOSUpgradeProperties",
"OSDiskImage": "Microsoft.Azure.Management.Compute.Models.OSDiskImage",
@@ -19039,7 +19337,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageOffer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageOffer, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageOffer, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StatusCode": "System.Net.HttpStatusCode",
"Offer": "System.String",
@@ -19271,7 +19569,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImagePublisher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImagePublisher, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImagePublisher, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StatusCode": "System.Net.HttpStatusCode",
"PublisherName": "System.String",
@@ -19460,7 +19758,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageSku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageSku, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineImageSku, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StatusCode": "System.Net.HttpStatusCode",
"Skus": "System.String",
@@ -20232,7 +20530,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSUsage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSUsage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSUsage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "Microsoft.Azure.Management.Compute.Models.UsageName",
"StatusCode": "System.Net.HttpStatusCode",
@@ -20422,7 +20720,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineSize",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineSize, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineSize, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MemoryInMB": "System.Int32",
"NumberOfCores": "System.Int32",
@@ -20896,7 +21194,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -20950,7 +21248,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -21812,7 +22110,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -22636,7 +22934,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -22690,7 +22988,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -23868,7 +24166,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -23922,7 +24220,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -24462,7 +24760,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -24516,7 +24814,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -25326,7 +25624,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -25411,7 +25709,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -25511,7 +25809,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.SettingNames]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.SettingNames, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.SettingNames, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -25572,7 +25870,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -25684,7 +25982,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.SettingNames]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.SettingNames, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.SettingNames, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -25761,7 +26059,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -25840,7 +26138,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile",
@@ -25920,7 +26218,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -26038,7 +26336,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.CachingTypes",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -26332,7 +26630,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -26494,7 +26792,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.CachingTypes",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -26749,7 +27047,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -26933,7 +27231,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.CachingTypes",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -27186,7 +27484,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.CachingTypes",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -27446,7 +27744,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -27531,7 +27829,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -27713,7 +28011,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -27898,7 +28196,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -28107,7 +28405,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -28192,7 +28490,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -28371,7 +28669,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -28584,7 +28882,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -28669,7 +28967,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -28828,7 +29126,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -29015,7 +29313,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -29173,7 +29471,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -29793,7 +30091,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -30600,7 +30898,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ManagedDisk": "Microsoft.Azure.Management.Compute.Models.ManagedDiskParameters",
"Vhd": "Microsoft.Azure.Management.Compute.Models.VirtualHardDisk",
@@ -30723,7 +31021,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.CachingTypes",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -31067,7 +31365,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.CachingTypes",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -31392,7 +31690,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.CachingTypes",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -31739,7 +32037,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.CachingTypes",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -31949,7 +32247,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -32034,7 +32332,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -32177,7 +32475,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -32342,7 +32640,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -32427,7 +32725,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -32571,7 +32869,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -32737,7 +33035,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -32822,7 +33120,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -32965,7 +33263,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -33130,7 +33428,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -33215,7 +33513,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -33410,7 +33708,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -33616,7 +33914,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -33774,7 +34072,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -33913,7 +34211,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -33998,7 +34296,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -34118,7 +34416,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -34253,7 +34551,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -34341,7 +34639,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -34535,7 +34833,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -34623,7 +34921,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -34819,7 +35117,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -34907,7 +35205,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -35082,7 +35380,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -35167,7 +35465,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -35524,7 +35822,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -35850,7 +36148,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -36224,7 +36522,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -36550,7 +36848,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -36924,7 +37222,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -37178,7 +37476,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -37389,7 +37687,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -37474,7 +37772,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -37598,7 +37896,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -37915,7 +38213,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -38057,7 +38355,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -38349,7 +38647,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -38491,7 +38789,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -38879,7 +39177,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -39021,7 +39319,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -39313,7 +39611,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -39455,7 +39753,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -39843,7 +40141,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -39985,7 +40283,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -40262,7 +40560,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -40347,7 +40645,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -40542,7 +40840,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -40777,7 +41075,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -40862,7 +41160,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -41075,7 +41373,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -41305,7 +41603,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -41463,7 +41761,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -41602,7 +41900,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -41681,7 +41979,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineInstanceView",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineInstanceView, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineInstanceView, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BootDiagnostics": "Microsoft.Azure.Management.Compute.Models.BootDiagnosticsInstanceView",
"MaintenanceRedeployStatus": "Microsoft.Azure.Management.Compute.Models.MaintenanceRedeployStatus",
@@ -42268,7 +42566,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -42347,7 +42645,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineInstanceView",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineInstanceView, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineInstanceView, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BootDiagnostics": "Microsoft.Azure.Management.Compute.Models.BootDiagnosticsInstanceView",
"MaintenanceRedeployStatus": "Microsoft.Azure.Management.Compute.Models.MaintenanceRedeployStatus",
@@ -42507,7 +42805,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -42819,7 +43117,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -43255,7 +43553,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -43307,7 +43605,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -43428,7 +43726,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -44146,7 +44444,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -45845,7 +46143,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSComputeLongRunningOperation, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -45899,7 +46197,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -46535,7 +46833,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -46629,7 +46927,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -46729,7 +47027,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -46958,7 +47256,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -47308,7 +47606,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -47632,7 +47930,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -47684,7 +47982,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -48010,7 +48308,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -48312,7 +48610,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -48619,7 +48917,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.VhdUploadContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VhdUploadContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VhdUploadContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalFilePath": "System.IO.FileInfo",
"DestinationUri": "System.Uri"
@@ -49279,7 +49577,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.VhdDownloadContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VhdDownloadContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.VhdDownloadContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalFilePath": "System.IO.FileInfo",
"Source": "System.Uri"
@@ -50085,7 +50383,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile",
@@ -50152,7 +50450,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile",
@@ -50329,7 +50627,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile",
@@ -50548,7 +50846,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile",
@@ -50651,7 +50949,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ContainerServiceOrchestratorTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ContainerServiceOrchestratorTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ContainerServiceOrchestratorTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -50707,7 +51005,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ContainerServiceAgentPoolProfile[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ContainerServiceAgentPoolProfile[], Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ContainerServiceAgentPoolProfile[], Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Management.Compute.Models.ContainerServiceAgentPoolProfile",
"GenericTypeArguments": [],
@@ -50956,7 +51254,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ContainerServiceOrchestratorTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ContainerServiceOrchestratorTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ContainerServiceOrchestratorTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -51030,7 +51328,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ContainerServiceAgentPoolProfile[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ContainerServiceAgentPoolProfile[], Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ContainerServiceAgentPoolProfile[], Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Management.Compute.Models.ContainerServiceAgentPoolProfile",
"GenericTypeArguments": [],
@@ -51297,7 +51595,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile",
@@ -51364,7 +51662,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile",
@@ -51487,7 +51785,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile",
@@ -51627,7 +51925,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile",
@@ -51750,7 +52048,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile",
@@ -51853,7 +52151,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile",
@@ -52024,7 +52322,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile",
@@ -52239,7 +52537,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile",
@@ -52342,7 +52640,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile",
@@ -52513,7 +52811,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile",
@@ -52728,7 +53026,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -53135,7 +53433,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSContainerService, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile",
@@ -53420,7 +53718,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Hosts": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SubResourceReadOnly]",
@@ -54033,7 +54331,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -54148,7 +54446,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Hosts": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SubResourceReadOnly]",
@@ -54477,7 +54775,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Hosts": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SubResourceReadOnly]",
@@ -54686,7 +54984,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHostGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Hosts": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SubResourceReadOnly]",
@@ -55055,7 +55353,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"InstanceView": "Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceView",
"Sku": "Microsoft.Azure.Management.Compute.Models.Sku",
@@ -55250,7 +55548,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -55598,7 +55896,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -55895,7 +56193,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -56103,7 +56401,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -56236,7 +56534,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"InstanceView": "Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceView",
"Sku": "Microsoft.Azure.Management.Compute.Models.Sku",
@@ -56595,7 +56893,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"InstanceView": "Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceView",
"Sku": "Microsoft.Azure.Management.Compute.Models.Sku",
@@ -56810,7 +57108,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSHost, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"InstanceView": "Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceView",
"Sku": "Microsoft.Azure.Management.Compute.Models.Sku",
@@ -57317,7 +57615,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity",
"ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference",
@@ -57679,7 +57977,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity",
"ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference",
@@ -57781,7 +58079,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity",
"ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference",
@@ -57951,7 +58249,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity",
"ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference",
@@ -58161,7 +58459,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -58294,7 +58592,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity",
"ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference",
@@ -58764,7 +59062,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity",
"ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference",
@@ -58930,7 +59228,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity",
"ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference",
@@ -59214,7 +59512,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity",
"ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference",
@@ -59334,7 +59632,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity",
"ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference",
@@ -59862,7 +60160,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskEncryptionSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity",
"ActiveKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference",
@@ -60216,26 +60514,31 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "ShareInfo": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ShareInfoElement]",
+ "ManagedByExtended": "System.Collections.Generic.IList`1[System.String]",
"Zones": "System.Collections.Generic.IList`1[System.String]",
"OsType": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]",
"TimeCreated": "System.Nullable`1[System.DateTime]",
+ "MaxShares": "System.Nullable`1[System.Int32]",
"DiskSizeGB": "System.Nullable`1[System.Int32]",
- "DiskMBpsReadWrite": "System.Nullable`1[System.Int32]",
"DiskSizeBytes": "System.Nullable`1[System.Int64]",
"DiskIOPSReadWrite": "System.Nullable`1[System.Int64]",
- "Type": "System.String",
+ "DiskMBpsReadWrite": "System.Nullable`1[System.Int64]",
+ "DiskIOPSReadOnly": "System.Nullable`1[System.Int64]",
+ "DiskMBpsReadOnly": "System.Nullable`1[System.Int64]",
"Name": "System.String",
"Id": "System.String",
- "UniqueId": "System.String",
+ "Type": "System.String",
"ProvisioningState": "System.String",
"Location": "System.String",
+ "UniqueId": "System.String",
"HyperVGeneration": "System.String",
"ManagedBy": "System.String",
"DiskState": "System.String",
@@ -60310,7 +60613,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -60401,8 +60704,8 @@
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.Int32",
- "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Name": "System.Int64",
+ "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -60417,6 +60720,60 @@
{
"Name": "DiskMBpsReadWrite",
"AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int64",
+ "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DiskIOPSReadOnly",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int64",
+ "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DiskMBpsReadOnly",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int64",
+ "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "MaxSharesCount",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.Int32",
@@ -60492,7 +60849,79 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Lun": "System.Nullable`1[System.Int32]",
+ "Id": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Validate",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "id",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "lun",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "GalleryImageReference",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Management.Compute.Models",
+ "Name": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Lun": "System.Nullable`1[System.Int32]",
"Id": "System.String"
@@ -60638,7 +61067,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SourceVault": "Microsoft.Azure.Management.Compute.Models.SourceVault",
"SecretUrl": "System.String"
@@ -60710,7 +61139,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SourceVault": "Microsoft.Azure.Management.Compute.Models.SourceVault",
"KeyUrl": "System.String"
@@ -60883,7 +61312,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -61004,8 +61433,8 @@
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.Int32",
- "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Name": "System.Int64",
+ "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -61026,6 +61455,78 @@
"ParameterMetadata": {
"Name": "DiskMBpsReadWrite",
"AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int64",
+ "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DiskIOPSReadOnly",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int64",
+ "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DiskMBpsReadOnly",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int64",
+ "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "MaxSharesCount",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.Int32",
@@ -61125,7 +61626,85 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Lun": "System.Nullable`1[System.Int32]",
+ "Id": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Validate",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "id",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "lun",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "GalleryImageReference",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Management.Compute.Models",
+ "Name": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Lun": "System.Nullable`1[System.Int32]",
"Id": "System.String"
@@ -61301,7 +61880,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SourceVault": "Microsoft.Azure.Management.Compute.Models.SourceVault",
"SecretUrl": "System.String"
@@ -61379,7 +61958,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SourceVault": "Microsoft.Azure.Management.Compute.Models.SourceVault",
"KeyUrl": "System.String"
@@ -61556,7 +62135,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -61564,8 +62143,11 @@
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"OsType": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]",
"DiskSizeGB": "System.Nullable`1[System.Int32]",
- "DiskMBpsReadWrite": "System.Nullable`1[System.Int32]",
- "DiskIOPSReadWrite": "System.Nullable`1[System.Int64]"
+ "MaxShares": "System.Nullable`1[System.Int32]",
+ "DiskIOPSReadWrite": "System.Nullable`1[System.Int64]",
+ "DiskMBpsReadWrite": "System.Nullable`1[System.Int64]",
+ "DiskIOPSReadOnly": "System.Nullable`1[System.Int64]",
+ "DiskMBpsReadOnly": "System.Nullable`1[System.Int64]"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -61636,7 +62218,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -61748,7 +62330,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SourceVault": "Microsoft.Azure.Management.Compute.Models.SourceVault",
"SecretUrl": "System.String"
@@ -61820,7 +62402,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SourceVault": "Microsoft.Azure.Management.Compute.Models.SourceVault",
"KeyUrl": "System.String"
@@ -61993,7 +62575,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -62141,7 +62723,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SourceVault": "Microsoft.Azure.Management.Compute.Models.SourceVault",
"SecretUrl": "System.String"
@@ -62219,7 +62801,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SourceVault": "Microsoft.Azure.Management.Compute.Models.SourceVault",
"KeyUrl": "System.String"
@@ -62396,26 +62978,31 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "ShareInfo": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ShareInfoElement]",
+ "ManagedByExtended": "System.Collections.Generic.IList`1[System.String]",
"Zones": "System.Collections.Generic.IList`1[System.String]",
"OsType": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]",
"TimeCreated": "System.Nullable`1[System.DateTime]",
+ "MaxShares": "System.Nullable`1[System.Int32]",
"DiskSizeGB": "System.Nullable`1[System.Int32]",
- "DiskMBpsReadWrite": "System.Nullable`1[System.Int32]",
"DiskSizeBytes": "System.Nullable`1[System.Int64]",
"DiskIOPSReadWrite": "System.Nullable`1[System.Int64]",
- "Type": "System.String",
+ "DiskMBpsReadWrite": "System.Nullable`1[System.Int64]",
+ "DiskIOPSReadOnly": "System.Nullable`1[System.Int64]",
+ "DiskMBpsReadOnly": "System.Nullable`1[System.Int64]",
"Name": "System.String",
"Id": "System.String",
- "UniqueId": "System.String",
+ "Type": "System.String",
"ProvisioningState": "System.String",
"Location": "System.String",
+ "UniqueId": "System.String",
"HyperVGeneration": "System.String",
"ManagedBy": "System.String",
"DiskState": "System.String",
@@ -62470,26 +63057,31 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "ShareInfo": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ShareInfoElement]",
+ "ManagedByExtended": "System.Collections.Generic.IList`1[System.String]",
"Zones": "System.Collections.Generic.IList`1[System.String]",
"OsType": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]",
"TimeCreated": "System.Nullable`1[System.DateTime]",
+ "MaxShares": "System.Nullable`1[System.Int32]",
"DiskSizeGB": "System.Nullable`1[System.Int32]",
- "DiskMBpsReadWrite": "System.Nullable`1[System.Int32]",
"DiskSizeBytes": "System.Nullable`1[System.Int64]",
"DiskIOPSReadWrite": "System.Nullable`1[System.Int64]",
- "Type": "System.String",
+ "DiskMBpsReadWrite": "System.Nullable`1[System.Int64]",
+ "DiskIOPSReadOnly": "System.Nullable`1[System.Int64]",
+ "DiskMBpsReadOnly": "System.Nullable`1[System.Int64]",
"Name": "System.String",
"Id": "System.String",
- "UniqueId": "System.String",
+ "Type": "System.String",
"ProvisioningState": "System.String",
"Location": "System.String",
+ "UniqueId": "System.String",
"HyperVGeneration": "System.String",
"ManagedBy": "System.String",
"DiskState": "System.String",
@@ -62618,26 +63210,31 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "ShareInfo": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ShareInfoElement]",
+ "ManagedByExtended": "System.Collections.Generic.IList`1[System.String]",
"Zones": "System.Collections.Generic.IList`1[System.String]",
"OsType": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]",
"TimeCreated": "System.Nullable`1[System.DateTime]",
+ "MaxShares": "System.Nullable`1[System.Int32]",
"DiskSizeGB": "System.Nullable`1[System.Int32]",
- "DiskMBpsReadWrite": "System.Nullable`1[System.Int32]",
"DiskSizeBytes": "System.Nullable`1[System.Int64]",
"DiskIOPSReadWrite": "System.Nullable`1[System.Int64]",
- "Type": "System.String",
+ "DiskMBpsReadWrite": "System.Nullable`1[System.Int64]",
+ "DiskIOPSReadOnly": "System.Nullable`1[System.Int64]",
+ "DiskMBpsReadOnly": "System.Nullable`1[System.Int64]",
"Name": "System.String",
"Id": "System.String",
- "UniqueId": "System.String",
+ "Type": "System.String",
"ProvisioningState": "System.String",
"Location": "System.String",
+ "UniqueId": "System.String",
"HyperVGeneration": "System.String",
"ManagedBy": "System.String",
"DiskState": "System.String",
@@ -62796,26 +63393,31 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "ShareInfo": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ShareInfoElement]",
+ "ManagedByExtended": "System.Collections.Generic.IList`1[System.String]",
"Zones": "System.Collections.Generic.IList`1[System.String]",
"OsType": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]",
"TimeCreated": "System.Nullable`1[System.DateTime]",
+ "MaxShares": "System.Nullable`1[System.Int32]",
"DiskSizeGB": "System.Nullable`1[System.Int32]",
- "DiskMBpsReadWrite": "System.Nullable`1[System.Int32]",
"DiskSizeBytes": "System.Nullable`1[System.Int64]",
"DiskIOPSReadWrite": "System.Nullable`1[System.Int64]",
- "Type": "System.String",
+ "DiskMBpsReadWrite": "System.Nullable`1[System.Int64]",
+ "DiskIOPSReadOnly": "System.Nullable`1[System.Int64]",
+ "DiskMBpsReadOnly": "System.Nullable`1[System.Int64]",
"Name": "System.String",
"Id": "System.String",
- "UniqueId": "System.String",
+ "Type": "System.String",
"ProvisioningState": "System.String",
"Location": "System.String",
+ "UniqueId": "System.String",
"HyperVGeneration": "System.String",
"ManagedBy": "System.String",
"DiskState": "System.String",
@@ -62870,26 +63472,31 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "ShareInfo": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ShareInfoElement]",
+ "ManagedByExtended": "System.Collections.Generic.IList`1[System.String]",
"Zones": "System.Collections.Generic.IList`1[System.String]",
"OsType": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]",
"TimeCreated": "System.Nullable`1[System.DateTime]",
+ "MaxShares": "System.Nullable`1[System.Int32]",
"DiskSizeGB": "System.Nullable`1[System.Int32]",
- "DiskMBpsReadWrite": "System.Nullable`1[System.Int32]",
"DiskSizeBytes": "System.Nullable`1[System.Int64]",
"DiskIOPSReadWrite": "System.Nullable`1[System.Int64]",
- "Type": "System.String",
+ "DiskMBpsReadWrite": "System.Nullable`1[System.Int64]",
+ "DiskIOPSReadOnly": "System.Nullable`1[System.Int64]",
+ "DiskMBpsReadOnly": "System.Nullable`1[System.Int64]",
"Name": "System.String",
"Id": "System.String",
- "UniqueId": "System.String",
+ "Type": "System.String",
"ProvisioningState": "System.String",
"Location": "System.String",
+ "UniqueId": "System.String",
"HyperVGeneration": "System.String",
"ManagedBy": "System.String",
"DiskState": "System.String",
@@ -63018,26 +63625,31 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "ShareInfo": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ShareInfoElement]",
+ "ManagedByExtended": "System.Collections.Generic.IList`1[System.String]",
"Zones": "System.Collections.Generic.IList`1[System.String]",
"OsType": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]",
"TimeCreated": "System.Nullable`1[System.DateTime]",
+ "MaxShares": "System.Nullable`1[System.Int32]",
"DiskSizeGB": "System.Nullable`1[System.Int32]",
- "DiskMBpsReadWrite": "System.Nullable`1[System.Int32]",
"DiskSizeBytes": "System.Nullable`1[System.Int64]",
"DiskIOPSReadWrite": "System.Nullable`1[System.Int64]",
- "Type": "System.String",
+ "DiskMBpsReadWrite": "System.Nullable`1[System.Int64]",
+ "DiskIOPSReadOnly": "System.Nullable`1[System.Int64]",
+ "DiskMBpsReadOnly": "System.Nullable`1[System.Int64]",
"Name": "System.String",
"Id": "System.String",
- "UniqueId": "System.String",
+ "Type": "System.String",
"ProvisioningState": "System.String",
"Location": "System.String",
+ "UniqueId": "System.String",
"HyperVGeneration": "System.String",
"ManagedBy": "System.String",
"DiskState": "System.String",
@@ -63196,26 +63808,31 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "ShareInfo": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ShareInfoElement]",
+ "ManagedByExtended": "System.Collections.Generic.IList`1[System.String]",
"Zones": "System.Collections.Generic.IList`1[System.String]",
"OsType": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]",
"TimeCreated": "System.Nullable`1[System.DateTime]",
+ "MaxShares": "System.Nullable`1[System.Int32]",
"DiskSizeGB": "System.Nullable`1[System.Int32]",
- "DiskMBpsReadWrite": "System.Nullable`1[System.Int32]",
"DiskSizeBytes": "System.Nullable`1[System.Int64]",
"DiskIOPSReadWrite": "System.Nullable`1[System.Int64]",
- "Type": "System.String",
+ "DiskMBpsReadWrite": "System.Nullable`1[System.Int64]",
+ "DiskIOPSReadOnly": "System.Nullable`1[System.Int64]",
+ "DiskMBpsReadOnly": "System.Nullable`1[System.Int64]",
"Name": "System.String",
"Id": "System.String",
- "UniqueId": "System.String",
+ "Type": "System.String",
"ProvisioningState": "System.String",
"Location": "System.String",
+ "UniqueId": "System.String",
"HyperVGeneration": "System.String",
"ManagedBy": "System.String",
"DiskState": "System.String",
@@ -63270,26 +63887,31 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "ShareInfo": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ShareInfoElement]",
+ "ManagedByExtended": "System.Collections.Generic.IList`1[System.String]",
"Zones": "System.Collections.Generic.IList`1[System.String]",
"OsType": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]",
"TimeCreated": "System.Nullable`1[System.DateTime]",
+ "MaxShares": "System.Nullable`1[System.Int32]",
"DiskSizeGB": "System.Nullable`1[System.Int32]",
- "DiskMBpsReadWrite": "System.Nullable`1[System.Int32]",
"DiskSizeBytes": "System.Nullable`1[System.Int64]",
"DiskIOPSReadWrite": "System.Nullable`1[System.Int64]",
- "Type": "System.String",
+ "DiskMBpsReadWrite": "System.Nullable`1[System.Int64]",
+ "DiskIOPSReadOnly": "System.Nullable`1[System.Int64]",
+ "DiskMBpsReadOnly": "System.Nullable`1[System.Int64]",
"Name": "System.String",
"Id": "System.String",
- "UniqueId": "System.String",
+ "Type": "System.String",
"ProvisioningState": "System.String",
"Location": "System.String",
+ "UniqueId": "System.String",
"HyperVGeneration": "System.String",
"ManagedBy": "System.String",
"DiskState": "System.String",
@@ -63418,26 +64040,31 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "ShareInfo": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ShareInfoElement]",
+ "ManagedByExtended": "System.Collections.Generic.IList`1[System.String]",
"Zones": "System.Collections.Generic.IList`1[System.String]",
"OsType": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]",
"TimeCreated": "System.Nullable`1[System.DateTime]",
+ "MaxShares": "System.Nullable`1[System.Int32]",
"DiskSizeGB": "System.Nullable`1[System.Int32]",
- "DiskMBpsReadWrite": "System.Nullable`1[System.Int32]",
"DiskSizeBytes": "System.Nullable`1[System.Int64]",
"DiskIOPSReadWrite": "System.Nullable`1[System.Int64]",
- "Type": "System.String",
+ "DiskMBpsReadWrite": "System.Nullable`1[System.Int64]",
+ "DiskIOPSReadOnly": "System.Nullable`1[System.Int64]",
+ "DiskMBpsReadOnly": "System.Nullable`1[System.Int64]",
"Name": "System.String",
"Id": "System.String",
- "UniqueId": "System.String",
+ "Type": "System.String",
"ProvisioningState": "System.String",
"Location": "System.String",
+ "UniqueId": "System.String",
"HyperVGeneration": "System.String",
"ManagedBy": "System.String",
"DiskState": "System.String",
@@ -63596,7 +64223,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -63604,8 +64231,11 @@
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"OsType": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]",
"DiskSizeGB": "System.Nullable`1[System.Int32]",
- "DiskMBpsReadWrite": "System.Nullable`1[System.Int32]",
- "DiskIOPSReadWrite": "System.Nullable`1[System.Int64]"
+ "MaxShares": "System.Nullable`1[System.Int32]",
+ "DiskIOPSReadWrite": "System.Nullable`1[System.Int64]",
+ "DiskMBpsReadWrite": "System.Nullable`1[System.Int64]",
+ "DiskIOPSReadOnly": "System.Nullable`1[System.Int64]",
+ "DiskMBpsReadOnly": "System.Nullable`1[System.Int64]"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -63656,7 +64286,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -63664,8 +64294,11 @@
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"OsType": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]",
"DiskSizeGB": "System.Nullable`1[System.Int32]",
- "DiskMBpsReadWrite": "System.Nullable`1[System.Int32]",
- "DiskIOPSReadWrite": "System.Nullable`1[System.Int64]"
+ "MaxShares": "System.Nullable`1[System.Int32]",
+ "DiskIOPSReadWrite": "System.Nullable`1[System.Int64]",
+ "DiskMBpsReadWrite": "System.Nullable`1[System.Int64]",
+ "DiskIOPSReadOnly": "System.Nullable`1[System.Int64]",
+ "DiskMBpsReadOnly": "System.Nullable`1[System.Int64]"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -63790,7 +64423,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -63798,8 +64431,11 @@
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"OsType": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]",
"DiskSizeGB": "System.Nullable`1[System.Int32]",
- "DiskMBpsReadWrite": "System.Nullable`1[System.Int32]",
- "DiskIOPSReadWrite": "System.Nullable`1[System.Int64]"
+ "MaxShares": "System.Nullable`1[System.Int32]",
+ "DiskIOPSReadWrite": "System.Nullable`1[System.Int64]",
+ "DiskMBpsReadWrite": "System.Nullable`1[System.Int64]",
+ "DiskIOPSReadOnly": "System.Nullable`1[System.Int64]",
+ "DiskMBpsReadOnly": "System.Nullable`1[System.Int64]"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -63954,7 +64590,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -63962,8 +64598,11 @@
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"OsType": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]",
"DiskSizeGB": "System.Nullable`1[System.Int32]",
- "DiskMBpsReadWrite": "System.Nullable`1[System.Int32]",
- "DiskIOPSReadWrite": "System.Nullable`1[System.Int64]"
+ "MaxShares": "System.Nullable`1[System.Int32]",
+ "DiskIOPSReadWrite": "System.Nullable`1[System.Int64]",
+ "DiskMBpsReadWrite": "System.Nullable`1[System.Int64]",
+ "DiskIOPSReadOnly": "System.Nullable`1[System.Int64]",
+ "DiskMBpsReadOnly": "System.Nullable`1[System.Int64]"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -64014,7 +64653,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -64022,8 +64661,11 @@
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"OsType": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]",
"DiskSizeGB": "System.Nullable`1[System.Int32]",
- "DiskMBpsReadWrite": "System.Nullable`1[System.Int32]",
- "DiskIOPSReadWrite": "System.Nullable`1[System.Int64]"
+ "MaxShares": "System.Nullable`1[System.Int32]",
+ "DiskIOPSReadWrite": "System.Nullable`1[System.Int64]",
+ "DiskMBpsReadWrite": "System.Nullable`1[System.Int64]",
+ "DiskIOPSReadOnly": "System.Nullable`1[System.Int64]",
+ "DiskMBpsReadOnly": "System.Nullable`1[System.Int64]"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -64148,7 +64790,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -64156,8 +64798,11 @@
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"OsType": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]",
"DiskSizeGB": "System.Nullable`1[System.Int32]",
- "DiskMBpsReadWrite": "System.Nullable`1[System.Int32]",
- "DiskIOPSReadWrite": "System.Nullable`1[System.Int64]"
+ "MaxShares": "System.Nullable`1[System.Int32]",
+ "DiskIOPSReadWrite": "System.Nullable`1[System.Int64]",
+ "DiskMBpsReadWrite": "System.Nullable`1[System.Int64]",
+ "DiskIOPSReadOnly": "System.Nullable`1[System.Int64]",
+ "DiskMBpsReadOnly": "System.Nullable`1[System.Int64]"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -64312,26 +64957,31 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "ShareInfo": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ShareInfoElement]",
+ "ManagedByExtended": "System.Collections.Generic.IList`1[System.String]",
"Zones": "System.Collections.Generic.IList`1[System.String]",
"OsType": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]",
"TimeCreated": "System.Nullable`1[System.DateTime]",
+ "MaxShares": "System.Nullable`1[System.Int32]",
"DiskSizeGB": "System.Nullable`1[System.Int32]",
- "DiskMBpsReadWrite": "System.Nullable`1[System.Int32]",
"DiskSizeBytes": "System.Nullable`1[System.Int64]",
"DiskIOPSReadWrite": "System.Nullable`1[System.Int64]",
- "Type": "System.String",
+ "DiskMBpsReadWrite": "System.Nullable`1[System.Int64]",
+ "DiskIOPSReadOnly": "System.Nullable`1[System.Int64]",
+ "DiskMBpsReadOnly": "System.Nullable`1[System.Int64]",
"Name": "System.String",
"Id": "System.String",
- "UniqueId": "System.String",
+ "Type": "System.String",
"ProvisioningState": "System.String",
"Location": "System.String",
+ "UniqueId": "System.String",
"HyperVGeneration": "System.String",
"ManagedBy": "System.String",
"DiskState": "System.String",
@@ -64424,26 +65074,31 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "ShareInfo": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ShareInfoElement]",
+ "ManagedByExtended": "System.Collections.Generic.IList`1[System.String]",
"Zones": "System.Collections.Generic.IList`1[System.String]",
"OsType": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]",
"TimeCreated": "System.Nullable`1[System.DateTime]",
+ "MaxShares": "System.Nullable`1[System.Int32]",
"DiskSizeGB": "System.Nullable`1[System.Int32]",
- "DiskMBpsReadWrite": "System.Nullable`1[System.Int32]",
"DiskSizeBytes": "System.Nullable`1[System.Int64]",
"DiskIOPSReadWrite": "System.Nullable`1[System.Int64]",
- "Type": "System.String",
+ "DiskMBpsReadWrite": "System.Nullable`1[System.Int64]",
+ "DiskIOPSReadOnly": "System.Nullable`1[System.Int64]",
+ "DiskMBpsReadOnly": "System.Nullable`1[System.Int64]",
"Name": "System.String",
"Id": "System.String",
- "UniqueId": "System.String",
+ "Type": "System.String",
"ProvisioningState": "System.String",
"Location": "System.String",
+ "UniqueId": "System.String",
"HyperVGeneration": "System.String",
"ManagedBy": "System.String",
"DiskState": "System.String",
@@ -64604,26 +65259,31 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "ShareInfo": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ShareInfoElement]",
+ "ManagedByExtended": "System.Collections.Generic.IList`1[System.String]",
"Zones": "System.Collections.Generic.IList`1[System.String]",
"OsType": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]",
"TimeCreated": "System.Nullable`1[System.DateTime]",
+ "MaxShares": "System.Nullable`1[System.Int32]",
"DiskSizeGB": "System.Nullable`1[System.Int32]",
- "DiskMBpsReadWrite": "System.Nullable`1[System.Int32]",
"DiskSizeBytes": "System.Nullable`1[System.Int64]",
"DiskIOPSReadWrite": "System.Nullable`1[System.Int64]",
- "Type": "System.String",
+ "DiskMBpsReadWrite": "System.Nullable`1[System.Int64]",
+ "DiskIOPSReadOnly": "System.Nullable`1[System.Int64]",
+ "DiskMBpsReadOnly": "System.Nullable`1[System.Int64]",
"Name": "System.String",
"Id": "System.String",
- "UniqueId": "System.String",
+ "Type": "System.String",
"ProvisioningState": "System.String",
"Location": "System.String",
+ "UniqueId": "System.String",
"HyperVGeneration": "System.String",
"ManagedBy": "System.String",
"DiskState": "System.String",
@@ -64826,7 +65486,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -65237,26 +65897,31 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "ShareInfo": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ShareInfoElement]",
+ "ManagedByExtended": "System.Collections.Generic.IList`1[System.String]",
"Zones": "System.Collections.Generic.IList`1[System.String]",
"OsType": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]",
"TimeCreated": "System.Nullable`1[System.DateTime]",
+ "MaxShares": "System.Nullable`1[System.Int32]",
"DiskSizeGB": "System.Nullable`1[System.Int32]",
- "DiskMBpsReadWrite": "System.Nullable`1[System.Int32]",
"DiskSizeBytes": "System.Nullable`1[System.Int64]",
"DiskIOPSReadWrite": "System.Nullable`1[System.Int64]",
- "Type": "System.String",
+ "DiskMBpsReadWrite": "System.Nullable`1[System.Int64]",
+ "DiskIOPSReadOnly": "System.Nullable`1[System.Int64]",
+ "DiskMBpsReadOnly": "System.Nullable`1[System.Int64]",
"Name": "System.String",
"Id": "System.String",
- "UniqueId": "System.String",
+ "Type": "System.String",
"ProvisioningState": "System.String",
"Location": "System.String",
+ "UniqueId": "System.String",
"HyperVGeneration": "System.String",
"ManagedBy": "System.String",
"DiskState": "System.String",
@@ -65533,7 +66198,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAccessUri",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAccessUri, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAccessUri, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessSAS": "System.String"
},
@@ -65958,7 +66623,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -66303,26 +66968,31 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "ShareInfo": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ShareInfoElement]",
+ "ManagedByExtended": "System.Collections.Generic.IList`1[System.String]",
"Zones": "System.Collections.Generic.IList`1[System.String]",
"OsType": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]",
"TimeCreated": "System.Nullable`1[System.DateTime]",
+ "MaxShares": "System.Nullable`1[System.Int32]",
"DiskSizeGB": "System.Nullable`1[System.Int32]",
- "DiskMBpsReadWrite": "System.Nullable`1[System.Int32]",
"DiskSizeBytes": "System.Nullable`1[System.Int64]",
"DiskIOPSReadWrite": "System.Nullable`1[System.Int64]",
- "Type": "System.String",
+ "DiskMBpsReadWrite": "System.Nullable`1[System.Int64]",
+ "DiskIOPSReadOnly": "System.Nullable`1[System.Int64]",
+ "DiskMBpsReadOnly": "System.Nullable`1[System.Int64]",
"Name": "System.String",
"Id": "System.String",
- "UniqueId": "System.String",
+ "Type": "System.String",
"ProvisioningState": "System.String",
"Location": "System.String",
+ "UniqueId": "System.String",
"HyperVGeneration": "System.String",
"ManagedBy": "System.String",
"DiskState": "System.String",
@@ -66415,7 +67085,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -66423,8 +67093,11 @@
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"OsType": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]",
"DiskSizeGB": "System.Nullable`1[System.Int32]",
- "DiskMBpsReadWrite": "System.Nullable`1[System.Int32]",
- "DiskIOPSReadWrite": "System.Nullable`1[System.Int64]"
+ "MaxShares": "System.Nullable`1[System.Int32]",
+ "DiskIOPSReadWrite": "System.Nullable`1[System.Int64]",
+ "DiskMBpsReadWrite": "System.Nullable`1[System.Int64]",
+ "DiskIOPSReadOnly": "System.Nullable`1[System.Int64]",
+ "DiskMBpsReadOnly": "System.Nullable`1[System.Int64]"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -66474,26 +67147,31 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "ShareInfo": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ShareInfoElement]",
+ "ManagedByExtended": "System.Collections.Generic.IList`1[System.String]",
"Zones": "System.Collections.Generic.IList`1[System.String]",
"OsType": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]",
"TimeCreated": "System.Nullable`1[System.DateTime]",
+ "MaxShares": "System.Nullable`1[System.Int32]",
"DiskSizeGB": "System.Nullable`1[System.Int32]",
- "DiskMBpsReadWrite": "System.Nullable`1[System.Int32]",
"DiskSizeBytes": "System.Nullable`1[System.Int64]",
"DiskIOPSReadWrite": "System.Nullable`1[System.Int64]",
- "Type": "System.String",
+ "DiskMBpsReadWrite": "System.Nullable`1[System.Int64]",
+ "DiskIOPSReadOnly": "System.Nullable`1[System.Int64]",
+ "DiskMBpsReadOnly": "System.Nullable`1[System.Int64]",
"Name": "System.String",
"Id": "System.String",
- "UniqueId": "System.String",
+ "Type": "System.String",
"ProvisioningState": "System.String",
"Location": "System.String",
+ "UniqueId": "System.String",
"HyperVGeneration": "System.String",
"ManagedBy": "System.String",
"DiskState": "System.String",
@@ -66654,7 +67332,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDiskUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -66662,8 +67340,11 @@
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"OsType": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]",
"DiskSizeGB": "System.Nullable`1[System.Int32]",
- "DiskMBpsReadWrite": "System.Nullable`1[System.Int32]",
- "DiskIOPSReadWrite": "System.Nullable`1[System.Int64]"
+ "MaxShares": "System.Nullable`1[System.Int32]",
+ "DiskIOPSReadWrite": "System.Nullable`1[System.Int64]",
+ "DiskMBpsReadWrite": "System.Nullable`1[System.Int64]",
+ "DiskIOPSReadOnly": "System.Nullable`1[System.Int64]",
+ "DiskMBpsReadOnly": "System.Nullable`1[System.Int64]"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -66837,26 +67518,31 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Sku": "Microsoft.Azure.Management.Compute.Models.DiskSku",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "ShareInfo": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ShareInfoElement]",
+ "ManagedByExtended": "System.Collections.Generic.IList`1[System.String]",
"Zones": "System.Collections.Generic.IList`1[System.String]",
"OsType": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]",
"TimeCreated": "System.Nullable`1[System.DateTime]",
+ "MaxShares": "System.Nullable`1[System.Int32]",
"DiskSizeGB": "System.Nullable`1[System.Int32]",
- "DiskMBpsReadWrite": "System.Nullable`1[System.Int32]",
"DiskSizeBytes": "System.Nullable`1[System.Int64]",
"DiskIOPSReadWrite": "System.Nullable`1[System.Int64]",
- "Type": "System.String",
+ "DiskMBpsReadWrite": "System.Nullable`1[System.Int64]",
+ "DiskIOPSReadOnly": "System.Nullable`1[System.Int64]",
+ "DiskMBpsReadOnly": "System.Nullable`1[System.Int64]",
"Name": "System.String",
"Id": "System.String",
- "UniqueId": "System.String",
+ "Type": "System.String",
"ProvisioningState": "System.String",
"Location": "System.String",
+ "UniqueId": "System.String",
"HyperVGeneration": "System.String",
"ManagedBy": "System.String",
"DiskState": "System.String",
@@ -67059,7 +67745,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublishingProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile",
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile",
@@ -67231,7 +67917,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage[], Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage[], Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage",
"GenericTypeArguments": [],
@@ -67249,7 +67935,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.GalleryOSDiskImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryOSDiskImage, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryOSDiskImage, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Source": "Microsoft.Azure.Management.Compute.Models.GalleryArtifactVersionSource",
"HostCaching": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.HostCaching]",
@@ -67637,7 +68323,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage[], Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage[], Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage",
"GenericTypeArguments": [],
@@ -67661,7 +68347,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.GalleryOSDiskImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryOSDiskImage, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryOSDiskImage, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Source": "Microsoft.Azure.Management.Compute.Models.GalleryArtifactVersionSource",
"HostCaching": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.HostCaching]",
@@ -68004,7 +68690,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage[], Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage[], Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage",
"GenericTypeArguments": [],
@@ -68028,7 +68714,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.GalleryOSDiskImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryOSDiskImage, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryOSDiskImage, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Source": "Microsoft.Azure.Management.Compute.Models.GalleryArtifactVersionSource",
"HostCaching": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.HostCaching]",
@@ -68330,7 +69016,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublishingProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile",
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile",
@@ -68486,7 +69172,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublishingProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile",
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile",
@@ -69194,7 +69880,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublishingProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile",
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile",
@@ -69644,7 +70330,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -69813,7 +70499,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublishingProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile",
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile",
@@ -70331,7 +71017,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublishingProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile",
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile",
@@ -70497,7 +71183,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImageVersion, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublishingProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile",
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile",
@@ -71041,7 +71727,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Disallowed": "Microsoft.Azure.Management.Compute.Models.Disallowed",
"Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier",
@@ -71258,7 +71944,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -71361,7 +72047,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -71967,7 +72653,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -72076,7 +72762,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -72709,7 +73395,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -72818,7 +73504,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -73338,7 +74024,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Disallowed": "Microsoft.Azure.Management.Compute.Models.Disallowed",
"Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier",
@@ -73485,7 +74171,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Disallowed": "Microsoft.Azure.Management.Compute.Models.Disallowed",
"Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier",
@@ -74772,7 +75458,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Disallowed": "Microsoft.Azure.Management.Compute.Models.Disallowed",
"Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier",
@@ -75663,7 +76349,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -75814,7 +76500,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Disallowed": "Microsoft.Azure.Management.Compute.Models.Disallowed",
"Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier",
@@ -76317,7 +77003,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Disallowed": "Microsoft.Azure.Management.Compute.Models.Disallowed",
"Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier",
@@ -76492,7 +77178,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGalleryImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Disallowed": "Microsoft.Azure.Management.Compute.Models.Disallowed",
"Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier",
@@ -76913,7 +77599,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -77460,7 +78146,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -77579,7 +78265,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -78040,7 +78726,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -78345,7 +79031,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -78478,7 +79164,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -78947,7 +79633,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -79112,7 +79798,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSGallery, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identifier": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -79481,7 +80167,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
"SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource",
@@ -79543,7 +80229,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
"SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource",
@@ -79640,7 +80326,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -79789,7 +80475,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
"SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource",
@@ -79904,7 +80590,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -80101,7 +80787,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
"SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource",
@@ -80217,7 +80903,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ImageOSDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageOSDisk, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageOSDisk, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DiskEncryptionSet": "Microsoft.Azure.Management.Compute.Models.DiskEncryptionSetParameters",
"OsState": "Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes",
@@ -80342,7 +81028,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ImageDataDisk[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageDataDisk[], Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageDataDisk[], Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Management.Compute.Models.ImageDataDisk",
"GenericTypeArguments": [],
@@ -80489,7 +81175,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ImageOSDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageOSDisk, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageOSDisk, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DiskEncryptionSet": "Microsoft.Azure.Management.Compute.Models.DiskEncryptionSetParameters",
"OsState": "Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes",
@@ -80626,7 +81312,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ImageDataDisk[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageDataDisk[], Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageDataDisk[], Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Management.Compute.Models.ImageDataDisk",
"GenericTypeArguments": [],
@@ -80725,7 +81411,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
"SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource",
@@ -80787,7 +81473,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
"SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource",
@@ -80907,7 +81593,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
"SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource",
@@ -81044,7 +81730,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
"SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource",
@@ -81162,7 +81848,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
"SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource",
@@ -81224,7 +81910,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
"SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource",
@@ -81285,7 +81971,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -81305,7 +81991,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -81343,7 +82029,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -81492,7 +82178,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
"SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource",
@@ -81559,7 +82245,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -81585,7 +82271,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -81635,7 +82321,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -81832,7 +82518,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
"SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource",
@@ -81932,7 +82618,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
"SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource",
@@ -82100,7 +82786,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
"SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource",
@@ -82310,7 +82996,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
"SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource",
@@ -82464,7 +83150,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
"SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource",
@@ -82914,7 +83600,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
"SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource",
@@ -83080,7 +83766,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -83491,7 +84177,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSImage, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StorageProfile": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
"SourceVirtualMachine": "Microsoft.Azure.Management.Compute.Models.SubResource",
@@ -83817,7 +84503,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSLogAnalyticsOperationResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSLogAnalyticsOperationResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSLogAnalyticsOperationResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"Properties": "Microsoft.Azure.Management.Compute.Models.LogAnalyticsOutput",
@@ -83947,7 +84633,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.IntervalInMins",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.IntervalInMins, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.IntervalInMins, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -84275,7 +84961,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.IntervalInMins",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.IntervalInMins, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.IntervalInMins, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -84647,7 +85333,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSLogAnalyticsOperationResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSLogAnalyticsOperationResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSLogAnalyticsOperationResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"Properties": "Microsoft.Azure.Management.Compute.Models.LogAnalyticsOutput",
@@ -85265,7 +85951,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ColocationStatus": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -85681,7 +86367,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -85814,7 +86500,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ColocationStatus": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -86288,7 +86974,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ColocationStatus": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -86458,7 +87144,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSProximityPlacementGroup, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ColocationStatus": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -86922,7 +87608,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSResourceSku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSResourceSku, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSResourceSku, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Capacity": "Microsoft.Azure.Management.Compute.Models.ResourceSkuCapacity",
"Capabilities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ResourceSkuCapabilities]",
@@ -87081,7 +87767,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -87172,7 +87858,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -87318,7 +88004,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Lun": "System.Nullable`1[System.Int32]",
"Id": "System.String"
@@ -87446,7 +88132,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SourceVault": "Microsoft.Azure.Management.Compute.Models.SourceVault",
"SecretUrl": "System.String"
@@ -87518,7 +88204,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SourceVault": "Microsoft.Azure.Management.Compute.Models.SourceVault",
"KeyUrl": "System.String"
@@ -87691,7 +88377,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -87885,7 +88571,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Lun": "System.Nullable`1[System.Int32]",
"Id": "System.String"
@@ -88037,7 +88723,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SourceVault": "Microsoft.Azure.Management.Compute.Models.SourceVault",
"SecretUrl": "System.String"
@@ -88115,7 +88801,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SourceVault": "Microsoft.Azure.Management.Compute.Models.SourceVault",
"KeyUrl": "System.String"
@@ -88292,7 +88978,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
@@ -88370,7 +89056,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -88446,7 +89132,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SourceVault": "Microsoft.Azure.Management.Compute.Models.SourceVault",
"SecretUrl": "System.String"
@@ -88518,7 +89204,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SourceVault": "Microsoft.Azure.Management.Compute.Models.SourceVault",
"KeyUrl": "System.String"
@@ -88691,7 +89377,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -88791,7 +89477,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SourceVault": "Microsoft.Azure.Management.Compute.Models.SourceVault",
"SecretUrl": "System.String"
@@ -88869,7 +89555,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SourceVault": "Microsoft.Azure.Management.Compute.Models.SourceVault",
"KeyUrl": "System.String"
@@ -89046,7 +89732,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -89117,7 +89803,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -89262,7 +89948,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -89437,7 +90123,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -89508,7 +90194,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -89653,7 +90339,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -89828,7 +90514,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -89899,7 +90585,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -90044,7 +90730,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -90219,7 +90905,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
@@ -90277,7 +90963,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
@@ -90409,7 +91095,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
@@ -90571,7 +91257,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
@@ -90629,7 +91315,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
@@ -90761,7 +91447,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
@@ -90923,7 +91609,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -91032,7 +91718,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -91209,7 +91895,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -91428,7 +92114,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -91839,7 +92525,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -92132,7 +92818,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAccessUri",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAccessUri, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAccessUri, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessSAS": "System.String"
},
@@ -92557,7 +93243,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -92902,7 +93588,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -93011,7 +93697,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
@@ -93068,7 +93754,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -93245,7 +93931,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshotUpdate, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
"EncryptionSettingsCollection": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
@@ -93426,7 +94112,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationData": "Microsoft.Azure.Management.Compute.Models.CreationData",
"Encryption": "Microsoft.Azure.Management.Compute.Models.Encryption",
@@ -93645,7 +94331,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandDocument",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandDocument, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandDocument, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OsType": "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes",
"Parameters": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.RunCommandParameterDefinition]",
@@ -93922,7 +94608,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -94333,7 +95019,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRollingUpgradeStatusInfo",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRollingUpgradeStatusInfo, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRollingUpgradeStatusInfo, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"Policy": "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy",
@@ -94616,7 +95302,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -94961,7 +95647,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile",
@@ -95463,7 +96149,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -96518,7 +97204,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"Item": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus",
@@ -96708,7 +97394,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile",
@@ -97360,7 +98046,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile",
@@ -97590,7 +98276,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile",
@@ -97724,7 +98410,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk",
"GenericTypeArguments": [],
@@ -97796,7 +98482,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile",
@@ -98004,7 +98690,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk",
"GenericTypeArguments": [],
@@ -98144,7 +98830,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk",
"GenericTypeArguments": [],
@@ -98308,7 +98994,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk",
"GenericTypeArguments": [],
@@ -98448,7 +99134,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile",
@@ -98531,7 +99217,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk",
"GenericTypeArguments": [],
@@ -98678,7 +99364,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -98754,7 +99440,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -98829,7 +99515,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.PassNames]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.PassNames, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.PassNames, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -98849,7 +99535,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ComponentNames]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ComponentNames, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ComponentNames, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -98869,7 +99555,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.SettingNames]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.SettingNames, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.SettingNames, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -98946,7 +99632,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -99027,7 +99713,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.PassNames]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.PassNames, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.PassNames, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -99053,7 +99739,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ComponentNames]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ComponentNames, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ComponentNames, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -99079,7 +99765,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.SettingNames]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.SettingNames, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.SettingNames, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -99180,7 +99866,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -99256,7 +99942,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -99367,7 +100053,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -99552,7 +100238,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -99681,7 +100367,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -99926,7 +100612,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -100002,7 +100688,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -100280,7 +100966,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -100630,7 +101316,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -100706,7 +101392,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -100837,7 +101523,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration[], Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration[], Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration",
"GenericTypeArguments": [],
@@ -100968,7 +101654,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -101123,7 +101809,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration[], Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration[], Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration",
"GenericTypeArguments": [],
@@ -101296,7 +101982,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -101372,7 +102058,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -101465,7 +102151,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VaultCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VaultCertificate[], Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VaultCertificate[], Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Management.Compute.Models.VaultCertificate",
"GenericTypeArguments": [],
@@ -101522,7 +102208,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -101627,7 +102313,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VaultCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VaultCertificate[], Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VaultCertificate[], Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Management.Compute.Models.VaultCertificate",
"GenericTypeArguments": [],
@@ -101702,7 +102388,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -101778,7 +102464,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -101928,7 +102614,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -102108,7 +102794,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -102184,7 +102870,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -102259,7 +102945,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ProtocolTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ProtocolTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ProtocolTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -102336,7 +103022,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -102417,7 +103103,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ProtocolTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ProtocolTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ProtocolTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -102518,7 +103204,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -102706,7 +103392,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.UpgradeMode]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -102726,7 +103412,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSProfile, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSProfile, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinuxConfiguration": "Microsoft.Azure.Management.Compute.Models.LinuxConfiguration",
"WindowsConfiguration": "Microsoft.Azure.Management.Compute.Models.WindowsConfiguration",
@@ -102818,7 +103504,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetStorageProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetStorageProfile, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetStorageProfile, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ImageReference": "Microsoft.Azure.Management.Compute.Models.ImageReference",
"OsDisk": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSDisk",
@@ -102895,7 +103581,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration[], Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration[], Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration",
"GenericTypeArguments": [],
@@ -102913,7 +103599,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension",
"GenericTypeArguments": [],
@@ -103095,7 +103781,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MaxBatchInstancePercent": "System.Nullable`1[System.Int32]",
"MaxUnhealthyInstancePercent": "System.Nullable`1[System.Int32]",
@@ -103303,7 +103989,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.BootDiagnostics",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.BootDiagnostics, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.BootDiagnostics, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Nullable`1[System.Boolean]",
"StorageUri": "System.String"
@@ -103514,7 +104200,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -103757,7 +104443,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.UpgradeMode]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -103783,7 +104469,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSProfile, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSProfile, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinuxConfiguration": "Microsoft.Azure.Management.Compute.Models.LinuxConfiguration",
"WindowsConfiguration": "Microsoft.Azure.Management.Compute.Models.WindowsConfiguration",
@@ -103881,7 +104567,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetStorageProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetStorageProfile, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetStorageProfile, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ImageReference": "Microsoft.Azure.Management.Compute.Models.ImageReference",
"OsDisk": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSDisk",
@@ -103964,7 +104650,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration[], Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration[], Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration",
"GenericTypeArguments": [],
@@ -103988,7 +104674,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension",
"GenericTypeArguments": [],
@@ -104230,7 +104916,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MaxBatchInstancePercent": "System.Nullable`1[System.Int32]",
"MaxUnhealthyInstancePercent": "System.Nullable`1[System.Int32]",
@@ -104486,7 +105172,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.BootDiagnostics",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.BootDiagnostics, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.BootDiagnostics, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Nullable`1[System.Boolean]",
"StorageUri": "System.String"
@@ -104795,7 +105481,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -104993,7 +105679,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.UpgradeMode]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -105019,7 +105705,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSProfile, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSProfile, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinuxConfiguration": "Microsoft.Azure.Management.Compute.Models.LinuxConfiguration",
"WindowsConfiguration": "Microsoft.Azure.Management.Compute.Models.WindowsConfiguration",
@@ -105117,7 +105803,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetStorageProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetStorageProfile, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetStorageProfile, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ImageReference": "Microsoft.Azure.Management.Compute.Models.ImageReference",
"OsDisk": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSDisk",
@@ -105200,7 +105886,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration[], Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration[], Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration",
"GenericTypeArguments": [],
@@ -105224,7 +105910,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension",
"GenericTypeArguments": [],
@@ -105466,7 +106152,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MaxBatchInstancePercent": "System.Nullable`1[System.Int32]",
"MaxUnhealthyInstancePercent": "System.Nullable`1[System.Int32]",
@@ -105722,7 +106408,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.BootDiagnostics",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.BootDiagnostics, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.BootDiagnostics, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Nullable`1[System.Boolean]",
"StorageUri": "System.String"
@@ -106203,7 +106889,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.UpgradeMode]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -106229,7 +106915,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSProfile, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSProfile, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinuxConfiguration": "Microsoft.Azure.Management.Compute.Models.LinuxConfiguration",
"WindowsConfiguration": "Microsoft.Azure.Management.Compute.Models.WindowsConfiguration",
@@ -106327,7 +107013,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetStorageProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetStorageProfile, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetStorageProfile, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ImageReference": "Microsoft.Azure.Management.Compute.Models.ImageReference",
"OsDisk": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSDisk",
@@ -106410,7 +107096,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration[], Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration[], Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration",
"GenericTypeArguments": [],
@@ -106434,7 +107120,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension[], Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension",
"GenericTypeArguments": [],
@@ -106676,7 +107362,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MaxBatchInstancePercent": "System.Nullable`1[System.Int32]",
"MaxUnhealthyInstancePercent": "System.Nullable`1[System.Int32]",
@@ -106932,7 +107618,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.BootDiagnostics",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.BootDiagnostics, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.BootDiagnostics, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Nullable`1[System.Boolean]",
"StorageUri": "System.String"
@@ -107252,7 +107938,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Subnet": "Microsoft.Azure.Management.Compute.Models.ApiEntityReference",
"PublicIPAddressConfiguration": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetPublicIPAddressConfiguration",
@@ -107569,7 +108255,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag[], Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag[], Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag",
"GenericTypeArguments": [],
@@ -107932,7 +108618,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag[], Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag[], Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag",
"GenericTypeArguments": [],
@@ -108055,7 +108741,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpTagType": "System.String",
"Tag": "System.String"
@@ -108297,7 +108983,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VaultCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VaultCertificate, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VaultCertificate, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CertificateUrl": "System.String",
"CertificateStore": "System.String"
@@ -108539,7 +109225,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -108615,7 +109301,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -108767,7 +109453,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -108916,7 +109602,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -109067,7 +109753,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -109199,7 +109885,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -109275,7 +109961,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -109425,7 +110111,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -109574,7 +110260,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -109723,7 +110409,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -109855,7 +110541,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -109931,7 +110617,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -110081,7 +110767,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -110230,7 +110916,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -110379,7 +111065,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -110511,7 +111197,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -110587,7 +111273,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -110739,7 +111425,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -110921,7 +111607,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -110997,7 +111683,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -111202,7 +111888,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent[], Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent[], Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent",
"GenericTypeArguments": [],
@@ -111220,7 +111906,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.WinRMListener[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.WinRMListener[], Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.WinRMListener[], Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Management.Compute.Models.WinRMListener",
"GenericTypeArguments": [],
@@ -111258,7 +111944,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.SshPublicKey[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SshPublicKey[], Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SshPublicKey[], Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Management.Compute.Models.SshPublicKey",
"GenericTypeArguments": [],
@@ -111276,7 +111962,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VaultSecretGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VaultSecretGroup[], Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VaultSecretGroup[], Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Management.Compute.Models.VaultSecretGroup",
"GenericTypeArguments": [],
@@ -111333,7 +112019,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -111586,7 +112272,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent[], Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent[], Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent",
"GenericTypeArguments": [],
@@ -111610,7 +112296,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.WinRMListener[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.WinRMListener[], Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.WinRMListener[], Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Management.Compute.Models.WinRMListener",
"GenericTypeArguments": [],
@@ -111660,7 +112346,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.SshPublicKey[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SshPublicKey[], Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SshPublicKey[], Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Management.Compute.Models.SshPublicKey",
"GenericTypeArguments": [],
@@ -111684,7 +112370,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VaultSecretGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VaultSecretGroup[], Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VaultSecretGroup[], Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Management.Compute.Models.VaultSecretGroup",
"GenericTypeArguments": [],
@@ -111759,7 +112445,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -111835,7 +112521,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -112021,7 +112707,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -112249,7 +112935,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -112325,7 +113011,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -112492,7 +113178,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -112530,7 +113216,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -112676,7 +113362,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk[], Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk[], Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk",
"GenericTypeArguments": [],
@@ -112733,7 +113419,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -112936,7 +113622,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -112986,7 +113672,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -113180,7 +113866,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk[], Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk[], Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk",
"GenericTypeArguments": [],
@@ -113255,7 +113941,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -113369,7 +114055,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -113678,7 +114364,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.UpgradeMode",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -114183,7 +114869,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -114670,7 +115356,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.UpgradeMode",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -115337,7 +116023,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -116040,7 +116726,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -116493,7 +117179,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRecoveryWalkResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRecoveryWalkResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRecoveryWalkResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"WalkPerformed": "System.Nullable`1[System.Boolean]",
"NextPlatformUpdateDomain": "System.Nullable`1[System.Int32]"
@@ -116621,7 +117307,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -117103,7 +117789,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -117285,7 +117971,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -117815,7 +118501,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetSku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetSku, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetSku, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Compute.Models.Sku",
"Capacity": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetSkuCapacity",
@@ -118092,7 +118778,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -119189,7 +119875,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -119576,7 +120262,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -119963,7 +120649,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -120350,7 +121036,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -120464,7 +121150,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -120737,7 +121423,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -120973,7 +121659,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.CachingTypes",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -121436,7 +122122,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.UpgradeMode",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -121664,7 +122350,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -122273,7 +122959,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.CachingTypes",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -122862,7 +123548,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.UpgradeMode",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -123087,7 +123773,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -123163,7 +123849,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -123772,7 +124458,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.CachingTypes",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -124361,7 +125047,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.UpgradeMode",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -124573,7 +125259,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -124918,7 +125604,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -125305,7 +125991,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSRunCommandResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Error": "Microsoft.Azure.Management.Compute.Models.ApiError",
"Item": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus",
@@ -125479,7 +126165,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -126114,7 +126800,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachine, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayHint": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
@@ -126349,7 +127035,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile",
@@ -126427,7 +127113,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile",
@@ -126594,7 +127280,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.CachingTypes",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -126772,7 +127458,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile",
@@ -126975,7 +127661,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.CachingTypes",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -127183,7 +127869,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile",
@@ -127261,7 +127947,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile",
@@ -127395,7 +128081,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVM, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AdditionalCapabilities": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
"DiagnosticsProfile": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile",
@@ -127553,7 +128239,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Extension.DSC",
"Name": "Microsoft.Azure.Commands.Compute.Extension.DSC.VirtualMachineDscExtensionContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.DSC.VirtualMachineDscExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.DSC.VirtualMachineDscExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
"Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
@@ -127886,7 +128572,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineInstanceView",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineInstanceView, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineInstanceView, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BootDiagnostics": "Microsoft.Azure.Management.Compute.Models.BootDiagnosticsInstanceView",
"MaintenanceRedeployStatus": "Microsoft.Azure.Management.Compute.Models.MaintenanceRedeployStatus",
@@ -129030,7 +129716,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -129344,7 +130030,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -130648,7 +131334,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -130724,7 +131410,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -130951,7 +131637,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -131232,7 +131918,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
"SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
@@ -131938,7 +132624,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -132632,7 +133318,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -134802,7 +135488,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -135078,7 +135764,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -135624,7 +136310,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption",
"Name": "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption.AzureDiskEncryptionExtensionContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption.AzureDiskEncryptionExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption.AzureDiskEncryptionExtensionContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SubStatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
"Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
@@ -136015,7 +136701,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -136379,7 +137065,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -138443,7 +139129,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSAzureOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsSuccessStatusCode": "System.Boolean",
"StatusCode": "System.Net.HttpStatusCode",
@@ -138765,7 +139451,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSet, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutomaticRepairsPolicy": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
"VirtualMachineProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
@@ -139237,7 +139923,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVmssDiskEncryptionStatusContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVmssDiskEncryptionStatusContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVmssDiskEncryptionStatusContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"EncryptionSettings": "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption.AzureVmssDiskEncryptionExtensionPublicSettings",
"EncryptionEnabled": "System.Boolean",
@@ -139517,7 +140203,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVmssVMDiskEncryptionStatusContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVmssVMDiskEncryptionStatusContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVmssVMDiskEncryptionStatusContext, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OsVolumeEncrypted": "Microsoft.Azure.Commands.Compute.Models.EncryptionStatus",
"DataVolumesEncrypted": "Microsoft.Azure.Commands.Compute.Models.EncryptionStatus",
@@ -139839,7 +140525,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineScaleSetExtension",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineScaleSetExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineScaleSetExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoUpgradeMinorVersion": "System.Nullable`1[System.Boolean]",
"Settings": "System.Object",
@@ -140740,7 +141426,7 @@
"Microsoft.Azure.Management.Compute.Models.SubResource": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.SubResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SubResource, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SubResource, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String"
},
@@ -140817,7 +141503,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -140829,7 +141515,7 @@
"Microsoft.Azure.Management.Compute.Models.InstanceViewStatus": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Level": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.StatusLevelTypes]",
"Time": "System.Nullable`1[System.DateTime]",
@@ -140903,7 +141589,7 @@
"System.Nullable`1[Microsoft.Azure.Management.Compute.Models.StatusLevelTypes]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.StatusLevelTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.StatusLevelTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.StatusLevelTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -140915,7 +141601,7 @@
"Microsoft.Azure.Management.Compute.Models.StatusLevelTypes": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.StatusLevelTypes",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.StatusLevelTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.StatusLevelTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -141042,7 +141728,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SubResource]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SubResource]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.SubResource, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.SubResource, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -141277,7 +141963,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -141289,7 +141975,7 @@
"Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult": {
"Namespace": "Microsoft.Azure.Commands.Compute.Extension.AEM",
"Name": "Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Result": "System.Boolean",
"PartialResults": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.Extension.AEM.AEMTestResult]",
@@ -141367,7 +142053,7 @@
"Microsoft.Azure.Commands.Compute.Models.DisplayHintType": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.DisplayHintType, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -141462,7 +142148,7 @@
"Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.AdditionalCapabilities, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UltraSSDEnabled": "System.Nullable`1[System.Boolean]"
},
@@ -141516,7 +142202,7 @@
"Microsoft.Azure.Management.Compute.Models.BillingProfile": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.BillingProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.BillingProfile, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.BillingProfile, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MaxPrice": "System.Nullable`1[System.Double]"
},
@@ -141582,7 +142268,7 @@
"Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DiagnosticsProfile, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BootDiagnostics": "Microsoft.Azure.Management.Compute.Models.BootDiagnostics"
},
@@ -141636,7 +142322,7 @@
"Microsoft.Azure.Management.Compute.Models.BootDiagnostics": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.BootDiagnostics",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.BootDiagnostics, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.BootDiagnostics, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Nullable`1[System.Boolean]",
"StorageUri": "System.String"
@@ -141695,7 +142381,7 @@
"Microsoft.Azure.Management.Compute.Models.HardwareProfile": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.HardwareProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.HardwareProfile, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.HardwareProfile, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VmSize": "System.String"
},
@@ -141749,7 +142435,7 @@
"Microsoft.Azure.Management.Compute.Models.NetworkProfile": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.NetworkProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.NetworkProfile, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.NetworkProfile, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.NetworkInterfaceReference]"
},
@@ -141803,7 +142489,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.NetworkInterfaceReference]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.NetworkInterfaceReference]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.NetworkInterfaceReference, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.NetworkInterfaceReference, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -141815,7 +142501,7 @@
"Microsoft.Azure.Management.Compute.Models.NetworkInterfaceReference": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.NetworkInterfaceReference",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.NetworkInterfaceReference, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.NetworkInterfaceReference, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Primary": "System.Nullable`1[System.Boolean]",
"Id": "System.String"
@@ -141874,7 +142560,7 @@
"Microsoft.Azure.Management.Compute.Models.OSProfile": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.OSProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OSProfile, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OSProfile, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinuxConfiguration": "Microsoft.Azure.Management.Compute.Models.LinuxConfiguration",
"WindowsConfiguration": "Microsoft.Azure.Management.Compute.Models.WindowsConfiguration",
@@ -141968,7 +142654,7 @@
"Microsoft.Azure.Management.Compute.Models.LinuxConfiguration": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.LinuxConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.LinuxConfiguration, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.LinuxConfiguration, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Ssh": "Microsoft.Azure.Management.Compute.Models.SshConfiguration",
"DisablePasswordAuthentication": "System.Nullable`1[System.Boolean]",
@@ -142032,7 +142718,7 @@
"Microsoft.Azure.Management.Compute.Models.SshConfiguration": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.SshConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SshConfiguration, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SshConfiguration, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicKeys": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SshPublicKey]"
},
@@ -142086,7 +142772,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SshPublicKey]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SshPublicKey]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.SshPublicKey, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.SshPublicKey, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -142098,7 +142784,7 @@
"Microsoft.Azure.Management.Compute.Models.SshPublicKey": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.SshPublicKey",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SshPublicKey, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SshPublicKey, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Path": "System.String",
"KeyData": "System.String"
@@ -142157,7 +142843,7 @@
"Microsoft.Azure.Management.Compute.Models.WindowsConfiguration": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.WindowsConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.WindowsConfiguration, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.WindowsConfiguration, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"WinRM": "Microsoft.Azure.Management.Compute.Models.WinRMConfiguration",
"AdditionalUnattendContent": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent]",
@@ -142231,7 +142917,7 @@
"Microsoft.Azure.Management.Compute.Models.WinRMConfiguration": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.WinRMConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.WinRMConfiguration, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.WinRMConfiguration, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Listeners": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.WinRMListener]"
},
@@ -142285,7 +142971,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.WinRMListener]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.WinRMListener]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.WinRMListener, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.WinRMListener, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -142297,7 +142983,7 @@
"Microsoft.Azure.Management.Compute.Models.WinRMListener": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.WinRMListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.WinRMListener, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.WinRMListener, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Protocol": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ProtocolTypes]",
"CertificateUrl": "System.String"
@@ -142356,7 +143042,7 @@
"System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ProtocolTypes]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ProtocolTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ProtocolTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ProtocolTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -142368,7 +143054,7 @@
"Microsoft.Azure.Management.Compute.Models.ProtocolTypes": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ProtocolTypes",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ProtocolTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ProtocolTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -142463,7 +143149,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -142475,7 +143161,7 @@
"Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.AdditionalUnattendContent, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ComponentName": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ComponentNames]",
"PassName": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.PassNames]",
@@ -142544,7 +143230,7 @@
"System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ComponentNames]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ComponentNames]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ComponentNames, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ComponentNames, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -142556,7 +143242,7 @@
"Microsoft.Azure.Management.Compute.Models.ComponentNames": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ComponentNames",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ComponentNames, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ComponentNames, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -142651,7 +143337,7 @@
"System.Nullable`1[Microsoft.Azure.Management.Compute.Models.PassNames]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.PassNames]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.PassNames, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.PassNames, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -142663,7 +143349,7 @@
"Microsoft.Azure.Management.Compute.Models.PassNames": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.PassNames",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.PassNames, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.PassNames, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -142758,7 +143444,7 @@
"System.Nullable`1[Microsoft.Azure.Management.Compute.Models.SettingNames]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.SettingNames]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.SettingNames, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.SettingNames, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -142770,7 +143456,7 @@
"Microsoft.Azure.Management.Compute.Models.SettingNames": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.SettingNames",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SettingNames, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SettingNames, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -142865,7 +143551,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VaultSecretGroup]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VaultSecretGroup]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VaultSecretGroup, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VaultSecretGroup, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -142877,7 +143563,7 @@
"Microsoft.Azure.Management.Compute.Models.VaultSecretGroup": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VaultSecretGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VaultSecretGroup, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VaultSecretGroup, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SourceVault": "Microsoft.Azure.Management.Compute.Models.SubResource",
"VaultCertificates": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VaultCertificate]"
@@ -142936,7 +143622,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VaultCertificate]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VaultCertificate]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VaultCertificate, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VaultCertificate, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -142948,7 +143634,7 @@
"Microsoft.Azure.Management.Compute.Models.VaultCertificate": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VaultCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VaultCertificate, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VaultCertificate, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CertificateUrl": "System.String",
"CertificateStore": "System.String"
@@ -143007,7 +143693,7 @@
"Microsoft.Azure.Management.Compute.Models.Plan": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.Plan",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.Plan, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.Plan, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Publisher": "System.String",
@@ -143076,7 +143762,7 @@
"Microsoft.Azure.Management.Compute.Models.StorageProfile": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.StorageProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.StorageProfile, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.StorageProfile, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ImageReference": "Microsoft.Azure.Management.Compute.Models.ImageReference",
"OsDisk": "Microsoft.Azure.Management.Compute.Models.OSDisk",
@@ -143145,7 +143831,7 @@
"Microsoft.Azure.Management.Compute.Models.ImageReference": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ImageReference",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageReference, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageReference, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Publisher": "System.String",
"Offer": "System.String",
@@ -143224,7 +143910,7 @@
"Microsoft.Azure.Management.Compute.Models.OSDisk": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.OSDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OSDisk, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OSDisk, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DiffDiskSettings": "Microsoft.Azure.Management.Compute.Models.DiffDiskSettings",
"EncryptionSettings": "Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings",
@@ -143333,7 +144019,7 @@
"Microsoft.Azure.Management.Compute.Models.DiffDiskSettings": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.DiffDiskSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DiffDiskSettings, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DiffDiskSettings, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Option": "System.String"
},
@@ -143387,7 +144073,7 @@
"Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyEncryptionKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultKeyReference",
"DiskEncryptionKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultSecretReference",
@@ -143456,7 +144142,7 @@
"Microsoft.Azure.Management.Compute.Models.KeyVaultKeyReference": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultKeyReference",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultKeyReference, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultKeyReference, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SourceVault": "Microsoft.Azure.Management.Compute.Models.SubResource",
"KeyUrl": "System.String"
@@ -143520,7 +144206,7 @@
"Microsoft.Azure.Management.Compute.Models.KeyVaultSecretReference": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultSecretReference",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultSecretReference, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultSecretReference, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SourceVault": "Microsoft.Azure.Management.Compute.Models.SubResource",
"SecretUrl": "System.String"
@@ -143584,7 +144270,7 @@
"Microsoft.Azure.Management.Compute.Models.ManagedDiskParameters": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ManagedDiskParameters",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ManagedDiskParameters, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ManagedDiskParameters, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DiskEncryptionSet": "Microsoft.Azure.Management.Compute.Models.DiskEncryptionSetParameters",
"StorageAccountType": "System.String",
@@ -143648,7 +144334,7 @@
"Microsoft.Azure.Management.Compute.Models.DiskEncryptionSetParameters": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.DiskEncryptionSetParameters",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DiskEncryptionSetParameters, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DiskEncryptionSetParameters, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String"
},
@@ -143702,7 +144388,7 @@
"Microsoft.Azure.Management.Compute.Models.VirtualHardDisk": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualHardDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualHardDisk, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualHardDisk, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Uri": "System.String"
},
@@ -143756,7 +144442,7 @@
"System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.CachingTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -143768,7 +144454,7 @@
"Microsoft.Azure.Management.Compute.Models.CachingTypes": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.CachingTypes",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CachingTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -143863,7 +144549,7 @@
"System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -143875,7 +144561,7 @@
"Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -143970,7 +144656,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DataDisk]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DataDisk]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.DataDisk, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.DataDisk, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -143982,7 +144668,7 @@
"Microsoft.Azure.Management.Compute.Models.DataDisk": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.DataDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DataDisk, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DataDisk, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ManagedDisk": "Microsoft.Azure.Management.Compute.Models.ManagedDiskParameters",
"Vhd": "Microsoft.Azure.Management.Compute.Models.VirtualHardDisk",
@@ -144108,7 +144794,7 @@
"Microsoft.Azure.Management.Compute.Models.VirtualMachineIdentity": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineIdentity, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineIdentity, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UserAssignedIdentities": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.Compute.Models.VirtualMachineIdentityUserAssignedIdentitiesValue]",
"Type": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType]",
@@ -144177,7 +144863,7 @@
"System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.Compute.Models.VirtualMachineIdentityUserAssignedIdentitiesValue]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.Compute.Models.VirtualMachineIdentityUserAssignedIdentitiesValue]",
- "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.Compute.Models.VirtualMachineIdentityUserAssignedIdentitiesValue, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.Compute.Models.VirtualMachineIdentityUserAssignedIdentitiesValue, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -144190,7 +144876,7 @@
"Microsoft.Azure.Management.Compute.Models.VirtualMachineIdentityUserAssignedIdentitiesValue": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineIdentityUserAssignedIdentitiesValue",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineIdentityUserAssignedIdentitiesValue, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineIdentityUserAssignedIdentitiesValue, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PrincipalId": "System.String",
"ClientId": "System.String"
@@ -144249,7 +144935,7 @@
"System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -144261,7 +144947,7 @@
"Microsoft.Azure.Management.Compute.Models.ResourceIdentityType": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ResourceIdentityType",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceIdentityType, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -144356,7 +145042,7 @@
"Microsoft.Azure.Management.Compute.Models.VirtualMachineInstanceView": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineInstanceView",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineInstanceView, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineInstanceView, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BootDiagnostics": "Microsoft.Azure.Management.Compute.Models.BootDiagnosticsInstanceView",
"MaintenanceRedeployStatus": "Microsoft.Azure.Management.Compute.Models.MaintenanceRedeployStatus",
@@ -144470,7 +145156,7 @@
"Microsoft.Azure.Management.Compute.Models.BootDiagnosticsInstanceView": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.BootDiagnosticsInstanceView",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.BootDiagnosticsInstanceView, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.BootDiagnosticsInstanceView, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus",
"SerialConsoleLogBlobUri": "System.String",
@@ -144534,7 +145220,7 @@
"Microsoft.Azure.Management.Compute.Models.MaintenanceRedeployStatus": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.MaintenanceRedeployStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.MaintenanceRedeployStatus, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.MaintenanceRedeployStatus, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LastOperationResultCode": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.MaintenanceOperationResultCodeTypes]",
"IsCustomerInitiatedMaintenanceAllowed": "System.Nullable`1[System.Boolean]",
@@ -144618,7 +145304,7 @@
"System.Nullable`1[Microsoft.Azure.Management.Compute.Models.MaintenanceOperationResultCodeTypes]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.MaintenanceOperationResultCodeTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.MaintenanceOperationResultCodeTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.MaintenanceOperationResultCodeTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -144630,7 +145316,7 @@
"Microsoft.Azure.Management.Compute.Models.MaintenanceOperationResultCodeTypes": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.MaintenanceOperationResultCodeTypes",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.MaintenanceOperationResultCodeTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.MaintenanceOperationResultCodeTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -144725,7 +145411,7 @@
"Microsoft.Azure.Management.Compute.Models.VirtualMachineAgentInstanceView": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineAgentInstanceView",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineAgentInstanceView, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineAgentInstanceView, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
"ExtensionHandlers": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionHandlerInstanceView]",
@@ -144789,7 +145475,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionHandlerInstanceView]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionHandlerInstanceView]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionHandlerInstanceView, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionHandlerInstanceView, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -144801,7 +145487,7 @@
"Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionHandlerInstanceView": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionHandlerInstanceView",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionHandlerInstanceView, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionHandlerInstanceView, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus",
"TypeHandlerVersion": "System.String",
@@ -144865,7 +145551,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DiskInstanceView]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DiskInstanceView]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.DiskInstanceView, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.DiskInstanceView, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -144877,7 +145563,7 @@
"Microsoft.Azure.Management.Compute.Models.DiskInstanceView": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.DiskInstanceView",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DiskInstanceView, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DiskInstanceView, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EncryptionSettings": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings]",
"Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
@@ -144941,7 +145627,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.DiskEncryptionSettings, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -144953,7 +145639,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -144965,7 +145651,7 @@
"Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Substatuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
"Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
@@ -145039,7 +145725,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtension]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtension]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtension, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineExtension, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -145051,7 +145737,7 @@
"Microsoft.Azure.Management.Compute.Models.VirtualMachineExtension": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtension",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtension, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtension, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"InstanceView": "Microsoft.Azure.Management.Compute.Models.VirtualMachineExtensionInstanceView",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -145185,7 +145871,7 @@
"Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSAutomaticRepairsPolicy, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enabled": "System.Nullable`1[System.Boolean]",
"MaxInstanceRepairsPercent": "System.Nullable`1[System.Int32]",
@@ -145231,7 +145917,7 @@
"Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetVMProfile, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExtensionProfile": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtensionProfile",
"BillingProfile": "Microsoft.Azure.Management.Compute.Models.BillingProfile",
@@ -145284,7 +145970,7 @@
"Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtensionProfile": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtensionProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtensionProfile, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtensionProfile, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Extensions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension]"
},
@@ -145328,7 +146014,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -145340,7 +146026,7 @@
"Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension": {
"Namespace": "Microsoft.Azure.Commands.Compute.Automation.Models",
"Name": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Automation.Models.PSVirtualMachineScaleSetExtension, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ProvisionAfterExtensions": "System.Collections.Generic.IList`1[System.String]",
"AutoUpgradeMinorVersion": "System.Nullable`1[System.Boolean]",
@@ -145394,7 +146080,7 @@
"Microsoft.Azure.Management.Compute.Models.ScheduledEventsProfile": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ScheduledEventsProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ScheduledEventsProfile, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ScheduledEventsProfile, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TerminateNotificationProfile": "Microsoft.Azure.Management.Compute.Models.TerminateNotificationProfile"
},
@@ -145448,7 +146134,7 @@
"Microsoft.Azure.Management.Compute.Models.TerminateNotificationProfile": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.TerminateNotificationProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.TerminateNotificationProfile, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.TerminateNotificationProfile, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enable": "System.Nullable`1[System.Boolean]",
"NotBeforeTimeout": "System.String"
@@ -145507,7 +146193,7 @@
"Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkProfile": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkProfile, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkProfile, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"HealthProbe": "Microsoft.Azure.Management.Compute.Models.ApiEntityReference",
"NetworkInterfaceConfigurations": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration]"
@@ -145566,7 +146252,7 @@
"Microsoft.Azure.Management.Compute.Models.ApiEntityReference": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ApiEntityReference",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ApiEntityReference, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ApiEntityReference, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String"
},
@@ -145620,7 +146306,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -145632,7 +146318,7 @@
"Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Management.Compute.Models.SubResource",
"DnsSettings": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfigurationDnsSettings",
@@ -145726,7 +146412,7 @@
"Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfigurationDnsSettings": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfigurationDnsSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfigurationDnsSettings, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfigurationDnsSettings, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DnsServers": "System.Collections.Generic.IList`1[System.String]"
},
@@ -145780,7 +146466,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -145792,7 +146478,7 @@
"Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIPConfiguration, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Subnet": "Microsoft.Azure.Management.Compute.Models.ApiEntityReference",
"PublicIPAddressConfiguration": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetPublicIPAddressConfiguration",
@@ -145896,7 +146582,7 @@
"Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetPublicIPAddressConfiguration": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetPublicIPAddressConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetPublicIPAddressConfiguration, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetPublicIPAddressConfiguration, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicIPPrefix": "Microsoft.Azure.Management.Compute.Models.SubResource",
"DnsSettings": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings",
@@ -145980,7 +146666,7 @@
"Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DomainNameLabel": "System.String"
},
@@ -146039,7 +146725,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -146051,7 +146737,7 @@
"Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIpTag, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"IpTagType": "System.String",
"Tag": "System.String"
@@ -146110,7 +146796,7 @@
"Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSProfile": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSProfile, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSProfile, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LinuxConfiguration": "Microsoft.Azure.Management.Compute.Models.LinuxConfiguration",
"WindowsConfiguration": "Microsoft.Azure.Management.Compute.Models.WindowsConfiguration",
@@ -146194,7 +146880,7 @@
"Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetStorageProfile": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetStorageProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetStorageProfile, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetStorageProfile, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ImageReference": "Microsoft.Azure.Management.Compute.Models.ImageReference",
"OsDisk": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSDisk",
@@ -146263,7 +146949,7 @@
"Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSDisk": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSDisk, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetOSDisk, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DiffDiskSettings": "Microsoft.Azure.Management.Compute.Models.DiffDiskSettings",
"Image": "Microsoft.Azure.Management.Compute.Models.VirtualHardDisk",
@@ -146367,7 +147053,7 @@
"Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetManagedDiskParameters": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetManagedDiskParameters",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetManagedDiskParameters, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetManagedDiskParameters, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DiskEncryptionSet": "Microsoft.Azure.Management.Compute.Models.DiskEncryptionSetParameters",
"StorageAccountType": "System.String"
@@ -146426,7 +147112,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -146438,7 +147124,7 @@
"Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetDataDisk, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ManagedDisk": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetManagedDiskParameters",
"Lun": "System.Int32",
@@ -146537,7 +147223,7 @@
"Microsoft.Azure.Management.Compute.Models.ScaleInPolicy": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ScaleInPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ScaleInPolicy, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ScaleInPolicy, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Rules": "System.Collections.Generic.IList`1[System.String]"
},
@@ -146591,7 +147277,7 @@
"Microsoft.Azure.Management.Compute.Models.Sku": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.Sku",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.Sku, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.Sku, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Capacity": "System.Nullable`1[System.Int64]",
"Tier": "System.String",
@@ -146655,7 +147341,7 @@
"Microsoft.Azure.Management.Compute.Models.UpgradePolicy": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.UpgradePolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.UpgradePolicy, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.UpgradePolicy, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutomaticOSUpgradePolicy": "Microsoft.Azure.Management.Compute.Models.AutomaticOSUpgradePolicy",
"RollingUpgradePolicy": "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy",
@@ -146724,7 +147410,7 @@
"Microsoft.Azure.Management.Compute.Models.AutomaticOSUpgradePolicy": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.AutomaticOSUpgradePolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.AutomaticOSUpgradePolicy, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.AutomaticOSUpgradePolicy, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"EnableAutomaticOSUpgrade": "System.Nullable`1[System.Boolean]",
"DisableAutomaticRollback": "System.Nullable`1[System.Boolean]"
@@ -146783,7 +147469,7 @@
"Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RollingUpgradePolicy, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"MaxBatchInstancePercent": "System.Nullable`1[System.Int32]",
"MaxUnhealthyInstancePercent": "System.Nullable`1[System.Int32]",
@@ -146857,7 +147543,7 @@
"System.Nullable`1[Microsoft.Azure.Management.Compute.Models.UpgradeMode]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.UpgradeMode]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -146869,7 +147555,7 @@
"Microsoft.Azure.Management.Compute.Models.UpgradeMode": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.UpgradeMode",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.UpgradeMode, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -146964,7 +147650,7 @@
"Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIdentity": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIdentity, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIdentity, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UserAssignedIdentities": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIdentityUserAssignedIdentitiesValue]",
"Type": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceIdentityType]",
@@ -147033,7 +147719,7 @@
"System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIdentityUserAssignedIdentitiesValue]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIdentityUserAssignedIdentitiesValue]",
- "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIdentityUserAssignedIdentitiesValue, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIdentityUserAssignedIdentitiesValue, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -147046,7 +147732,7 @@
"Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIdentityUserAssignedIdentitiesValue": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIdentityUserAssignedIdentitiesValue",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIdentityUserAssignedIdentitiesValue, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetIdentityUserAssignedIdentitiesValue, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PrincipalId": "System.String",
"ClientId": "System.String"
@@ -147125,7 +147811,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -147137,7 +147823,7 @@
"Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential": {
"Namespace": "Microsoft.Azure.Commands.Compute",
"Name": "Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.AzureVMSqlServerKeyVaultCredential, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CredentialName": "System.String",
"KeyVaultName": "System.String"
@@ -147192,7 +147878,7 @@
"Microsoft.Azure.Management.Compute.Models.AutomaticOSUpgradeProperties": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.AutomaticOSUpgradeProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.AutomaticOSUpgradeProperties, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.AutomaticOSUpgradeProperties, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AutomaticOSUpgradeSupported": "System.Boolean"
},
@@ -147251,7 +147937,7 @@
"Microsoft.Azure.Management.Compute.Models.OSDiskImage": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.OSDiskImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OSDiskImage, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OSDiskImage, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OperatingSystem": "Microsoft.Azure.Management.Compute.Models.OperatingSystemTypes"
},
@@ -147310,7 +147996,7 @@
"Microsoft.Azure.Management.Compute.Models.PurchasePlan": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.PurchasePlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.PurchasePlan, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.PurchasePlan, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Publisher": "System.String",
"Name": "System.String",
@@ -147379,7 +148065,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DataDiskImage]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DataDiskImage]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.DataDiskImage, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.DataDiskImage, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -147391,7 +148077,7 @@
"Microsoft.Azure.Management.Compute.Models.DataDiskImage": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.DataDiskImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DataDiskImage, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DataDiskImage, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Lun": "System.Nullable`1[System.Int32]"
},
@@ -147445,7 +148131,7 @@
"Microsoft.Azure.Management.Compute.Models.UsageName": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.UsageName",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.UsageName, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.UsageName, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Value": "System.String",
"LocalizedValue": "System.String"
@@ -147504,7 +148190,7 @@
"Microsoft.Azure.Management.Compute.Models.ApiError": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ApiError",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ApiError, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ApiError, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Innererror": "Microsoft.Azure.Management.Compute.Models.InnerError",
"Details": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ApiErrorBase]",
@@ -147578,7 +148264,7 @@
"Microsoft.Azure.Management.Compute.Models.InnerError": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.InnerError",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.InnerError, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.InnerError, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Exceptiontype": "System.String",
"Errordetail": "System.String"
@@ -147637,7 +148323,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ApiErrorBase]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ApiErrorBase]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.ApiErrorBase, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.ApiErrorBase, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -147649,7 +148335,7 @@
"Microsoft.Azure.Management.Compute.Models.ApiErrorBase": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ApiErrorBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ApiErrorBase, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ApiErrorBase, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Code": "System.String",
"Target": "System.String",
@@ -147713,7 +148399,7 @@
"Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetVMInstanceView": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetVMInstanceView",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetVMInstanceView, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetVMInstanceView, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"BootDiagnostics": "Microsoft.Azure.Management.Compute.Models.BootDiagnosticsInstanceView",
"MaintenanceRedeployStatus": "Microsoft.Azure.Management.Compute.Models.MaintenanceRedeployStatus",
@@ -147817,7 +148503,7 @@
"Microsoft.Azure.Management.Compute.Models.VirtualMachineHealthStatus": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineHealthStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineHealthStatus, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineHealthStatus, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Status": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus"
},
@@ -147871,7 +148557,7 @@
"Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetVMNetworkProfileConfiguration": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetVMNetworkProfileConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetVMNetworkProfileConfiguration, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetVMNetworkProfileConfiguration, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"NetworkInterfaceConfigurations": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetNetworkConfiguration]"
},
@@ -147925,7 +148611,7 @@
"Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetVMProtectionPolicy": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetVMProtectionPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetVMProtectionPolicy, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetVMProtectionPolicy, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ProtectFromScaleIn": "System.Nullable`1[System.Boolean]",
"ProtectFromScaleSetActions": "System.Nullable`1[System.Boolean]"
@@ -148016,7 +148702,7 @@
"Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ContainerServiceCustomProfile, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Orchestrator": "System.String"
},
@@ -148075,7 +148761,7 @@
"Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ContainerServiceDiagnosticsProfile, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VmDiagnostics": "Microsoft.Azure.Management.Compute.Models.ContainerServiceVMDiagnostics"
},
@@ -148134,7 +148820,7 @@
"Microsoft.Azure.Management.Compute.Models.ContainerServiceVMDiagnostics": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ContainerServiceVMDiagnostics",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ContainerServiceVMDiagnostics, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ContainerServiceVMDiagnostics, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"StorageUri": "System.String"
@@ -148198,7 +148884,7 @@
"Microsoft.Azure.Management.Compute.Models.ContainerServiceLinuxProfile": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ContainerServiceLinuxProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ContainerServiceLinuxProfile, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ContainerServiceLinuxProfile, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Ssh": "Microsoft.Azure.Management.Compute.Models.ContainerServiceSshConfiguration",
"AdminUsername": "System.String"
@@ -148262,7 +148948,7 @@
"Microsoft.Azure.Management.Compute.Models.ContainerServiceSshConfiguration": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ContainerServiceSshConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ContainerServiceSshConfiguration, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ContainerServiceSshConfiguration, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"PublicKeys": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ContainerServiceSshPublicKey]"
},
@@ -148321,7 +149007,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ContainerServiceSshPublicKey]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ContainerServiceSshPublicKey]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.ContainerServiceSshPublicKey, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.ContainerServiceSshPublicKey, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -148333,7 +149019,7 @@
"Microsoft.Azure.Management.Compute.Models.ContainerServiceSshPublicKey": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ContainerServiceSshPublicKey",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ContainerServiceSshPublicKey, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ContainerServiceSshPublicKey, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyData": "System.String"
},
@@ -148392,7 +149078,7 @@
"Microsoft.Azure.Management.Compute.Models.ContainerServiceMasterProfile": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ContainerServiceMasterProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ContainerServiceMasterProfile, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ContainerServiceMasterProfile, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Count": "System.Nullable`1[System.Int32]",
"DnsPrefix": "System.String",
@@ -148461,7 +149147,7 @@
"Microsoft.Azure.Management.Compute.Models.ContainerServiceOrchestratorProfile": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ContainerServiceOrchestratorProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ContainerServiceOrchestratorProfile, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ContainerServiceOrchestratorProfile, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OrchestratorType": "Microsoft.Azure.Management.Compute.Models.ContainerServiceOrchestratorTypes"
},
@@ -148520,7 +149206,7 @@
"Microsoft.Azure.Management.Compute.Models.ContainerServiceOrchestratorTypes": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ContainerServiceOrchestratorTypes",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ContainerServiceOrchestratorTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ContainerServiceOrchestratorTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -148615,7 +149301,7 @@
"Microsoft.Azure.Management.Compute.Models.ContainerServiceServicePrincipalProfile": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ContainerServiceServicePrincipalProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ContainerServiceServicePrincipalProfile, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ContainerServiceServicePrincipalProfile, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ClientId": "System.String",
"Secret": "System.String"
@@ -148679,7 +149365,7 @@
"Microsoft.Azure.Management.Compute.Models.ContainerServiceWindowsProfile": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ContainerServiceWindowsProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ContainerServiceWindowsProfile, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ContainerServiceWindowsProfile, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AdminUsername": "System.String",
"AdminPassword": "System.String"
@@ -148743,7 +149429,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ContainerServiceAgentPoolProfile]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ContainerServiceAgentPoolProfile]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.ContainerServiceAgentPoolProfile, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.ContainerServiceAgentPoolProfile, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -148755,7 +149441,7 @@
"Microsoft.Azure.Management.Compute.Models.ContainerServiceAgentPoolProfile": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ContainerServiceAgentPoolProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ContainerServiceAgentPoolProfile, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ContainerServiceAgentPoolProfile, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Count": "System.Int32",
"Name": "System.String",
@@ -148834,7 +149520,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SubResourceReadOnly]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SubResourceReadOnly]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.SubResourceReadOnly, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.SubResourceReadOnly, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -148846,7 +149532,7 @@
"Microsoft.Azure.Management.Compute.Models.SubResourceReadOnly": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.SubResourceReadOnly",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SubResourceReadOnly, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SubResourceReadOnly, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String"
},
@@ -148900,7 +149586,7 @@
"Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceView": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceView",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceView, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DedicatedHostInstanceView, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AvailableCapacity": "Microsoft.Azure.Management.Compute.Models.DedicatedHostAvailableCapacity",
"Statuses": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.InstanceViewStatus]",
@@ -148964,7 +149650,7 @@
"Microsoft.Azure.Management.Compute.Models.DedicatedHostAvailableCapacity": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.DedicatedHostAvailableCapacity",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DedicatedHostAvailableCapacity, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DedicatedHostAvailableCapacity, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AllocatableVMs": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DedicatedHostAllocatableVM]"
},
@@ -149018,7 +149704,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DedicatedHostAllocatableVM]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DedicatedHostAllocatableVM]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.DedicatedHostAllocatableVM, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.DedicatedHostAllocatableVM, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -149030,7 +149716,7 @@
"Microsoft.Azure.Management.Compute.Models.DedicatedHostAllocatableVM": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.DedicatedHostAllocatableVM",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DedicatedHostAllocatableVM, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DedicatedHostAllocatableVM, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Count": "System.Nullable`1[System.Double]",
"VmSize": "System.String"
@@ -149089,7 +149775,7 @@
"System.Nullable`1[Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -149101,7 +149787,7 @@
"Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DedicatedHostLicenseTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -149196,7 +149882,7 @@
"Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.EncryptionSetIdentity, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Type": "System.String",
"PrincipalId": "System.String",
@@ -149260,7 +149946,7 @@
"Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SourceVault": "Microsoft.Azure.Management.Compute.Models.SourceVault",
"KeyUrl": "System.String"
@@ -149324,7 +150010,7 @@
"Microsoft.Azure.Management.Compute.Models.SourceVault": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.SourceVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SourceVault, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SourceVault, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String"
},
@@ -149378,7 +150064,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -149390,9 +150076,10 @@
"Microsoft.Azure.Management.Compute.Models.CreationData": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.CreationData",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CreationData, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.CreationData, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ImageReference": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference",
+ "GalleryImageReference": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference",
"UploadSizeBytes": "System.Nullable`1[System.Int64]",
"CreateOption": "System.String",
"StorageAccountId": "System.String",
@@ -149456,6 +150143,10 @@
"Name": "imageReference",
"Type": "System.Reflection.RuntimeParameterInfo"
},
+ {
+ "Name": "galleryImageReference",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
{
"Name": "sourceUri",
"Type": "System.Reflection.RuntimeParameterInfo"
@@ -149479,7 +150170,7 @@
"Microsoft.Azure.Management.Compute.Models.ImageDiskReference": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageDiskReference, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Lun": "System.Nullable`1[System.Int32]",
"Id": "System.String"
@@ -149543,7 +150234,7 @@
"Microsoft.Azure.Management.Compute.Models.DiskSku": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.DiskSku",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DiskSku, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DiskSku, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Tier": "System.String"
@@ -149602,7 +150293,7 @@
"Microsoft.Azure.Management.Compute.Models.Encryption": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.Encryption",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.Encryption, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.Encryption, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DiskEncryptionSetId": "System.String",
"Type": "System.String"
@@ -149610,11 +150301,6 @@
"ElementType": null,
"GenericTypeArguments": [],
"Methods": [
- {
- "Name": "Validate",
- "Parameters": [],
- "ReturnType": "System.Void"
- },
{
"Name": "ToString",
"Parameters": [],
@@ -149652,11 +150338,11 @@
"ReturnType": null,
"Parameters": [
{
- "Name": "type",
+ "Name": "diskEncryptionSetId",
"Type": "System.Reflection.RuntimeParameterInfo"
},
{
- "Name": "diskEncryptionSetId",
+ "Name": "type",
"Type": "System.Reflection.RuntimeParameterInfo"
}
]
@@ -149666,7 +150352,7 @@
"Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsCollection, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Enabled": "System.Boolean",
"EncryptionSettings": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.EncryptionSettingsElement]",
@@ -149735,7 +150421,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.EncryptionSettingsElement]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.EncryptionSettingsElement]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.EncryptionSettingsElement, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.EncryptionSettingsElement, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -149747,7 +150433,7 @@
"Microsoft.Azure.Management.Compute.Models.EncryptionSettingsElement": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsElement",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsElement, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.EncryptionSettingsElement, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"KeyEncryptionKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndKeyReference",
"DiskEncryptionKey": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference"
@@ -149811,7 +150497,7 @@
"Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.KeyVaultAndSecretReference, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SourceVault": "Microsoft.Azure.Management.Compute.Models.SourceVault",
"SecretUrl": "System.String"
@@ -149872,10 +150558,76 @@
}
]
},
+ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ShareInfoElement]": {
+ "Namespace": "System.Collections.Generic",
+ "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ShareInfoElement]",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.ShareInfoElement, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "Microsoft.Azure.Management.Compute.Models.ShareInfoElement"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "Microsoft.Azure.Management.Compute.Models.ShareInfoElement": {
+ "Namespace": "Microsoft.Azure.Management.Compute.Models",
+ "Name": "Microsoft.Azure.Management.Compute.Models.ShareInfoElement",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ShareInfoElement, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "VmUri": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "vmUri",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
"Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionPublishingProfile, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"TargetRegions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.TargetRegion]",
"ExcludeFromLatest": "System.Nullable`1[System.Boolean]",
@@ -149954,7 +150706,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.TargetRegion]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.TargetRegion]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.TargetRegion, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.TargetRegion, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -149966,8 +150718,9 @@
"Microsoft.Azure.Management.Compute.Models.TargetRegion": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.TargetRegion",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.TargetRegion, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.TargetRegion, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
+ "Encryption": "Microsoft.Azure.Management.Compute.Models.EncryptionImages",
"RegionalReplicaCount": "System.Nullable`1[System.Int32]",
"Name": "System.String",
"StorageAccountType": "System.String"
@@ -150027,6 +150780,199 @@
{
"Name": "storageAccountType",
"Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "encryption",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "Microsoft.Azure.Management.Compute.Models.EncryptionImages": {
+ "Namespace": "Microsoft.Azure.Management.Compute.Models",
+ "Name": "Microsoft.Azure.Management.Compute.Models.EncryptionImages",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.EncryptionImages, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "OsDiskImage": "Microsoft.Azure.Management.Compute.Models.OSDiskImageEncryption",
+ "DataDiskImages": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DataDiskImageEncryption]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "osDiskImage",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "dataDiskImages",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "Microsoft.Azure.Management.Compute.Models.OSDiskImageEncryption": {
+ "Namespace": "Microsoft.Azure.Management.Compute.Models",
+ "Name": "Microsoft.Azure.Management.Compute.Models.OSDiskImageEncryption",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OSDiskImageEncryption, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DiskEncryptionSetId": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "diskEncryptionSetId",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DataDiskImageEncryption]": {
+ "Namespace": "System.Collections.Generic",
+ "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.DataDiskImageEncryption]",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.DataDiskImageEncryption, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "Microsoft.Azure.Management.Compute.Models.DataDiskImageEncryption"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "Microsoft.Azure.Management.Compute.Models.DataDiskImageEncryption": {
+ "Namespace": "Microsoft.Azure.Management.Compute.Models",
+ "Name": "Microsoft.Azure.Management.Compute.Models.DataDiskImageEncryption",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.DataDiskImageEncryption, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Lun": "System.Int32",
+ "DiskEncryptionSetId": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Validate",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "lun",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "diskEncryptionSetId",
+ "Type": "System.Reflection.RuntimeParameterInfo"
}
]
}
@@ -150035,7 +150981,7 @@
"Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryImageVersionStorageProfile, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Source": "Microsoft.Azure.Management.Compute.Models.GalleryArtifactVersionSource",
"OsDiskImage": "Microsoft.Azure.Management.Compute.Models.GalleryOSDiskImage",
@@ -150104,7 +151050,7 @@
"Microsoft.Azure.Management.Compute.Models.GalleryArtifactVersionSource": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.GalleryArtifactVersionSource",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryArtifactVersionSource, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryArtifactVersionSource, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Id": "System.String"
},
@@ -150163,7 +151109,7 @@
"Microsoft.Azure.Management.Compute.Models.GalleryOSDiskImage": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.GalleryOSDiskImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryOSDiskImage, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryOSDiskImage, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Source": "Microsoft.Azure.Management.Compute.Models.GalleryArtifactVersionSource",
"HostCaching": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.HostCaching]",
@@ -150232,7 +151178,7 @@
"System.Nullable`1[Microsoft.Azure.Management.Compute.Models.HostCaching]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.HostCaching]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.HostCaching, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.HostCaching, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -150244,7 +151190,7 @@
"Microsoft.Azure.Management.Compute.Models.HostCaching": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.HostCaching",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.HostCaching, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.HostCaching, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -150339,7 +151285,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -150351,7 +151297,7 @@
"Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryDataDiskImage, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Source": "Microsoft.Azure.Management.Compute.Models.GalleryArtifactVersionSource",
"Lun": "System.Int32",
@@ -150425,7 +151371,7 @@
"Microsoft.Azure.Management.Compute.Models.ReplicationStatus": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ReplicationStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ReplicationStatus, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ReplicationStatus, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Summary": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.RegionalReplicationStatus]",
"AggregatedState": "System.String"
@@ -150484,7 +151430,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.RegionalReplicationStatus]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.RegionalReplicationStatus]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.RegionalReplicationStatus, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.RegionalReplicationStatus, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -150496,7 +151442,7 @@
"Microsoft.Azure.Management.Compute.Models.RegionalReplicationStatus": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.RegionalReplicationStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RegionalReplicationStatus, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RegionalReplicationStatus, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Progress": "System.Nullable`1[System.Int32]",
"Region": "System.String",
@@ -150575,7 +151521,7 @@
"Microsoft.Azure.Management.Compute.Models.Disallowed": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.Disallowed",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.Disallowed, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.Disallowed, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DiskTypes": "System.Collections.Generic.IList`1[System.String]"
},
@@ -150629,7 +151575,7 @@
"Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryImageIdentifier, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Publisher": "System.String",
"Offer": "System.String",
@@ -150698,7 +151644,7 @@
"Microsoft.Azure.Management.Compute.Models.ImagePurchasePlan": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ImagePurchasePlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImagePurchasePlan, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImagePurchasePlan, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Publisher": "System.String",
@@ -150762,7 +151708,7 @@
"Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -150857,7 +151803,7 @@
"Microsoft.Azure.Management.Compute.Models.RecommendedMachineConfiguration": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.RecommendedMachineConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RecommendedMachineConfiguration, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RecommendedMachineConfiguration, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"VCPUs": "Microsoft.Azure.Management.Compute.Models.ResourceRange",
"Memory": "Microsoft.Azure.Management.Compute.Models.ResourceRange"
@@ -150916,7 +151862,7 @@
"Microsoft.Azure.Management.Compute.Models.ResourceRange": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ResourceRange",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceRange, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceRange, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Min": "System.Nullable`1[System.Int32]",
"Max": "System.Nullable`1[System.Int32]"
@@ -150975,7 +151921,7 @@
"Microsoft.Azure.Management.Compute.Models.GalleryIdentifier": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.GalleryIdentifier, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"UniqueName": "System.String"
},
@@ -151029,7 +151975,7 @@
"Microsoft.Azure.Management.Compute.Models.ImageStorageProfile": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageStorageProfile, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"OsDisk": "Microsoft.Azure.Management.Compute.Models.ImageOSDisk",
"DataDisks": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ImageDataDisk]",
@@ -151098,7 +152044,7 @@
"Microsoft.Azure.Management.Compute.Models.ImageOSDisk": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ImageOSDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageOSDisk, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageOSDisk, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DiskEncryptionSet": "Microsoft.Azure.Management.Compute.Models.DiskEncryptionSetParameters",
"OsState": "Microsoft.Azure.Management.Compute.Models.OperatingSystemStateTypes",
@@ -151197,7 +152143,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ImageDataDisk]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ImageDataDisk]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.ImageDataDisk, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.ImageDataDisk, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -151209,7 +152155,7 @@
"Microsoft.Azure.Management.Compute.Models.ImageDataDisk": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ImageDataDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageDataDisk, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ImageDataDisk, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"DiskEncryptionSet": "Microsoft.Azure.Management.Compute.Models.DiskEncryptionSetParameters",
"Snapshot": "Microsoft.Azure.Management.Compute.Models.SubResource",
@@ -151303,7 +152249,7 @@
"Microsoft.Azure.Management.Compute.Models.LogAnalyticsOutput": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.LogAnalyticsOutput",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.LogAnalyticsOutput, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.LogAnalyticsOutput, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Output": "System.String"
},
@@ -151357,7 +152303,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SubResourceWithColocationStatus]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.SubResourceWithColocationStatus]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.SubResourceWithColocationStatus, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.SubResourceWithColocationStatus, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -151369,7 +152315,7 @@
"Microsoft.Azure.Management.Compute.Models.SubResourceWithColocationStatus": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.SubResourceWithColocationStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SubResourceWithColocationStatus, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SubResourceWithColocationStatus, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ColocationStatus": "Microsoft.Azure.Management.Compute.Models.InstanceViewStatus",
"Id": "System.String"
@@ -151428,7 +152374,7 @@
"Microsoft.Azure.Management.Compute.Models.ResourceSkuCapacity": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ResourceSkuCapacity",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceSkuCapacity, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceSkuCapacity, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ScaleType": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceSkuCapacityScaleType]",
"Minimum": "System.Nullable`1[System.Int64]",
@@ -151497,7 +152443,7 @@
"System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceSkuCapacityScaleType]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceSkuCapacityScaleType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceSkuCapacityScaleType, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceSkuCapacityScaleType, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -151509,7 +152455,7 @@
"Microsoft.Azure.Management.Compute.Models.ResourceSkuCapacityScaleType": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ResourceSkuCapacityScaleType",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceSkuCapacityScaleType, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceSkuCapacityScaleType, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -151604,7 +152550,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ResourceSkuCapabilities]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ResourceSkuCapabilities]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.ResourceSkuCapabilities, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.ResourceSkuCapabilities, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -151616,7 +152562,7 @@
"Microsoft.Azure.Management.Compute.Models.ResourceSkuCapabilities": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ResourceSkuCapabilities",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceSkuCapabilities, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceSkuCapabilities, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Value": "System.String"
@@ -151675,7 +152621,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ResourceSkuCosts]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ResourceSkuCosts]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.ResourceSkuCosts, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.ResourceSkuCosts, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -151687,7 +152633,7 @@
"Microsoft.Azure.Management.Compute.Models.ResourceSkuCosts": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ResourceSkuCosts",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceSkuCosts, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceSkuCosts, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Quantity": "System.Nullable`1[System.Int64]",
"MeterID": "System.String",
@@ -151751,7 +152697,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ResourceSkuLocationInfo]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ResourceSkuLocationInfo]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.ResourceSkuLocationInfo, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.ResourceSkuLocationInfo, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -151763,7 +152709,7 @@
"Microsoft.Azure.Management.Compute.Models.ResourceSkuLocationInfo": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ResourceSkuLocationInfo",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceSkuLocationInfo, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceSkuLocationInfo, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ZoneDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ResourceSkuZoneDetails]",
"Zones": "System.Collections.Generic.IList`1[System.String]",
@@ -151827,7 +152773,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ResourceSkuZoneDetails]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ResourceSkuZoneDetails]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.ResourceSkuZoneDetails, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.ResourceSkuZoneDetails, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -151839,7 +152785,7 @@
"Microsoft.Azure.Management.Compute.Models.ResourceSkuZoneDetails": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ResourceSkuZoneDetails",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceSkuZoneDetails, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceSkuZoneDetails, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Capabilities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ResourceSkuCapabilities]",
"Name": "System.Collections.Generic.IList`1[System.String]"
@@ -151898,7 +152844,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictions]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictions]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictions, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictions, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -151910,7 +152856,7 @@
"Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictions": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictions",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictions, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictions, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"RestrictionInfo": "Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionInfo",
"Values": "System.Collections.Generic.IList`1[System.String]",
@@ -151979,7 +152925,7 @@
"Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionInfo": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionInfo",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionInfo, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionInfo, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Locations": "System.Collections.Generic.IList`1[System.String]",
"Zones": "System.Collections.Generic.IList`1[System.String]"
@@ -152038,7 +152984,7 @@
"System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionsReasonCode]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionsReasonCode]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionsReasonCode, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionsReasonCode, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -152050,7 +152996,7 @@
"Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionsReasonCode": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionsReasonCode",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionsReasonCode, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionsReasonCode, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -152145,7 +153091,7 @@
"System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionsType]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionsType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionsType, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionsType, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -152157,7 +153103,7 @@
"Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionsType": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionsType",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionsType, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.ResourceSkuRestrictionsType, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -152252,7 +153198,7 @@
"Microsoft.Azure.Management.Compute.Models.SnapshotSku": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.SnapshotSku",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SnapshotSku, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.SnapshotSku, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Name": "System.String",
"Tier": "System.String"
@@ -152311,7 +153257,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.RunCommandParameterDefinition]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.RunCommandParameterDefinition]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.RunCommandParameterDefinition, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.RunCommandParameterDefinition, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -152323,7 +153269,7 @@
"Microsoft.Azure.Management.Compute.Models.RunCommandParameterDefinition": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.RunCommandParameterDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RunCommandParameterDefinition, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RunCommandParameterDefinition, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Required": "System.Nullable`1[System.Boolean]",
"Name": "System.String",
@@ -152397,7 +153343,7 @@
"Microsoft.Azure.Management.Compute.Models.RollingUpgradeProgressInfo": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.RollingUpgradeProgressInfo",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RollingUpgradeProgressInfo, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RollingUpgradeProgressInfo, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"SuccessfulInstanceCount": "System.Nullable`1[System.Int32]",
"FailedInstanceCount": "System.Nullable`1[System.Int32]",
@@ -152466,7 +153412,7 @@
"Microsoft.Azure.Management.Compute.Models.RollingUpgradeRunningStatus": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.RollingUpgradeRunningStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RollingUpgradeRunningStatus, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RollingUpgradeRunningStatus, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LastAction": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.RollingUpgradeActionType]",
"Code": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.RollingUpgradeStatusCode]",
@@ -152535,7 +153481,7 @@
"System.Nullable`1[Microsoft.Azure.Management.Compute.Models.RollingUpgradeActionType]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.RollingUpgradeActionType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.RollingUpgradeActionType, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.RollingUpgradeActionType, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -152547,7 +153493,7 @@
"Microsoft.Azure.Management.Compute.Models.RollingUpgradeActionType": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.RollingUpgradeActionType",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RollingUpgradeActionType, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RollingUpgradeActionType, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -152642,7 +153588,7 @@
"System.Nullable`1[Microsoft.Azure.Management.Compute.Models.RollingUpgradeStatusCode]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.RollingUpgradeStatusCode]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.RollingUpgradeStatusCode, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.RollingUpgradeStatusCode, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -152654,7 +153600,7 @@
"Microsoft.Azure.Management.Compute.Models.RollingUpgradeStatusCode": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.RollingUpgradeStatusCode",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RollingUpgradeStatusCode, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.RollingUpgradeStatusCode, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -152749,7 +153695,7 @@
"Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.PSVirtualMachineDataDisk, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ManagedDisk": "Microsoft.Azure.Management.Compute.Models.ManagedDiskParameters",
"Vhd": "Microsoft.Azure.Management.Compute.Models.VirtualHardDisk",
@@ -152809,7 +153755,7 @@
"Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetSkuCapacity": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetSkuCapacity",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetSkuCapacity, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetSkuCapacity, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"ScaleType": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetSkuScaleType]",
"Minimum": "System.Nullable`1[System.Int64]",
@@ -152878,7 +153824,7 @@
"System.Nullable`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetSkuScaleType]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetSkuScaleType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetSkuScaleType, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetSkuScaleType, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -152890,7 +153836,7 @@
"Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetSkuScaleType": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetSkuScaleType",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetSkuScaleType, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineScaleSetSkuScaleType, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -152985,7 +153931,7 @@
"Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption.AzureVmssDiskEncryptionExtensionPublicSettings": {
"Namespace": "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption",
"Name": "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption.AzureVmssDiskEncryptionExtensionPublicSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption.AzureVmssDiskEncryptionExtensionPublicSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption.AzureVmssDiskEncryptionExtensionPublicSettings, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"KeyVaultURL": "System.String",
"KeyEncryptionKeyURL": "System.String",
@@ -153035,7 +153981,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineStatusCodeCount]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Compute.Models.VirtualMachineStatusCodeCount]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineStatusCodeCount, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Compute.Models.VirtualMachineStatusCodeCount, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -153047,7 +153993,7 @@
"Microsoft.Azure.Management.Compute.Models.VirtualMachineStatusCodeCount": {
"Namespace": "Microsoft.Azure.Management.Compute.Models",
"Name": "Microsoft.Azure.Management.Compute.Models.VirtualMachineStatusCodeCount",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineStatusCodeCount, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Compute.Models.VirtualMachineStatusCodeCount, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"Count": "System.Nullable`1[System.Int32]",
"Code": "System.String"
@@ -153106,7 +154052,7 @@
"Microsoft.Azure.Commands.Compute.Models.EncryptionStatus": {
"Namespace": "Microsoft.Azure.Commands.Compute.Models",
"Name": "Microsoft.Azure.Commands.Compute.Models.EncryptionStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.EncryptionStatus, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Compute.Models.EncryptionStatus, Microsoft.Azure.PowerShell.Cmdlets.Compute, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -153201,7 +154147,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Management.Compute.Models.DiskInstanceView]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Compute.Models.DiskInstanceView]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Compute.Models.DiskInstanceView, Microsoft.Azure.Management.Compute, Version=31.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Compute.Models.DiskInstanceView, Microsoft.Azure.Management.Compute, Version=33.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2.dll.json
index b72f71cb2c16..01ea292590f3 100644
--- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2.dll.json
+++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2.dll.json
@@ -14,7 +14,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -371,7 +371,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -637,7 +637,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -951,7 +951,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -1084,7 +1084,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -2945,7 +2945,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -3140,7 +3140,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -3503,7 +3503,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -3919,7 +3919,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -4031,7 +4031,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -4297,7 +4297,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -4719,7 +4719,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -5083,7 +5083,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -5447,7 +5447,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlowDebugSessionInfo",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlowDebugSessionInfo, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlowDebugSessionInfo, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CoreCount": "System.Nullable`1[System.Int32]",
"TimeToLiveInMinutes": "System.Nullable`1[System.Int32]",
@@ -5535,7 +5535,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -5751,7 +5751,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -6017,7 +6017,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlowDebugSessionCommandResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlowDebugSessionCommandResult, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlowDebugSessionCommandResult, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Data": "System.String",
"Status": "System.String"
@@ -6229,7 +6229,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -6789,7 +6789,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -7251,7 +7251,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlowDebugSession",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlowDebugSession, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlowDebugSession, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SessionId": "System.String",
"Status": "System.String"
@@ -7371,7 +7371,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -7687,7 +7687,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -8133,7 +8133,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -8469,7 +8469,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -8879,7 +8879,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.DataFlow",
"Name": "System.String",
@@ -8995,7 +8995,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -9287,7 +9287,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -9583,7 +9583,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.DataFlow",
"Name": "System.String",
@@ -9955,7 +9955,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.DataFlow",
"Name": "System.String",
@@ -10345,7 +10345,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFlow, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.DataFlow",
"Name": "System.String",
@@ -10937,7 +10937,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.Dataset",
"Structure": "System.Object",
@@ -11052,7 +11052,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -11344,7 +11344,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -11625,7 +11625,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.Dataset",
"Structure": "System.Object",
@@ -11954,7 +11954,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.Dataset",
"Structure": "System.Object",
@@ -12271,7 +12271,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataset, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.Dataset",
"Structure": "System.Object",
@@ -12862,7 +12862,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -12929,7 +12929,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExpressCustomSetup": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.CustomSetupBase]",
"NodeCount": "System.Nullable`1[System.Int32]",
@@ -13015,7 +13015,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -13082,7 +13082,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AuthorizationType": "System.String",
"Name": "System.String",
@@ -13248,7 +13248,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -13661,7 +13661,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -13812,7 +13812,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeKeys",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeKeys, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeKeys, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AuthKey1": "System.String",
"AuthKey2": "System.String"
@@ -13951,7 +13951,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -14248,7 +14248,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -14419,7 +14419,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeMetrics",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeMetrics, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeMetrics, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Nodes": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeNodeMonitoringData]",
"IntegrationRuntimeName": "System.String",
@@ -14569,7 +14569,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -14866,7 +14866,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -15037,7 +15037,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntimeNode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeError]",
"ResourceGroupName": "System.String",
@@ -15113,7 +15113,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeNode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Capabilities": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"IsActiveDispatcher": "System.Nullable`1[System.Boolean]",
@@ -15322,7 +15322,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -15805,7 +15805,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -16075,7 +16075,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -16372,7 +16372,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -16543,7 +16543,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeKeys",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeKeys, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntimeKeys, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AuthKey1": "System.String",
"AuthKey2": "System.String"
@@ -16721,7 +16721,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -17215,7 +17215,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -17524,7 +17524,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -18009,7 +18009,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -18313,7 +18313,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -18796,7 +18796,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -18971,7 +18971,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -19098,7 +19098,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -21250,7 +21250,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -21889,7 +21889,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -22234,7 +22234,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntimeStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntimeStatus, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSManagedIntegrationRuntimeStatus, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LastOperation": "Microsoft.Azure.Management.DataFactory.Models.ManagedIntegrationRuntimeOperationResult",
"ExpressCustomSetup": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.CustomSetupBase]",
@@ -22426,7 +22426,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -22839,7 +22839,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -23103,7 +23103,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -23516,7 +23516,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -23778,7 +23778,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -24189,7 +24189,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -24340,7 +24340,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeStatus, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeStatus, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Capabilities": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Links": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.LinkedIntegrationRuntime]",
@@ -24553,7 +24553,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -25053,7 +25053,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -25233,7 +25233,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeNode",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSSelfHostedIntegrationRuntimeNode, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Capabilities": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"IsActiveDispatcher": "System.Nullable`1[System.Boolean]",
@@ -25442,7 +25442,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -25925,7 +25925,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSIntegrationRuntime, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Type": "System.String",
@@ -26100,7 +26100,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.LinkedService",
"Name": "System.String",
@@ -26214,7 +26214,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -26506,7 +26506,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -26823,7 +26823,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -27187,7 +27187,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -27448,7 +27448,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.LinkedService",
"Name": "System.String",
@@ -27776,7 +27776,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.LinkedService",
"Name": "System.String",
@@ -28092,7 +28092,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSLinkedService, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.LinkedService",
"Name": "System.String",
@@ -28682,7 +28682,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]",
"Activities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]",
@@ -28797,7 +28797,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -29089,7 +29089,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -29370,7 +29370,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]",
"Activities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]",
@@ -29699,7 +29699,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]",
"Activities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]",
@@ -30016,7 +30016,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]",
"Activities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]",
@@ -30607,7 +30607,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSActivityRun",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSActivityRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSActivityRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]",
"ActivityRunStart": "System.Nullable`1[System.DateTime]",
@@ -30783,7 +30783,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -31051,7 +31051,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -31437,7 +31437,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Parameters": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"LastUpdated": "System.Nullable`1[System.DateTime]",
@@ -31518,7 +31518,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -31738,7 +31738,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -31885,7 +31885,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -32411,7 +32411,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]",
"TriggeredPipelines": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -32548,7 +32548,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -32770,7 +32770,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -33110,7 +33110,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]",
"Activities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]",
@@ -33187,7 +33187,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]",
"Activities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]",
@@ -33347,6 +33347,78 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
+ {
+ "Name": "ReferencePipelineRunId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "IsRecovery",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "StartActivityName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "StartFromFailure",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
{
"Name": "DefaultProfile",
"AliasList": [
@@ -33392,7 +33464,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]",
"Activities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]",
@@ -33491,6 +33563,102 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
+ {
+ "ParameterMetadata": {
+ "Name": "ReferencePipelineRunId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": 2,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IsRecovery",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": 3,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "StartActivityName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": 4,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "StartFromFailure",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": 5,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -33542,7 +33710,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipeline, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Parameters": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification]",
"Activities": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.DataFactory.Models.Activity]",
@@ -33641,6 +33809,102 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
+ {
+ "ParameterMetadata": {
+ "Name": "ReferencePipelineRunId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": 2,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IsRecovery",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": 3,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "StartActivityName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": 4,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "StartFromFailure",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": 5,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -33781,6 +34045,102 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
+ {
+ "ParameterMetadata": {
+ "Name": "ReferencePipelineRunId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": 4,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IsRecovery",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": 5,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "StartActivityName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": 6,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "StartFromFailure",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": 7,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -33921,6 +34281,102 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
+ {
+ "ParameterMetadata": {
+ "Name": "ReferencePipelineRunId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": 4,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IsRecovery",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": 5,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "StartActivityName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": 6,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "StartFromFailure",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": 7,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -34042,7 +34498,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Parameters": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"LastUpdated": "System.Nullable`1[System.DateTime]",
@@ -34158,7 +34614,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -34306,7 +34762,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSPipelineRun, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Parameters": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"LastUpdated": "System.Nullable`1[System.DateTime]",
@@ -34624,7 +35080,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -34846,7 +35302,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerSubscriptionStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerSubscriptionStatus, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerSubscriptionStatus, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TriggerName": "System.String",
"Status": "System.String"
@@ -34930,7 +35386,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger",
"Name": "System.String",
@@ -35217,7 +35673,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger",
"Name": "System.String",
@@ -35462,7 +35918,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger",
"Name": "System.String",
@@ -35577,7 +36033,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -35869,7 +36325,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSDataFactory, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.DataFactory.Models.FactoryIdentity",
"RepoConfiguration": "Microsoft.Azure.Management.DataFactory.Models.FactoryRepoConfiguration",
@@ -36111,7 +36567,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerSubscriptionStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerSubscriptionStatus, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTriggerSubscriptionStatus, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TriggerName": "System.String",
"Status": "System.String"
@@ -36195,7 +36651,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger",
"Name": "System.String",
@@ -36482,7 +36938,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger",
"Name": "System.String",
@@ -36766,7 +37222,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger",
"Name": "System.String",
@@ -37095,7 +37551,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger",
"Name": "System.String",
@@ -37451,7 +37907,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger",
"Name": "System.String",
@@ -37822,7 +38278,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger",
"Name": "System.String",
@@ -38211,7 +38667,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger",
"Name": "System.String",
@@ -38802,7 +39258,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger",
"Name": "System.String",
@@ -38899,7 +39355,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger",
"Name": "System.String",
@@ -39228,7 +39684,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger",
"Name": "System.String",
@@ -39545,7 +40001,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger",
"Name": "System.String",
@@ -39642,7 +40098,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger",
"Name": "System.String",
@@ -39971,7 +40427,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataFactoryV2.Models",
"Name": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataFactoryV2.Models.PSTrigger, Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Management.DataFactory.Models.Trigger",
"Name": "System.String",
diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore.dll.json
index bddb7af016ec..1d5a06f82f1f 100644
--- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore.dll.json
+++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore.dll.json
@@ -14,7 +14,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreFirewallRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"StartIpAddress": "System.String",
@@ -380,7 +380,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreTrustedIdProvider",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreTrustedIdProvider, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreTrustedIdProvider, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"IdProvider": "System.String"
@@ -703,7 +703,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreVirtualNetworkRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IgnoreMissingVnetServiceEndpoint": "System.Nullable`1[System.Boolean]",
"ResourceGroupName": "System.String",
@@ -1189,7 +1189,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.PSDataLakeStoreAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.PSDataLakeStoreAccount, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.PSDataLakeStoreAccount, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"EncryptionConfig": "Microsoft.Azure.Management.DataLake.Store.Models.EncryptionConfig",
"Identity": "Microsoft.Azure.Management.DataLake.Store.Models.EncryptionIdentity",
@@ -1567,7 +1567,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreFirewallRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"StartIpAddress": "System.String",
@@ -1849,7 +1849,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreTrustedIdProvider",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreTrustedIdProvider, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreTrustedIdProvider, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"IdProvider": "System.String"
@@ -2130,7 +2130,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreVirtualNetworkRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IgnoreMissingVnetServiceEndpoint": "System.Nullable`1[System.Boolean]",
"ResourceGroupName": "System.String",
@@ -2373,7 +2373,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.PSDataLakeStoreAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.PSDataLakeStoreAccount, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.PSDataLakeStoreAccount, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"EncryptionConfig": "Microsoft.Azure.Management.DataLake.Store.Models.EncryptionConfig",
"Identity": "Microsoft.Azure.Management.DataLake.Store.Models.EncryptionIdentity",
@@ -4341,7 +4341,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.PSDataLakeStoreAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.PSDataLakeStoreAccount, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.PSDataLakeStoreAccount, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"EncryptionConfig": "Microsoft.Azure.Management.DataLake.Store.Models.EncryptionConfig",
"Identity": "Microsoft.Azure.Management.DataLake.Store.Models.EncryptionIdentity",
@@ -4913,7 +4913,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreFirewallRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"StartIpAddress": "System.String",
@@ -5279,7 +5279,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreTrustedIdProvider",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreTrustedIdProvider, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreTrustedIdProvider, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"IdProvider": "System.String"
@@ -5602,7 +5602,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreVirtualNetworkRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreVirtualNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IgnoreMissingVnetServiceEndpoint": "System.Nullable`1[System.Boolean]",
"ResourceGroupName": "System.String",
@@ -6121,7 +6121,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -6285,7 +6285,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -6494,7 +6494,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -6784,7 +6784,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -7091,7 +7091,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -7446,7 +7446,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -7777,7 +7777,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -8083,7 +8083,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -8236,7 +8236,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.LogLevel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.LogLevel, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.LogLevel, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8422,7 +8422,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -8681,7 +8681,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -8870,7 +8870,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.LogLevel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.LogLevel, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.LogLevel, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9100,7 +9100,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItem, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItem, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LastWriteTime": "System.DateTimeOffset",
"LastAccessTime": "System.DateTimeOffset",
@@ -9194,7 +9194,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -9322,7 +9322,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -9444,7 +9444,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreChildItemSummary",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreChildItemSummary, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreChildItemSummary, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DirectoryCount": "System.Int64",
"FileCount": "System.Int64",
@@ -9525,7 +9525,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -9671,7 +9671,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -9817,7 +9817,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreDeletedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreDeletedItem, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreDeletedItem, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "System.Nullable`1[Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+FileType]",
"CreationTime": "System.Nullable`1[System.DateTime]",
@@ -10186,7 +10186,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItem, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItem, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LastWriteTime": "System.DateTimeOffset",
"LastAccessTime": "System.DateTimeOffset",
@@ -10280,7 +10280,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -10408,7 +10408,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -10530,7 +10530,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType",
"Scope": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+ScopeType",
@@ -10634,7 +10634,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -10762,7 +10762,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -10938,7 +10938,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -11174,7 +11174,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -11409,7 +11409,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -11596,7 +11596,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -11849,7 +11849,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -11912,7 +11912,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+Owner",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+Owner, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+Owner, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -12080,7 +12080,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -12149,7 +12149,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+Owner",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+Owner, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+Owner, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -12350,7 +12350,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -12478,7 +12478,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -12657,7 +12657,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -12810,7 +12810,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.LogLevel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.LogLevel, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.LogLevel, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -13020,7 +13020,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -13303,7 +13303,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -13492,7 +13492,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.LogLevel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.LogLevel, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.LogLevel, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -13763,7 +13763,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
"GenericTypeArguments": [],
@@ -13781,7 +13781,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -13929,7 +13929,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
"GenericTypeArguments": [],
@@ -13953,7 +13953,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -14138,7 +14138,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -14201,7 +14201,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -14347,7 +14347,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -14416,7 +14416,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -14601,7 +14601,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -14801,7 +14801,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -15058,7 +15058,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
"GenericTypeArguments": [],
@@ -15195,7 +15195,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
"GenericTypeArguments": [],
@@ -15383,7 +15383,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -15565,7 +15565,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -15798,7 +15798,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -15861,7 +15861,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce",
"GenericTypeArguments": [],
@@ -15879,7 +15879,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -16155,7 +16155,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -16224,7 +16224,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce",
"GenericTypeArguments": [],
@@ -16414,7 +16414,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -16483,7 +16483,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -16929,7 +16929,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreDeletedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreDeletedItem, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreDeletedItem, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "System.Nullable`1[Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+FileType]",
"CreationTime": "System.Nullable`1[System.DateTime]",
@@ -17064,7 +17064,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreDeletedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreDeletedItem, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreDeletedItem, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "System.Nullable`1[Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+FileType]",
"CreationTime": "System.Nullable`1[System.DateTime]",
@@ -17457,7 +17457,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreDeletedItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreDeletedItem, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreDeletedItem, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "System.Nullable`1[Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+FileType]",
"CreationTime": "System.Nullable`1[System.DateTime]",
@@ -17692,7 +17692,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType",
"Scope": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+ScopeType",
@@ -17796,7 +17796,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -17859,7 +17859,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce",
"GenericTypeArguments": [],
@@ -18014,7 +18014,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -18083,7 +18083,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce",
"GenericTypeArguments": [],
@@ -18256,7 +18256,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType",
"Scope": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+ScopeType",
@@ -18360,7 +18360,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -18423,7 +18423,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce",
"GenericTypeArguments": [],
@@ -18441,7 +18441,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -18562,7 +18562,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+Permission",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+Permission, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+Permission, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -18820,7 +18820,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -18889,7 +18889,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce[], Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce",
"GenericTypeArguments": [],
@@ -19079,7 +19079,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -19148,7 +19148,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -19281,7 +19281,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+Permission",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+Permission, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+Permission, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -19703,7 +19703,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItem, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItem, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LastWriteTime": "System.DateTimeOffset",
"LastAccessTime": "System.DateTimeOffset",
@@ -19797,7 +19797,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -19878,7 +19878,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+PathRelativeExpiryOptions",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+PathRelativeExpiryOptions, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+PathRelativeExpiryOptions, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -20064,7 +20064,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -20227,7 +20227,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -20296,7 +20296,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+PathRelativeExpiryOptions",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+PathRelativeExpiryOptions, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+PathRelativeExpiryOptions, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -20565,7 +20565,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -20628,7 +20628,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+Owner",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+Owner, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+Owner, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -20832,7 +20832,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -20901,7 +20901,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+Owner",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+Owner, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+Owner, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -21150,7 +21150,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -21296,7 +21296,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -21481,7 +21481,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -21544,7 +21544,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+PathType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+PathType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+PathType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -21712,7 +21712,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -21781,7 +21781,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+PathType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+PathType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+PathType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -23732,7 +23732,7 @@
"Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStorePathInstance, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TransformedPath": "System.String",
"OriginalPath": "System.String"
@@ -23797,7 +23797,7 @@
"System.Nullable`1[Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+FileType]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+FileType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+FileType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+FileType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -23809,7 +23809,7 @@
"Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+FileType": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+FileType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+FileType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+FileType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -23928,7 +23928,7 @@
"Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -24023,7 +24023,7 @@
"Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+ScopeType": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+ScopeType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+ScopeType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+ScopeType, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -24118,7 +24118,7 @@
"Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce": {
"Namespace": "Microsoft.Azure.Commands.DataLakeStore.Models",
"Name": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.7.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreItemAce, Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore, Version=1.2.8.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+AceType",
"Scope": "Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreEnums+ScopeType",
diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll.json
index 3bd05a6bc1e4..c43d489006fa 100644
--- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll.json
+++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll.json
@@ -14,7 +14,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightJob, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightJob, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExitValue": "System.Nullable`1[System.Int32]",
"Callback": "System.Object",
@@ -537,7 +537,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models.Job",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.Job.JobDisplayOutputType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Job.JobDisplayOutputType, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Job.JobDisplayOutputType, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -849,7 +849,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models.Job",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.Job.JobDisplayOutputType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Job.JobDisplayOutputType, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Job.JobDisplayOutputType, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1580,7 +1580,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightHiveJobDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightHiveJobDefinition, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightHiveJobDefinition, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RunAsFileJob": "System.Boolean",
"Defines": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -2066,7 +2066,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMapReduceJobDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMapReduceJobDefinition, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMapReduceJobDefinition, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Defines": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"LibJars": "System.Collections.Generic.IList`1[System.String]",
@@ -2552,7 +2552,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightPigJobDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightPigJobDefinition, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightPigJobDefinition, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Arguments": "System.Collections.Generic.IList`1[System.String]",
"Files": "System.Collections.Generic.IList`1[System.String]",
@@ -2909,7 +2909,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightSqoopJobDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightSqoopJobDefinition, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightSqoopJobDefinition, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Arguments": "System.Collections.Generic.IList`1[System.String]",
"Files": "System.Collections.Generic.IList`1[System.String]",
@@ -3268,7 +3268,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightStreamingMapReduceJobDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightStreamingMapReduceJobDefinition, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightStreamingMapReduceJobDefinition, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Defines": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"CommandEnvironment": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -3840,7 +3840,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightJob, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightJob, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExitValue": "System.Nullable`1[System.Int32]",
"Callback": "System.Object",
@@ -3930,7 +3930,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightJobDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightJobDefinition, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightJobDefinition, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Arguments": "System.Collections.Generic.IList`1[System.String]",
"Files": "System.Collections.Generic.IList`1[System.String]",
@@ -4079,7 +4079,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightJobDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightJobDefinition, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightJobDefinition, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Arguments": "System.Collections.Generic.IList`1[System.String]",
"Files": "System.Collections.Generic.IList`1[System.String]",
@@ -4234,7 +4234,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightJob, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightJob, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExitValue": "System.Nullable`1[System.Int32]",
"Callback": "System.Object",
@@ -4807,7 +4807,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightJob",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightJob, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightJob, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExitValue": "System.Nullable`1[System.Int32]",
"Callback": "System.Object",
@@ -5225,7 +5225,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OozieMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
"HiveMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
@@ -5244,12 +5244,13 @@
"ZookeeperNodeSize": "System.String",
"EdgeNodeSize": "System.String",
"WorkerNodeSize": "System.String",
- "HeadNodeSize": "System.String",
"CertificateFilePath": "System.String",
"CertificatePassword": "System.String",
+ "HeadNodeSize": "System.String",
"DefaultStorageAccountKey": "System.String",
"DefaultStorageAccountName": "System.String",
- "ClusterType": "System.String"
+ "ClusterType": "System.String",
+ "MinSupportedTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -5300,7 +5301,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OozieMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
"HiveMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
@@ -5319,12 +5320,13 @@
"ZookeeperNodeSize": "System.String",
"EdgeNodeSize": "System.String",
"WorkerNodeSize": "System.String",
- "HeadNodeSize": "System.String",
"CertificateFilePath": "System.String",
"CertificatePassword": "System.String",
+ "HeadNodeSize": "System.String",
"DefaultStorageAccountKey": "System.String",
"DefaultStorageAccountName": "System.String",
- "ClusterType": "System.String"
+ "ClusterType": "System.String",
+ "MinSupportedTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -5449,7 +5451,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OozieMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
"HiveMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
@@ -5468,12 +5470,13 @@
"ZookeeperNodeSize": "System.String",
"EdgeNodeSize": "System.String",
"WorkerNodeSize": "System.String",
- "HeadNodeSize": "System.String",
"CertificateFilePath": "System.String",
"CertificatePassword": "System.String",
+ "HeadNodeSize": "System.String",
"DefaultStorageAccountKey": "System.String",
"DefaultStorageAccountName": "System.String",
- "ClusterType": "System.String"
+ "ClusterType": "System.String",
+ "MinSupportedTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -5628,7 +5631,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OozieMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
"HiveMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
@@ -5647,12 +5650,13 @@
"ZookeeperNodeSize": "System.String",
"EdgeNodeSize": "System.String",
"WorkerNodeSize": "System.String",
- "HeadNodeSize": "System.String",
"CertificateFilePath": "System.String",
"CertificatePassword": "System.String",
+ "HeadNodeSize": "System.String",
"DefaultStorageAccountKey": "System.String",
"DefaultStorageAccountName": "System.String",
- "ClusterType": "System.String"
+ "ClusterType": "System.String",
+ "MinSupportedTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -5703,7 +5707,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OozieMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
"HiveMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
@@ -5722,12 +5726,13 @@
"ZookeeperNodeSize": "System.String",
"EdgeNodeSize": "System.String",
"WorkerNodeSize": "System.String",
- "HeadNodeSize": "System.String",
"CertificateFilePath": "System.String",
"CertificatePassword": "System.String",
+ "HeadNodeSize": "System.String",
"DefaultStorageAccountKey": "System.String",
"DefaultStorageAccountName": "System.String",
- "ClusterType": "System.String"
+ "ClusterType": "System.String",
+ "MinSupportedTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -6140,7 +6145,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OozieMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
"HiveMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
@@ -6159,12 +6164,13 @@
"ZookeeperNodeSize": "System.String",
"EdgeNodeSize": "System.String",
"WorkerNodeSize": "System.String",
- "HeadNodeSize": "System.String",
"CertificateFilePath": "System.String",
"CertificatePassword": "System.String",
+ "HeadNodeSize": "System.String",
"DefaultStorageAccountKey": "System.String",
"DefaultStorageAccountName": "System.String",
- "ClusterType": "System.String"
+ "ClusterType": "System.String",
+ "MinSupportedTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -6703,7 +6709,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OozieMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
"HiveMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
@@ -6722,12 +6728,13 @@
"ZookeeperNodeSize": "System.String",
"EdgeNodeSize": "System.String",
"WorkerNodeSize": "System.String",
- "HeadNodeSize": "System.String",
"CertificateFilePath": "System.String",
"CertificatePassword": "System.String",
+ "HeadNodeSize": "System.String",
"DefaultStorageAccountKey": "System.String",
"DefaultStorageAccountName": "System.String",
- "ClusterType": "System.String"
+ "ClusterType": "System.String",
+ "MinSupportedTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -6778,7 +6785,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OozieMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
"HiveMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
@@ -6797,12 +6804,13 @@
"ZookeeperNodeSize": "System.String",
"EdgeNodeSize": "System.String",
"WorkerNodeSize": "System.String",
- "HeadNodeSize": "System.String",
"CertificateFilePath": "System.String",
"CertificatePassword": "System.String",
+ "HeadNodeSize": "System.String",
"DefaultStorageAccountKey": "System.String",
"DefaultStorageAccountName": "System.String",
- "ClusterType": "System.String"
+ "ClusterType": "System.String",
+ "MinSupportedTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -6852,7 +6860,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastoreType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastoreType, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastoreType, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -7048,7 +7056,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OozieMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
"HiveMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
@@ -7067,12 +7075,13 @@
"ZookeeperNodeSize": "System.String",
"EdgeNodeSize": "System.String",
"WorkerNodeSize": "System.String",
- "HeadNodeSize": "System.String",
"CertificateFilePath": "System.String",
"CertificatePassword": "System.String",
+ "HeadNodeSize": "System.String",
"DefaultStorageAccountKey": "System.String",
"DefaultStorageAccountName": "System.String",
- "ClusterType": "System.String"
+ "ClusterType": "System.String",
+ "MinSupportedTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -7128,7 +7137,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastoreType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastoreType, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastoreType, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -7360,7 +7369,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OozieMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
"HiveMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
@@ -7379,12 +7388,13 @@
"ZookeeperNodeSize": "System.String",
"EdgeNodeSize": "System.String",
"WorkerNodeSize": "System.String",
- "HeadNodeSize": "System.String",
"CertificateFilePath": "System.String",
"CertificatePassword": "System.String",
+ "HeadNodeSize": "System.String",
"DefaultStorageAccountKey": "System.String",
"DefaultStorageAccountName": "System.String",
- "ClusterType": "System.String"
+ "ClusterType": "System.String",
+ "MinSupportedTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -7435,7 +7445,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OozieMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
"HiveMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
@@ -7454,12 +7464,13 @@
"ZookeeperNodeSize": "System.String",
"EdgeNodeSize": "System.String",
"WorkerNodeSize": "System.String",
- "HeadNodeSize": "System.String",
"CertificateFilePath": "System.String",
"CertificatePassword": "System.String",
+ "HeadNodeSize": "System.String",
"DefaultStorageAccountKey": "System.String",
"DefaultStorageAccountName": "System.String",
- "ClusterType": "System.String"
+ "ClusterType": "System.String",
+ "MinSupportedTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -7705,7 +7716,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OozieMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
"HiveMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
@@ -7724,12 +7735,13 @@
"ZookeeperNodeSize": "System.String",
"EdgeNodeSize": "System.String",
"WorkerNodeSize": "System.String",
- "HeadNodeSize": "System.String",
"CertificateFilePath": "System.String",
"CertificatePassword": "System.String",
+ "HeadNodeSize": "System.String",
"DefaultStorageAccountKey": "System.String",
"DefaultStorageAccountName": "System.String",
- "ClusterType": "System.String"
+ "ClusterType": "System.String",
+ "MinSupportedTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8017,7 +8029,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightSecurityProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightSecurityProfile, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightSecurityProfile, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DomainUserCredential": "System.Management.Automation.PSCredential",
"Domain": "System.String",
@@ -8074,7 +8086,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OozieMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
"HiveMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
@@ -8093,12 +8105,13 @@
"ZookeeperNodeSize": "System.String",
"EdgeNodeSize": "System.String",
"WorkerNodeSize": "System.String",
- "HeadNodeSize": "System.String",
"CertificateFilePath": "System.String",
"CertificatePassword": "System.String",
+ "HeadNodeSize": "System.String",
"DefaultStorageAccountKey": "System.String",
"DefaultStorageAccountName": "System.String",
- "ClusterType": "System.String"
+ "ClusterType": "System.String",
+ "MinSupportedTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8277,7 +8290,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OozieMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
"HiveMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
@@ -8296,12 +8309,13 @@
"ZookeeperNodeSize": "System.String",
"EdgeNodeSize": "System.String",
"WorkerNodeSize": "System.String",
- "HeadNodeSize": "System.String",
"CertificateFilePath": "System.String",
"CertificatePassword": "System.String",
+ "HeadNodeSize": "System.String",
"DefaultStorageAccountKey": "System.String",
"DefaultStorageAccountName": "System.String",
- "ClusterType": "System.String"
+ "ClusterType": "System.String",
+ "MinSupportedTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8528,7 +8542,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OozieMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
"HiveMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
@@ -8547,12 +8561,13 @@
"ZookeeperNodeSize": "System.String",
"EdgeNodeSize": "System.String",
"WorkerNodeSize": "System.String",
- "HeadNodeSize": "System.String",
"CertificateFilePath": "System.String",
"CertificatePassword": "System.String",
+ "HeadNodeSize": "System.String",
"DefaultStorageAccountKey": "System.String",
"DefaultStorageAccountName": "System.String",
- "ClusterType": "System.String"
+ "ClusterType": "System.String",
+ "MinSupportedTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8603,7 +8618,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OozieMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
"HiveMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
@@ -8622,12 +8637,13 @@
"ZookeeperNodeSize": "System.String",
"EdgeNodeSize": "System.String",
"WorkerNodeSize": "System.String",
- "HeadNodeSize": "System.String",
"CertificateFilePath": "System.String",
"CertificatePassword": "System.String",
+ "HeadNodeSize": "System.String",
"DefaultStorageAccountKey": "System.String",
"DefaultStorageAccountName": "System.String",
- "ClusterType": "System.String"
+ "ClusterType": "System.String",
+ "MinSupportedTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8752,7 +8768,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OozieMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
"HiveMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
@@ -8771,12 +8787,13 @@
"ZookeeperNodeSize": "System.String",
"EdgeNodeSize": "System.String",
"WorkerNodeSize": "System.String",
- "HeadNodeSize": "System.String",
"CertificateFilePath": "System.String",
"CertificatePassword": "System.String",
+ "HeadNodeSize": "System.String",
"DefaultStorageAccountKey": "System.String",
"DefaultStorageAccountName": "System.String",
- "ClusterType": "System.String"
+ "ClusterType": "System.String",
+ "MinSupportedTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9409,7 +9426,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightCluster, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightCluster, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SecurityProfile": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightSecurityProfile",
"OperatingSystemType": "Microsoft.Azure.Management.HDInsight.Models.OSType",
@@ -9418,18 +9435,19 @@
"ComponentVersion": "System.Collections.Generic.List`1[System.String]",
"AdditionalStorageAccounts": "System.Collections.Generic.List`1[System.String]",
"CoresUsed": "System.Int32",
+ "Name": "System.String",
"ResourceGroup": "System.String",
"DefaultStorageRootPath": "System.String",
"DefaultStorageContainer": "System.String",
- "DefaultStorageAccount": "System.String",
"HttpEndpoint": "System.String",
+ "Error": "System.String",
"ClusterType": "System.String",
"ClusterState": "System.String",
"ClusterVersion": "System.String",
"Location": "System.String",
"Id": "System.String",
- "Error": "System.String",
- "Name": "System.String"
+ "DefaultStorageAccount": "System.String",
+ "MinSupportedTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9677,7 +9695,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models.Management",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightMonitoring",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightMonitoring, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightMonitoring, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ClusterMonitoringEnabled": "System.Boolean",
"WorkspaceId": "System.String"
@@ -9914,7 +9932,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models.Management",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightRuntimeScriptAction",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightRuntimeScriptAction, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightRuntimeScriptAction, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Parameters": "System.String",
@@ -10192,7 +10210,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models.Management",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightCapabilities",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightCapabilities, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightCapabilities, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Quota": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightQuotaCapability",
"Regions": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightRegionsCapability]",
@@ -10387,7 +10405,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models.Management",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightRuntimeScriptActionDetail",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightRuntimeScriptActionDetail, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightRuntimeScriptActionDetail, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExecutionSummary": "System.Collections.Generic.IList`1[System.String]",
"ScriptExecutionId": "System.Int64",
@@ -10676,7 +10694,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightCluster",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightCluster, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightCluster, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SecurityProfile": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightSecurityProfile",
"OperatingSystemType": "Microsoft.Azure.Management.HDInsight.Models.OSType",
@@ -10685,18 +10703,19 @@
"ComponentVersion": "System.Collections.Generic.List`1[System.String]",
"AdditionalStorageAccounts": "System.Collections.Generic.List`1[System.String]",
"CoresUsed": "System.Int32",
+ "Name": "System.String",
"ResourceGroup": "System.String",
"DefaultStorageRootPath": "System.String",
"DefaultStorageContainer": "System.String",
- "DefaultStorageAccount": "System.String",
"HttpEndpoint": "System.String",
+ "Error": "System.String",
"ClusterType": "System.String",
"ClusterState": "System.String",
"ClusterVersion": "System.String",
"Location": "System.String",
"Id": "System.String",
- "Error": "System.String",
- "Name": "System.String"
+ "DefaultStorageAccount": "System.String",
+ "MinSupportedTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10896,7 +10915,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.HDInsight.Models.Management.StorageType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.HDInsight.Models.Management.StorageType, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.HDInsight.Models.Management.StorageType, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -10916,7 +10935,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OozieMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
"HiveMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
@@ -10935,12 +10954,13 @@
"ZookeeperNodeSize": "System.String",
"EdgeNodeSize": "System.String",
"WorkerNodeSize": "System.String",
- "HeadNodeSize": "System.String",
"CertificateFilePath": "System.String",
"CertificatePassword": "System.String",
+ "HeadNodeSize": "System.String",
"DefaultStorageAccountKey": "System.String",
"DefaultStorageAccountName": "System.String",
- "ClusterType": "System.String"
+ "ClusterType": "System.String",
+ "MinSupportedTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10990,7 +11010,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Credential": "System.Management.Automation.PSCredential",
"DatabaseName": "System.String",
@@ -11044,7 +11064,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Credential": "System.Management.Automation.PSCredential",
"DatabaseName": "System.String",
@@ -11140,7 +11160,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]",
- "AssemblyQualifiedName": "System.Collections.Generic.Dictionary`2[[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType, Microsoft.Azure.Management.HDInsight, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35],[System.Collections.Generic.List`1[[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.Dictionary`2[[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType, Microsoft.Azure.Management.HDInsight, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35],[System.Collections.Generic.List`1[[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -11748,7 +11768,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightSecurityProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightSecurityProfile, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightSecurityProfile, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DomainUserCredential": "System.Management.Automation.PSCredential",
"Domain": "System.String",
@@ -11816,6 +11836,24 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
+ {
+ "Name": "MinSupportedTlsVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
{
"Name": "DefaultProfile",
"AliasList": [
@@ -12029,7 +12067,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.HDInsight.Models.Management.StorageType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.HDInsight.Models.Management.StorageType, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.HDInsight.Models.Management.StorageType, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -12055,7 +12093,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OozieMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
"HiveMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
@@ -12074,12 +12112,13 @@
"ZookeeperNodeSize": "System.String",
"EdgeNodeSize": "System.String",
"WorkerNodeSize": "System.String",
- "HeadNodeSize": "System.String",
"CertificateFilePath": "System.String",
"CertificatePassword": "System.String",
+ "HeadNodeSize": "System.String",
"DefaultStorageAccountKey": "System.String",
"DefaultStorageAccountName": "System.String",
- "ClusterType": "System.String"
+ "ClusterType": "System.String",
+ "MinSupportedTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -12135,7 +12174,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Credential": "System.Management.Automation.PSCredential",
"DatabaseName": "System.String",
@@ -12195,7 +12234,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Credential": "System.Management.Automation.PSCredential",
"DatabaseName": "System.String",
@@ -12309,7 +12348,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]",
- "AssemblyQualifiedName": "System.Collections.Generic.Dictionary`2[[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType, Microsoft.Azure.Management.HDInsight, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35],[System.Collections.Generic.List`1[[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.Dictionary`2[[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType, Microsoft.Azure.Management.HDInsight, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35],[System.Collections.Generic.List`1[[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -13013,7 +13052,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightSecurityProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightSecurityProfile, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightSecurityProfile, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DomainUserCredential": "System.Management.Automation.PSCredential",
"Domain": "System.String",
@@ -13092,6 +13131,30 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "MinSupportedTlsVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -13335,7 +13398,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.HDInsight.Models.Management.StorageType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.HDInsight.Models.Management.StorageType, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.HDInsight.Models.Management.StorageType, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -13361,7 +13424,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OozieMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
"HiveMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
@@ -13380,12 +13443,13 @@
"ZookeeperNodeSize": "System.String",
"EdgeNodeSize": "System.String",
"WorkerNodeSize": "System.String",
- "HeadNodeSize": "System.String",
"CertificateFilePath": "System.String",
"CertificatePassword": "System.String",
+ "HeadNodeSize": "System.String",
"DefaultStorageAccountKey": "System.String",
"DefaultStorageAccountName": "System.String",
- "ClusterType": "System.String"
+ "ClusterType": "System.String",
+ "MinSupportedTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -13441,7 +13505,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Credential": "System.Management.Automation.PSCredential",
"DatabaseName": "System.String",
@@ -13501,7 +13565,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Credential": "System.Management.Automation.PSCredential",
"DatabaseName": "System.String",
@@ -13615,7 +13679,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]",
- "AssemblyQualifiedName": "System.Collections.Generic.Dictionary`2[[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType, Microsoft.Azure.Management.HDInsight, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35],[System.Collections.Generic.List`1[[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.Dictionary`2[[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType, Microsoft.Azure.Management.HDInsight, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35],[System.Collections.Generic.List`1[[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -14319,7 +14383,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightSecurityProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightSecurityProfile, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightSecurityProfile, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DomainUserCredential": "System.Management.Automation.PSCredential",
"Domain": "System.String",
@@ -14398,6 +14462,30 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "MinSupportedTlsVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -14641,7 +14729,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.HDInsight.Models.Management.StorageType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.HDInsight.Models.Management.StorageType, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.HDInsight.Models.Management.StorageType, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -14667,7 +14755,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OozieMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
"HiveMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
@@ -14686,12 +14774,13 @@
"ZookeeperNodeSize": "System.String",
"EdgeNodeSize": "System.String",
"WorkerNodeSize": "System.String",
- "HeadNodeSize": "System.String",
"CertificateFilePath": "System.String",
"CertificatePassword": "System.String",
+ "HeadNodeSize": "System.String",
"DefaultStorageAccountKey": "System.String",
"DefaultStorageAccountName": "System.String",
- "ClusterType": "System.String"
+ "ClusterType": "System.String",
+ "MinSupportedTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -14747,7 +14836,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Credential": "System.Management.Automation.PSCredential",
"DatabaseName": "System.String",
@@ -14807,7 +14896,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Credential": "System.Management.Automation.PSCredential",
"DatabaseName": "System.String",
@@ -14921,7 +15010,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]",
- "AssemblyQualifiedName": "System.Collections.Generic.Dictionary`2[[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType, Microsoft.Azure.Management.HDInsight, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35],[System.Collections.Generic.List`1[[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.Dictionary`2[[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType, Microsoft.Azure.Management.HDInsight, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35],[System.Collections.Generic.List`1[[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -15625,7 +15714,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightSecurityProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightSecurityProfile, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightSecurityProfile, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DomainUserCredential": "System.Management.Automation.PSCredential",
"Domain": "System.String",
@@ -15704,6 +15793,30 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "MinSupportedTlsVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -15766,7 +15879,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OozieMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
"HiveMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
@@ -15785,12 +15898,13 @@
"ZookeeperNodeSize": "System.String",
"EdgeNodeSize": "System.String",
"WorkerNodeSize": "System.String",
- "HeadNodeSize": "System.String",
"CertificateFilePath": "System.String",
"CertificatePassword": "System.String",
+ "HeadNodeSize": "System.String",
"DefaultStorageAccountKey": "System.String",
"DefaultStorageAccountName": "System.String",
- "ClusterType": "System.String"
+ "ClusterType": "System.String",
+ "MinSupportedTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -15877,7 +15991,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models.Management",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.Management.StorageType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Management.StorageType, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Management.StorageType, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -15980,7 +16094,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Credential": "System.Management.Automation.PSCredential",
"DatabaseName": "System.String",
@@ -16034,7 +16148,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Credential": "System.Management.Automation.PSCredential",
"DatabaseName": "System.String",
@@ -16383,6 +16497,24 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
+ {
+ "Name": "MinSupportedTlsVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
{
"Name": "DefaultProfile",
"AliasList": [
@@ -16476,7 +16608,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models.Management",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.Management.StorageType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Management.StorageType, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Management.StorageType, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -16585,7 +16717,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Credential": "System.Management.Automation.PSCredential",
"DatabaseName": "System.String",
@@ -16645,7 +16777,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Credential": "System.Management.Automation.PSCredential",
"DatabaseName": "System.String",
@@ -17071,6 +17203,30 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "MinSupportedTlsVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -17918,7 +18074,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OozieMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
"HiveMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
@@ -17937,12 +18093,13 @@
"ZookeeperNodeSize": "System.String",
"EdgeNodeSize": "System.String",
"WorkerNodeSize": "System.String",
- "HeadNodeSize": "System.String",
"CertificateFilePath": "System.String",
"CertificatePassword": "System.String",
+ "HeadNodeSize": "System.String",
"DefaultStorageAccountKey": "System.String",
"DefaultStorageAccountName": "System.String",
- "ClusterType": "System.String"
+ "ClusterType": "System.String",
+ "MinSupportedTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17993,7 +18150,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OozieMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
"HiveMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
@@ -18012,12 +18169,13 @@
"ZookeeperNodeSize": "System.String",
"EdgeNodeSize": "System.String",
"WorkerNodeSize": "System.String",
- "HeadNodeSize": "System.String",
"CertificateFilePath": "System.String",
"CertificatePassword": "System.String",
+ "HeadNodeSize": "System.String",
"DefaultStorageAccountKey": "System.String",
"DefaultStorageAccountName": "System.String",
- "ClusterType": "System.String"
+ "ClusterType": "System.String",
+ "MinSupportedTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -18103,7 +18261,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.HDInsight.Models.Management.StorageType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.HDInsight.Models.Management.StorageType, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.HDInsight.Models.Management.StorageType, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -18162,7 +18320,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OozieMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
"HiveMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
@@ -18181,12 +18339,13 @@
"ZookeeperNodeSize": "System.String",
"EdgeNodeSize": "System.String",
"WorkerNodeSize": "System.String",
- "HeadNodeSize": "System.String",
"CertificateFilePath": "System.String",
"CertificatePassword": "System.String",
+ "HeadNodeSize": "System.String",
"DefaultStorageAccountKey": "System.String",
"DefaultStorageAccountName": "System.String",
- "ClusterType": "System.String"
+ "ClusterType": "System.String",
+ "MinSupportedTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -18290,7 +18449,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.HDInsight.Models.Management.StorageType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.HDInsight.Models.Management.StorageType, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.HDInsight.Models.Management.StorageType, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -18367,7 +18526,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models.Management",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightGatewaySettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightGatewaySettings, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightGatewaySettings, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsCredentialEnabled": "System.String",
"UserName": "System.String",
@@ -19016,7 +19175,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models.Management",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightRuntimeScriptActionOperationResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightRuntimeScriptActionOperationResource, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightRuntimeScriptActionOperationResource, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OperationState": "System.String",
"ErrorMessage": "System.String",
@@ -19138,7 +19297,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models.Management",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.Management.RuntimeScriptActionClusterNodeType[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Management.RuntimeScriptActionClusterNodeType[], Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Management.RuntimeScriptActionClusterNodeType[], Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.HDInsight.Models.Management.RuntimeScriptActionClusterNodeType",
"GenericTypeArguments": [],
@@ -19339,7 +19498,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models.Management",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.Management.RuntimeScriptActionClusterNodeType[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Management.RuntimeScriptActionClusterNodeType[], Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Management.RuntimeScriptActionClusterNodeType[], Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.HDInsight.Models.Management.RuntimeScriptActionClusterNodeType",
"GenericTypeArguments": [],
@@ -19510,7 +19669,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OozieMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
"HiveMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
@@ -19529,12 +19688,13 @@
"ZookeeperNodeSize": "System.String",
"EdgeNodeSize": "System.String",
"WorkerNodeSize": "System.String",
- "HeadNodeSize": "System.String",
"CertificateFilePath": "System.String",
"CertificatePassword": "System.String",
+ "HeadNodeSize": "System.String",
"DefaultStorageAccountKey": "System.String",
"DefaultStorageAccountName": "System.String",
- "ClusterType": "System.String"
+ "ClusterType": "System.String",
+ "MinSupportedTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -19585,7 +19745,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OozieMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
"HiveMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
@@ -19604,12 +19764,13 @@
"ZookeeperNodeSize": "System.String",
"EdgeNodeSize": "System.String",
"WorkerNodeSize": "System.String",
- "HeadNodeSize": "System.String",
"CertificateFilePath": "System.String",
"CertificatePassword": "System.String",
+ "HeadNodeSize": "System.String",
"DefaultStorageAccountKey": "System.String",
"DefaultStorageAccountName": "System.String",
- "ClusterType": "System.String"
+ "ClusterType": "System.String",
+ "MinSupportedTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -19806,7 +19967,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OozieMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
"HiveMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
@@ -19825,12 +19986,13 @@
"ZookeeperNodeSize": "System.String",
"EdgeNodeSize": "System.String",
"WorkerNodeSize": "System.String",
- "HeadNodeSize": "System.String",
"CertificateFilePath": "System.String",
"CertificatePassword": "System.String",
+ "HeadNodeSize": "System.String",
"DefaultStorageAccountKey": "System.String",
"DefaultStorageAccountName": "System.String",
- "ClusterType": "System.String"
+ "ClusterType": "System.String",
+ "MinSupportedTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -20050,7 +20212,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OozieMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
"HiveMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
@@ -20069,12 +20231,13 @@
"ZookeeperNodeSize": "System.String",
"EdgeNodeSize": "System.String",
"WorkerNodeSize": "System.String",
- "HeadNodeSize": "System.String",
"CertificateFilePath": "System.String",
"CertificatePassword": "System.String",
+ "HeadNodeSize": "System.String",
"DefaultStorageAccountKey": "System.String",
"DefaultStorageAccountName": "System.String",
- "ClusterType": "System.String"
+ "ClusterType": "System.String",
+ "MinSupportedTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -20294,7 +20457,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightConfig, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OozieMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
"HiveMetastore": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
@@ -20313,12 +20476,13 @@
"ZookeeperNodeSize": "System.String",
"EdgeNodeSize": "System.String",
"WorkerNodeSize": "System.String",
- "HeadNodeSize": "System.String",
"CertificateFilePath": "System.String",
"CertificatePassword": "System.String",
+ "HeadNodeSize": "System.String",
"DefaultStorageAccountKey": "System.String",
"DefaultStorageAccountName": "System.String",
- "ClusterType": "System.String"
+ "ClusterType": "System.String",
+ "MinSupportedTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -20884,7 +21048,7 @@
"Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightMetastore, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Credential": "System.Management.Automation.PSCredential",
"DatabaseName": "System.String",
@@ -20940,7 +21104,7 @@
"Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightSecurityProfile": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightSecurityProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightSecurityProfile, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightSecurityProfile, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DomainUserCredential": "System.Management.Automation.PSCredential",
"Domain": "System.String",
@@ -20998,7 +21162,7 @@
"Microsoft.Azure.Commands.HDInsight.Models.Management.StorageType": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models.Management",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.Management.StorageType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Management.StorageType, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Management.StorageType, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -21188,7 +21352,7 @@
"System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]",
- "AssemblyQualifiedName": "System.Collections.Generic.Dictionary`2[[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType, Microsoft.Azure.Management.HDInsight, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35],[System.Collections.Generic.List`1[[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.Dictionary`2[[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType, Microsoft.Azure.Management.HDInsight, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35],[System.Collections.Generic.List`1[[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -21296,7 +21460,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -21308,7 +21472,7 @@
"Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models.Management",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ActionName": "System.String",
"Parameters": "System.String",
@@ -21677,7 +21841,7 @@
"Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightQuotaCapability": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models.Management",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightQuotaCapability",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightQuotaCapability, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightQuotaCapability, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RegionalQuotas": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightRegionalQuotaCapability]",
"MaxCoresAllowed": "System.Nullable`1[System.Int64]",
@@ -21728,7 +21892,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightRegionalQuotaCapability]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightRegionalQuotaCapability]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightRegionalQuotaCapability, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightRegionalQuotaCapability, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -21740,7 +21904,7 @@
"Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightRegionalQuotaCapability": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models.Management",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightRegionalQuotaCapability",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightRegionalQuotaCapability, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightRegionalQuotaCapability, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CoresUsed": "System.Nullable`1[System.Int64]",
"CoresAvailable": "System.Nullable`1[System.Int64]",
@@ -21803,7 +21967,7 @@
"System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightRegionsCapability]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightRegionsCapability]",
- "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightRegionsCapability, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightRegionsCapability, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -21816,7 +21980,7 @@
"Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightRegionsCapability": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models.Management",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightRegionsCapability",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightRegionsCapability, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightRegionsCapability, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Available": "System.Collections.Generic.IList`1[System.String]"
},
@@ -21865,7 +22029,7 @@
"System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightVersionsCapability]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightVersionsCapability]",
- "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightVersionsCapability, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightVersionsCapability, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -21878,7 +22042,7 @@
"Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightVersionsCapability": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models.Management",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightVersionsCapability",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightVersionsCapability, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightVersionsCapability, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Available": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightVersionSpec]"
},
@@ -21927,7 +22091,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightVersionSpec]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightVersionSpec]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightVersionSpec, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightVersionSpec, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -21939,7 +22103,7 @@
"Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightVersionSpec": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models.Management",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightVersionSpec",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightVersionSpec, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightVersionSpec, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ComponentVersions": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"FriendlyName": "System.String",
@@ -21991,7 +22155,7 @@
"System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightVmSizesCapability]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightVmSizesCapability]",
- "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightVmSizesCapability, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightVmSizesCapability, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -22004,7 +22168,7 @@
"Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightVmSizesCapability": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models.Management",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightVmSizesCapability",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightVmSizesCapability, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightVmSizesCapability, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Available": "System.Collections.Generic.IList`1[System.String]"
},
@@ -22053,7 +22217,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightVmSizeCompatibilityFilter]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightVmSizeCompatibilityFilter]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightVmSizeCompatibilityFilter, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightVmSizeCompatibilityFilter, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -22065,7 +22229,7 @@
"Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightVmSizeCompatibilityFilter": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models.Management",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightVmSizeCompatibilityFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightVmSizeCompatibilityFilter, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightVmSizeCompatibilityFilter, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Regions": "System.Collections.Generic.IList`1[System.String]",
"ClusterFlavors": "System.Collections.Generic.IList`1[System.String]",
@@ -22146,6 +22310,7 @@
"ClusterDefinition": "Microsoft.Azure.Management.HDInsight.Models.ClusterDefinition",
"ComputeProfile": "Microsoft.Azure.Management.HDInsight.Models.ComputeProfile",
"DiskEncryptionProperties": "Microsoft.Azure.Management.HDInsight.Models.DiskEncryptionProperties",
+ "KafkaRestProperties": "Microsoft.Azure.Management.HDInsight.Models.KafkaRestProperties",
"QuotaInfo": "Microsoft.Azure.Management.HDInsight.Models.QuotaInfo",
"SecurityProfile": "Microsoft.Azure.Management.HDInsight.Models.SecurityProfile",
"ConnectivityEndpoints": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.HDInsight.Models.ConnectivityEndpoint]",
@@ -22155,7 +22320,8 @@
"Tier": "System.Nullable`1[Microsoft.Azure.Management.HDInsight.Models.Tier]",
"ClusterVersion": "System.String",
"CreatedDate": "System.String",
- "ClusterState": "System.String"
+ "ClusterState": "System.String",
+ "MinSupportedTlsVersion": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -22217,6 +22383,10 @@
"Name": "tier",
"Type": "System.Reflection.RuntimeParameterInfo"
},
+ {
+ "Name": "kafkaRestProperties",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
{
"Name": "securityProfile",
"Type": "System.Reflection.RuntimeParameterInfo"
@@ -22252,6 +22422,10 @@
{
"Name": "diskEncryptionProperties",
"Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "minSupportedTlsVersion",
+ "Type": "System.Reflection.RuntimeParameterInfo"
}
]
}
@@ -23366,6 +23540,119 @@
}
]
},
+ "Microsoft.Azure.Management.HDInsight.Models.KafkaRestProperties": {
+ "Namespace": "Microsoft.Azure.Management.HDInsight.Models",
+ "Name": "Microsoft.Azure.Management.HDInsight.Models.KafkaRestProperties",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.HDInsight.Models.KafkaRestProperties, Microsoft.Azure.Management.HDInsight, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "ClientGroupInfo": "Microsoft.Azure.Management.HDInsight.Models.ClientGroupInfo"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "clientGroupInfo",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "Microsoft.Azure.Management.HDInsight.Models.ClientGroupInfo": {
+ "Namespace": "Microsoft.Azure.Management.HDInsight.Models",
+ "Name": "Microsoft.Azure.Management.HDInsight.Models.ClientGroupInfo",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.HDInsight.Models.ClientGroupInfo, Microsoft.Azure.Management.HDInsight, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "GroupName": "System.String",
+ "GroupId": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "groupName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "groupId",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
"Microsoft.Azure.Management.HDInsight.Models.QuotaInfo": {
"Namespace": "Microsoft.Azure.Management.HDInsight.Models",
"Name": "Microsoft.Azure.Management.HDInsight.Models.QuotaInfo",
@@ -24155,7 +24442,7 @@
"Microsoft.Azure.Commands.HDInsight.Models.Management.RuntimeScriptActionClusterNodeType": {
"Namespace": "Microsoft.Azure.Commands.HDInsight.Models.Management",
"Name": "Microsoft.Azure.Commands.HDInsight.Models.Management.RuntimeScriptActionClusterNodeType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Management.RuntimeScriptActionClusterNodeType, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.0.3.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.HDInsight.Models.Management.RuntimeScriptActionClusterNodeType, Microsoft.Azure.PowerShell.Cmdlets.HDInsight, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.IotHub.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.IotHub.dll.json
index 7282b620fcaf..ec7cb69d2360 100644
--- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.IotHub.dll.json
+++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.IotHub.dll.json
@@ -14,7 +14,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties",
"ResourceGroupName": "System.String",
@@ -73,7 +73,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties",
"ResourceGroupName": "System.String",
@@ -278,7 +278,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties",
"ResourceGroupName": "System.String",
@@ -1026,7 +1026,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Rights": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights",
"KeyName": "System.String",
@@ -1190,7 +1190,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1428,7 +1428,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1701,7 +1701,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1902,7 +1902,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2062,7 +2062,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevice",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevice, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevice, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism",
"Capabilities": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceCapabilities",
@@ -2127,7 +2127,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -2259,7 +2259,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2362,7 +2362,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2594,7 +2594,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -2732,7 +2732,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2841,7 +2841,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3186,7 +3186,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3295,7 +3295,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3616,7 +3616,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3725,7 +3725,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3950,7 +3950,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4059,7 +4059,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4291,7 +4291,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceChildren",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceChildren, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceChildren, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ChildrenDeviceId": "System.Collections.Generic.IList`1[System.String]",
"DeviceId": "System.String"
@@ -4345,7 +4345,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -4552,7 +4552,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -5115,7 +5115,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevice",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevice, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevice, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism",
"Capabilities": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceCapabilities",
@@ -5176,7 +5176,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevices[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevices[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevices[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevices",
"GenericTypeArguments": [],
@@ -5195,7 +5195,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -5366,7 +5366,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -5759,7 +5759,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceChildren",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceChildren, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceChildren, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ChildrenDeviceId": "System.Collections.Generic.IList`1[System.String]",
"DeviceId": "System.String"
@@ -5809,7 +5809,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevicesChildren[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevicesChildren[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevicesChildren[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevicesChildren",
"GenericTypeArguments": [],
@@ -5828,7 +5828,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -5999,7 +5999,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -6394,7 +6394,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionString",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionString, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionString, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DeviceId": "System.String",
"ConnectionString": "System.String"
@@ -6448,7 +6448,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -6580,7 +6580,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -6722,7 +6722,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -6812,7 +6812,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -7037,7 +7037,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -7238,7 +7238,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -7444,7 +7444,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevice",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevice, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevice, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism",
"Capabilities": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceCapabilities",
@@ -7509,7 +7509,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -7680,7 +7680,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -8092,7 +8092,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -8281,7 +8281,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -8789,7 +8789,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -8996,7 +8996,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -9559,7 +9559,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevice",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevice, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevice, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism",
"Capabilities": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceCapabilities",
@@ -9624,7 +9624,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -9756,7 +9756,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9859,7 +9859,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10037,7 +10037,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -10127,7 +10127,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10280,7 +10280,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -10370,7 +10370,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10547,7 +10547,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -10777,7 +10777,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -11002,7 +11002,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -11367,7 +11367,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -11568,7 +11568,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -11912,7 +11912,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevice",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevice, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevice, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism",
"Capabilities": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceCapabilities",
@@ -11977,7 +11977,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -12184,7 +12184,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -12731,6 +12731,1784 @@
],
"AliasList": []
},
+ {
+ "VerbName": "Get",
+ "NounName": "AzIotHubDistributedTracing",
+ "Name": "Get-AzIotHubDistributedTracing",
+ "ClassName": "Microsoft.Azure.Commands.Management.IotHub.GetAzIotHubDistributedTracing",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ResourceSet",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
+ "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceTracing",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceTracing, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "TracingOption": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDistributedTracing",
+ "IsSynced": "System.Boolean",
+ "DeviceId": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
+ "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
+ "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
+ "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Location": "System.String",
+ "Subscriptionid": "System.String",
+ "Resourcegroup": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "IotHubName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "DeviceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "InputObjectSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
+ "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
+ "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
+ "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Location": "System.String",
+ "Subscriptionid": "System.String",
+ "Resourcegroup": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DeviceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 1,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "ResourceSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IotHubName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 1,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DeviceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 2,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "ResourceIdSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DeviceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 1,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ],
+ "AliasList": [
+ "Get-AzIotHubTracing"
+ ]
+ },
+ {
+ "VerbName": "Set",
+ "NounName": "AzIotHubDistributedTracing",
+ "Name": "Set-AzIotHubDistributedTracing",
+ "ClassName": "Microsoft.Azure.Commands.Management.IotHub.SetAzIotHubDistributedTracing",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ResourceSet",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
+ "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceTracing",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceTracing, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "TracingOption": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDistributedTracing",
+ "IsSynced": "System.Boolean",
+ "DeviceId": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
+ "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
+ "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
+ "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Location": "System.String",
+ "Subscriptionid": "System.String",
+ "Resourcegroup": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "IotHubName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "DeviceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "SamplingMode",
+ "AliasList": [
+ "Mode"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
+ "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDistributedTracingSamplingMode",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDistributedTracingSamplingMode, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "CompareTo",
+ "Parameters": [
+ {
+ "Name": "target",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "HasFlag",
+ "Parameters": [
+ {
+ "Name": "flag",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetTypeCode",
+ "Parameters": [],
+ "ReturnType": "System.TypeCode"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "SamplingRate",
+ "AliasList": [
+ "Rate"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": 0,
+ "ValidateRangeMax": 100,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "InputObjectSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
+ "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
+ "Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
+ "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "Location": "System.String",
+ "Subscriptionid": "System.String",
+ "Resourcegroup": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DeviceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 1,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SamplingMode",
+ "AliasList": [
+ "Mode"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
+ "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDistributedTracingSamplingMode",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDistributedTracingSamplingMode, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "CompareTo",
+ "Parameters": [
+ {
+ "Name": "target",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "HasFlag",
+ "Parameters": [
+ {
+ "Name": "flag",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetTypeCode",
+ "Parameters": [],
+ "ReturnType": "System.TypeCode"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": 2,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SamplingRate",
+ "AliasList": [
+ "Rate"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": 0,
+ "ValidateRangeMax": 100,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "ResourceSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "IotHubName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 1,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DeviceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 2,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SamplingMode",
+ "AliasList": [
+ "Mode"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
+ "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDistributedTracingSamplingMode",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDistributedTracingSamplingMode, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "CompareTo",
+ "Parameters": [
+ {
+ "Name": "target",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "HasFlag",
+ "Parameters": [
+ {
+ "Name": "flag",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetTypeCode",
+ "Parameters": [],
+ "ReturnType": "System.TypeCode"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": 3,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SamplingRate",
+ "AliasList": [
+ "Rate"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": 0,
+ "ValidateRangeMax": 100,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "ResourceIdSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DeviceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 1,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SamplingMode",
+ "AliasList": [
+ "Mode"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
+ "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDistributedTracingSamplingMode",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDistributedTracingSamplingMode, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "CompareTo",
+ "Parameters": [
+ {
+ "Name": "target",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "HasFlag",
+ "Parameters": [
+ {
+ "Name": "flag",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetTypeCode",
+ "Parameters": [],
+ "ReturnType": "System.TypeCode"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": 2,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SamplingRate",
+ "AliasList": [
+ "Rate"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": 0,
+ "ValidateRangeMax": 100,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ],
+ "AliasList": [
+ "Set-AzIotHubTracing"
+ ]
+ },
{
"VerbName": "Add",
"NounName": "AzIotHubModule",
@@ -12745,7 +14523,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism",
"ConnectionState": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionState",
@@ -12807,7 +14585,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -12957,7 +14735,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -13099,7 +14877,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -13213,7 +14991,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -13462,7 +15240,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -13687,7 +15465,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -13840,7 +15618,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -14000,7 +15778,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism",
"ConnectionState": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionState",
@@ -14058,7 +15836,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModules[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModules[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModules[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModules",
"GenericTypeArguments": [],
@@ -14077,7 +15855,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -14266,7 +16044,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -14731,7 +16509,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModuleConnectionString",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModuleConnectionString, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModuleConnectionString, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ModuleId": "System.String",
"ConnectionString": "System.String"
@@ -14785,7 +16563,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -14935,7 +16713,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -15077,7 +16855,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -15191,7 +16969,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -15440,7 +17218,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -15665,7 +17443,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSKeyType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -15890,7 +17668,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -16097,7 +17875,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -16658,7 +18436,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism",
"ConnectionState": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionState",
@@ -16720,7 +18498,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -16870,7 +18648,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17012,7 +18790,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -17126,7 +18904,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17375,7 +19153,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17600,7 +19378,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceAuthType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -17804,7 +19582,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubConsumerGroupInfo",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubConsumerGroupInfo, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubConsumerGroupInfo, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Id": "System.String",
@@ -18037,7 +19815,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -18384,7 +20162,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties",
"ResourceGroupName": "System.String",
@@ -18443,7 +20221,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -18614,7 +20392,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -19031,7 +20809,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateWithNonceDescription",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateWithNonceDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateWithNonceDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificatePropertiesWithNonce",
"ResourceGroupName": "System.String",
@@ -19090,7 +20868,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties",
"ResourceGroupName": "System.String",
@@ -19277,7 +21055,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties",
"ResourceGroupName": "System.String",
@@ -19670,7 +21448,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Rights": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights",
"KeyName": "System.String",
@@ -19942,7 +21720,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobResponse, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobResponse, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Status": "System.Nullable`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobStatus]",
"StartTimeUtc": "System.Nullable`1[System.DateTime]",
@@ -20217,7 +21995,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Rights": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights",
"KeyName": "System.String",
@@ -20643,7 +22421,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubQuotaMetric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubQuotaMetric, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubQuotaMetric, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"CurrentValue": "System.String",
@@ -20872,7 +22650,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubRegistryStatistics",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubRegistryStatistics, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubRegistryStatistics, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TotalDeviceCount": "System.Nullable`1[System.Int64]",
"EnabledDeviceCount": "System.Nullable`1[System.Int64]",
@@ -21101,7 +22879,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuDescription",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Capacity": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubCapacity",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -21349,7 +23127,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -21538,7 +23316,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -22051,7 +23829,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -22148,7 +23926,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -22287,7 +24065,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubInputProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubInputProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubInputProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Features": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCapabilities",
"CloudToDevice": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceProperties",
@@ -22434,7 +24212,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -22591,7 +24369,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubInputProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubInputProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubInputProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Features": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCapabilities",
"CloudToDevice": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceProperties",
@@ -22708,7 +24486,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobResponse, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobResponse, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Status": "System.Nullable`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobStatus]",
"StartTimeUtc": "System.Nullable`1[System.DateTime]",
@@ -23025,7 +24803,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobResponse, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobResponse, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Status": "System.Nullable`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobStatus]",
"StartTimeUtc": "System.Nullable`1[System.DateTime]",
@@ -23342,7 +25120,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Rights": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights",
"KeyName": "System.String",
@@ -24046,7 +25824,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties",
"ResourceGroupName": "System.String",
@@ -24251,7 +26029,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties",
"ResourceGroupName": "System.String",
@@ -24975,7 +26753,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Rights": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights",
"KeyName": "System.String",
@@ -25401,7 +27179,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentMetadata",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"EndpointNames": "System.Collections.Generic.IList`1[System.String]",
"Value": "System.String",
@@ -25456,7 +27234,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -25663,7 +27441,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -26202,7 +27980,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsEnabled": "System.Boolean",
"EndpointNames": "System.Collections.Generic.IList`1[System.String]",
@@ -26259,7 +28037,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -26391,7 +28169,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -26587,7 +28365,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -26677,7 +28455,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -26974,7 +28752,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -27247,7 +29025,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -27571,7 +29349,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEventHubEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEventHubEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEventHubEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionString": "System.String",
"Name": "System.String",
@@ -27623,7 +29401,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionString": "System.String",
"Name": "System.String",
@@ -27675,7 +29453,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionString": "System.String",
"Name": "System.String",
@@ -27727,7 +29505,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BatchFrequencyInSeconds": "System.Nullable`1[System.Int32]",
"MaxChunkSizeInBytes": "System.Nullable`1[System.Int32]",
@@ -27788,7 +29566,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -27920,7 +29698,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -28116,7 +29894,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -28206,7 +29984,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -28503,7 +30281,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -28776,7 +30554,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -29052,7 +30830,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentMetadata",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"EndpointNames": "System.Collections.Generic.IList`1[System.String]",
"Value": "System.String",
@@ -29103,7 +30881,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentProperties[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentProperties[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentProperties[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentProperties",
"GenericTypeArguments": [],
@@ -29122,7 +30900,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -29293,7 +31071,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -29688,7 +31466,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsEnabled": "System.Boolean",
"EndpointNames": "System.Collections.Generic.IList`1[System.String]",
@@ -29741,7 +31519,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteProperties[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteProperties[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteProperties[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteProperties",
"GenericTypeArguments": [],
@@ -29760,7 +31538,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -29931,7 +31709,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -30348,7 +32126,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEventHubEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEventHubEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEventHubEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionString": "System.String",
"Name": "System.String",
@@ -30400,7 +32178,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEventHubProperties]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEventHubProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEventHubProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -30417,7 +32195,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionString": "System.String",
"Name": "System.String",
@@ -30469,7 +32247,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpointProperties[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpointProperties[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpointProperties[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpointProperties",
"GenericTypeArguments": [],
@@ -30484,7 +32262,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionString": "System.String",
"Name": "System.String",
@@ -30536,7 +32314,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpointProperties[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpointProperties[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpointProperties[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpointProperties",
"GenericTypeArguments": [],
@@ -30551,7 +32329,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BatchFrequencyInSeconds": "System.Nullable`1[System.Int32]",
"MaxChunkSizeInBytes": "System.Nullable`1[System.Int32]",
@@ -30608,7 +32386,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerProperties[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerProperties[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerProperties[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerProperties",
"GenericTypeArguments": [],
@@ -30623,7 +32401,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingCustomEndpoint[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingCustomEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingCustomEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingCustomEndpoint",
"GenericTypeArguments": [],
@@ -30642,7 +32420,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -30756,7 +32534,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -30916,7 +32694,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -30982,7 +32760,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -31207,7 +32985,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -31408,7 +33186,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -31585,7 +33363,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -31788,7 +33566,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -31977,7 +33755,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -32487,7 +34265,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -32676,7 +34454,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -33208,7 +34986,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -33340,7 +35118,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -33500,7 +35278,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -33590,7 +35368,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -33839,7 +35617,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -34064,7 +35842,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -34265,7 +36043,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -34449,7 +36227,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentMetadata",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"EndpointNames": "System.Collections.Generic.IList`1[System.String]",
"Value": "System.String",
@@ -34504,7 +36282,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -34711,7 +36489,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -35250,7 +37028,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsEnabled": "System.Boolean",
"EndpointNames": "System.Collections.Generic.IList`1[System.String]",
@@ -35307,7 +37085,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -35439,7 +37217,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -35552,7 +37330,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -35642,7 +37420,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -35856,7 +37634,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -36046,7 +37824,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -36188,7 +37966,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -36337,7 +38115,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSTestRouteResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSTestRouteResult, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSTestRouteResult, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Details": "Microsoft.Azure.Commands.Management.IotHub.Models.PSTestRouteResultDetails",
"Result": "System.String"
@@ -36387,7 +38165,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteCompilationError",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteCompilationError, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteCompilationError, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Location": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteErrorRange",
"Severity": "System.String",
@@ -36438,7 +38216,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteProperties[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteProperties[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteProperties[], Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteProperties",
"GenericTypeArguments": [],
@@ -36457,7 +38235,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -36589,7 +38367,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -36803,7 +38581,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -37033,7 +38811,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -37099,7 +38877,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -37584,7 +39362,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -38021,7 +39799,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -38373,7 +40151,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -38470,7 +40248,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -38719,7 +40497,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Feedback": "Microsoft.Azure.Commands.Management.IotHub.Models.PSFeedbackProperties",
"MaxDeliveryCount": "System.Nullable`1[System.Int32]",
@@ -38773,7 +40551,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Endpoints": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEndpoints",
"FallbackRoute": "Microsoft.Azure.Management.IotHub.Models.PSFallbackRouteMetadata",
@@ -38828,7 +40606,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -38848,7 +40626,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.IotHub.Models",
"Name": "Microsoft.Azure.Management.IotHub.Models.PSFallbackRouteMetadata",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.IotHub.Models.PSFallbackRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.IotHub.Models.PSFallbackRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsEnabled": "System.Boolean",
"EndpointNames": "System.Collections.Generic.IList`1[System.String]",
@@ -39035,7 +40813,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -39614,7 +41392,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Feedback": "Microsoft.Azure.Commands.Management.IotHub.Models.PSFeedbackProperties",
"MaxDeliveryCount": "System.Nullable`1[System.Int32]",
@@ -39766,7 +41544,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Endpoints": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEndpoints",
"FallbackRoute": "Microsoft.Azure.Management.IotHub.Models.PSFallbackRouteMetadata",
@@ -39919,7 +41697,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -40037,7 +41815,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.IotHub.Models",
"Name": "Microsoft.Azure.Management.IotHub.Models.PSFallbackRouteMetadata",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.IotHub.Models.PSFallbackRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.IotHub.Models.PSFallbackRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsEnabled": "System.Boolean",
"EndpointNames": "System.Collections.Generic.IList`1[System.String]",
@@ -40198,7 +41976,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties",
"ResourceGroupName": "System.String",
@@ -40257,7 +42035,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties",
"ResourceGroupName": "System.String",
@@ -40462,7 +42240,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties",
"ResourceGroupName": "System.String",
@@ -40927,7 +42705,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHub, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
"Sku": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
@@ -41445,7 +43223,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificateProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsVerified": "System.Nullable`1[System.Boolean]",
"Expiry": "System.Nullable`1[System.DateTime]",
@@ -41728,7 +43506,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -41833,7 +43611,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationType",
"SymmetricKey": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSymmetricKey",
@@ -41879,7 +43657,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationType": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -41974,7 +43752,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSSymmetricKey": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSymmetricKey",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSymmetricKey, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSymmetricKey, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PrimaryKey": "System.String",
"SecondaryKey": "System.String"
@@ -42019,7 +43797,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSX509Thumbprint": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSX509Thumbprint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSX509Thumbprint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSX509Thumbprint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PrimaryThumbprint": "System.String",
"SecondaryThumbprint": "System.String"
@@ -42064,7 +43842,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceCapabilities": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceCapabilities",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceCapabilities, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceCapabilities, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IotEdge": "System.Boolean"
},
@@ -42108,7 +43886,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionState": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionState",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionState, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionState, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -42203,7 +43981,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -42298,7 +44076,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Features": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCapabilities",
"CloudToDevice": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceProperties",
@@ -42353,7 +44131,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSCapabilities": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCapabilities",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCapabilities, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCapabilities, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -42448,7 +44226,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceProperties": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCloudToDeviceProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Feedback": "Microsoft.Azure.Commands.Management.IotHub.Models.PSFeedbackProperties",
"MaxDeliveryCount": "System.Nullable`1[System.Int32]",
@@ -42494,7 +44272,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSFeedbackProperties": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSFeedbackProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSFeedbackProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSFeedbackProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MaxDeliveryCount": "System.Nullable`1[System.Int32]",
"TtlAsIso8601": "System.Nullable`1[System.TimeSpan]",
@@ -42574,7 +44352,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingProperties": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Endpoints": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEndpoints",
"FallbackRoute": "Microsoft.Azure.Management.IotHub.Models.PSFallbackRouteMetadata",
@@ -42621,7 +44399,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEndpoints": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEndpoints",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEndpoints, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEndpoints, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"EventHubs": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEventHubProperties]",
"ServiceBusQueues": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpointProperties]",
@@ -42668,7 +44446,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEventHubProperties]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEventHubProperties]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEventHubProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEventHubProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -42680,7 +44458,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEventHubProperties": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEventHubProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEventHubProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingEventHubProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionString": "System.String",
"Name": "System.String",
@@ -42727,7 +44505,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpointProperties]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpointProperties]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpointProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpointProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -42739,7 +44517,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpointProperties": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpointProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpointProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusQueueEndpointProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionString": "System.String",
"Name": "System.String",
@@ -42786,7 +44564,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpointProperties]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpointProperties]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpointProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpointProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -42798,7 +44576,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpointProperties": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpointProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpointProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingServiceBusTopicEndpointProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionString": "System.String",
"Name": "System.String",
@@ -42845,7 +44623,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerProperties]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerProperties]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -42857,7 +44635,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerProperties": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingStorageContainerProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BatchFrequencyInSeconds": "System.Nullable`1[System.Int32]",
"MaxChunkSizeInBytes": "System.Nullable`1[System.Int32]",
@@ -42909,7 +44687,7 @@
"Microsoft.Azure.Management.IotHub.Models.PSFallbackRouteMetadata": {
"Namespace": "Microsoft.Azure.Management.IotHub.Models",
"Name": "Microsoft.Azure.Management.IotHub.Models.PSFallbackRouteMetadata",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.IotHub.Models.PSFallbackRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.IotHub.Models.PSFallbackRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsEnabled": "System.Boolean",
"EndpointNames": "System.Collections.Generic.IList`1[System.String]",
@@ -42957,7 +44735,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentMetadata]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentMetadata]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -42969,7 +44747,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentMetadata": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentMetadata",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"EndpointNames": "System.Collections.Generic.IList`1[System.String]",
"Value": "System.String",
@@ -43015,7 +44793,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -43027,7 +44805,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteMetadata, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsEnabled": "System.Boolean",
"EndpointNames": "System.Collections.Generic.IList`1[System.String]",
@@ -43075,7 +44853,7 @@
"System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubProperties]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubProperties]",
- "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -43088,7 +44866,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubProperties": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PartitionIds": "System.Collections.Generic.IList`1[System.String]",
"PartitionCount": "System.Nullable`1[System.Int32]",
@@ -43148,7 +44926,7 @@
"System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Management.IotHub.Models.PSMessagingEndpointProperties]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Management.IotHub.Models.PSMessagingEndpointProperties]",
- "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.Management.IotHub.Models.PSMessagingEndpointProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.Management.IotHub.Models.PSMessagingEndpointProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -43161,7 +44939,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSMessagingEndpointProperties": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSMessagingEndpointProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSMessagingEndpointProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSMessagingEndpointProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MaxDeliveryCount": "System.Nullable`1[System.Int32]",
"TtlAsIso8601": "System.Nullable`1[System.TimeSpan]",
@@ -43207,7 +44985,7 @@
"System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Management.IotHub.Models.PSStorageEndpointProperties]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Management.IotHub.Models.PSStorageEndpointProperties]",
- "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.Management.IotHub.Models.PSStorageEndpointProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.Management.IotHub.Models.PSStorageEndpointProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -43220,7 +44998,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSStorageEndpointProperties": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSStorageEndpointProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSStorageEndpointProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSStorageEndpointProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SasTtlAsIso8601": "System.Nullable`1[System.TimeSpan]",
"ConnectionString": "System.String",
@@ -43266,7 +45044,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubLocationDescription]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubLocationDescription]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubLocationDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubLocationDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -43278,7 +45056,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubLocationDescription": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubLocationDescription",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubLocationDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubLocationDescription, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Location": "System.String",
"Role": "System.String"
@@ -43323,7 +45101,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -43335,7 +45113,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSSharedAccessSignatureAuthorizationRule, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Rights": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAccessRights",
"KeyName": "System.String",
@@ -43382,7 +45160,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuInfo, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku",
"Tier": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuTier",
@@ -43428,7 +45206,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSku, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -43523,7 +45301,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuTier": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuTier",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuTier, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubSkuTier, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -43618,7 +45396,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSDevices": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevices",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevices, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevices, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism",
"Capabilities": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceCapabilities",
@@ -43674,7 +45452,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSDevicesChildren": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevicesChildren",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevicesChildren, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDevicesChildren, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ChildrenDeviceId": "System.Collections.Generic.IList`1[System.String]",
"DeviceId": "System.String"
@@ -43716,10 +45494,150 @@
}
]
},
+ "Microsoft.Azure.Commands.Management.IotHub.Models.PSDistributedTracing": {
+ "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
+ "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDistributedTracing",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDistributedTracing, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "SamplingMode": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDistributedTracingSamplingMode",
+ "SamplingRate": "System.Int32"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "Microsoft.Azure.Commands.Management.IotHub.Models.PSDistributedTracingSamplingMode": {
+ "Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
+ "Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDistributedTracingSamplingMode",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDistributedTracingSamplingMode, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "CompareTo",
+ "Parameters": [
+ {
+ "Name": "target",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "HasFlag",
+ "Parameters": [
+ {
+ "Name": "flag",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetTypeCode",
+ "Parameters": [],
+ "ReturnType": "System.TypeCode"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": []
+ },
"Microsoft.Azure.Commands.Management.IotHub.Models.PSModules": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModules",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModules, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSModules, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Authentication": "Microsoft.Azure.Commands.Management.IotHub.Models.PSAuthenticationMechanism",
"ConnectionState": "Microsoft.Azure.Commands.Management.IotHub.Models.PSDeviceConnectionState",
@@ -43772,7 +45690,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificatePropertiesWithNonce": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificatePropertiesWithNonce",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificatePropertiesWithNonce, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSCertificatePropertiesWithNonce, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsVerified": "System.Nullable`1[System.Boolean]",
"Expiry": "System.Nullable`1[System.DateTime]",
@@ -43822,7 +45740,7 @@
"System.Nullable`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobStatus]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobStatus]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -43834,7 +45752,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobStatus": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubJobStatus, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -43929,7 +45847,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubCapacity": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubCapacity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubCapacity, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubCapacity, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScaleType": "System.Nullable`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubScaleType]",
"Minimum": "System.Nullable`1[System.Int64]",
@@ -43976,7 +45894,7 @@
"System.Nullable`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubScaleType]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubScaleType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubScaleType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubScaleType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -43988,7 +45906,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubScaleType": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubScaleType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubScaleType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSIotHubScaleType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -44083,7 +46001,7 @@
"System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubInputProperties]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubInputProperties]",
- "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubInputProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubInputProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -44096,7 +46014,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubInputProperties": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubInputProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubInputProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEventHubInputProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PartitionCount": "System.Nullable`1[System.Int32]",
"RetentionTimeInDays": "System.Nullable`1[System.Int64]"
@@ -44141,7 +46059,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentProperties": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEnrichmentProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"EndpointNames": "System.Collections.Generic.IList`1[System.String]",
"Value": "System.String",
@@ -44187,7 +46105,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteProperties": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteProperties, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsEnabled": "System.Boolean",
"EndpointNames": "System.Collections.Generic.IList`1[System.String]",
@@ -44235,7 +46153,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingCustomEndpoint": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingCustomEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingCustomEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingCustomEndpoint, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"EndpointType": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType",
"Name": "System.String",
@@ -44283,7 +46201,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSEndpointType, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -44378,7 +46296,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRoutingSource, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -44473,7 +46391,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSTestRouteResultDetails": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSTestRouteResultDetails",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSTestRouteResultDetails, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSTestRouteResultDetails, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CompilationErrors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteCompilationError]"
},
@@ -44517,7 +46435,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteCompilationError]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteCompilationError]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteCompilationError, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteCompilationError, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -44529,7 +46447,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteCompilationError": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteCompilationError",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteCompilationError, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteCompilationError, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Location": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteErrorRange",
"Severity": "System.String",
@@ -44575,7 +46493,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteErrorRange": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteErrorRange",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteErrorRange, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteErrorRange, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Start": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteErrorPosition",
"End": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteErrorPosition"
@@ -44620,7 +46538,7 @@
"Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteErrorPosition": {
"Namespace": "Microsoft.Azure.Commands.Management.IotHub.Models",
"Name": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteErrorPosition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteErrorPosition, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Management.IotHub.Models.PSRouteErrorPosition, Microsoft.Azure.PowerShell.Cmdlets.IotHub, Version=2.3.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Line": "System.Nullable`1[System.Int32]",
"Column": "System.Nullable`1[System.Int32]"
diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.KeyVault.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.KeyVault.dll.json
index 7fec3c229366..103af8dd8a3e 100644
--- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.KeyVault.dll.json
+++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.KeyVault.dll.json
@@ -14,7 +14,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CancellationRequested": "System.Nullable`1[System.Boolean]",
"Id": "System.String",
@@ -116,7 +116,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsNames": "System.Collections.Generic.List`1[System.String]",
"KeyUsage": "System.Collections.Generic.List`1[System.String]",
@@ -384,7 +384,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsNames": "System.Collections.Generic.List`1[System.String]",
"KeyUsage": "System.Collections.Generic.List`1[System.String]",
@@ -626,7 +626,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateContact",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateContact, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateContact, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Email": "System.String",
"VaultName": "System.String"
@@ -698,7 +698,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -992,7 +992,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -1390,7 +1390,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes",
"Key": "Microsoft.Azure.KeyVault.WebKey.JsonWebKey",
@@ -1474,7 +1474,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -2377,7 +2377,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -2717,7 +2717,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -3909,7 +3909,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -4189,7 +4189,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -4506,7 +4506,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -4788,7 +4788,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -5107,7 +5107,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -5389,7 +5389,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -5649,7 +5649,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -5731,7 +5731,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"ResourceId": "System.String",
@@ -5795,7 +5795,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -6350,7 +6350,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -6408,7 +6408,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -6465,7 +6465,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificate, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificate, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -6524,7 +6524,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificateIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -6606,7 +6606,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -7222,7 +7222,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -7431,7 +7431,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -7618,7 +7618,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -8234,7 +8234,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateContact",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateContact, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateContact, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Email": "System.String",
"VaultName": "System.String"
@@ -8306,7 +8306,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -8516,7 +8516,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -8770,7 +8770,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"IssuerProvider": "System.String",
@@ -8821,7 +8821,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuer, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuer, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OrganizationDetails": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails",
"ApiKey": "System.Security.SecureString",
@@ -8897,7 +8897,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -9153,7 +9153,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -9485,7 +9485,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CancellationRequested": "System.Nullable`1[System.Boolean]",
"Id": "System.String",
@@ -9587,7 +9587,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -9781,7 +9781,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -9943,7 +9943,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -10003,7 +10003,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes",
"Key": "Microsoft.Azure.KeyVault.WebKey.JsonWebKey",
@@ -10065,7 +10065,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKeyIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -10127,7 +10127,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKey",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes",
"Key": "Microsoft.Azure.KeyVault.WebKey.JsonWebKey",
@@ -10213,7 +10213,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -10787,7 +10787,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -10972,7 +10972,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -11159,7 +11159,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -11751,7 +11751,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -11811,7 +11811,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretAttributes",
"Tags": "System.Collections.Hashtable",
@@ -11874,7 +11874,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecretIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -11936,7 +11936,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecret",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecret, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecret, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretAttributes",
"Tags": "System.Collections.Hashtable",
@@ -12023,7 +12023,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -12597,7 +12597,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -12782,7 +12782,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -12969,7 +12969,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -13561,7 +13561,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -14388,7 +14388,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -14956,7 +14956,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -15236,7 +15236,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -15494,7 +15494,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -15552,7 +15552,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -15613,7 +15613,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccountIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -15673,7 +15673,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -15758,7 +15758,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -16058,7 +16058,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -16384,7 +16384,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -16436,7 +16436,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinition, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinition, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -16491,7 +16491,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinition, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinition, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -16554,7 +16554,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinitionIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinitionIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinitionIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -16656,7 +16656,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -16938,7 +16938,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -17200,7 +17200,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -17306,7 +17306,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -17627,7 +17627,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -17933,7 +17933,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinition, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinition, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -18058,7 +18058,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -18356,7 +18356,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -18608,7 +18608,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -18691,7 +18691,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -18943,7 +18943,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -19269,7 +19269,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinition, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinition, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -19366,7 +19366,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -19824,7 +19824,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -20286,7 +20286,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -20389,7 +20389,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccountIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -20585,7 +20585,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccountIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -20749,7 +20749,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinition, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinition, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -20866,7 +20866,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinitionIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinitionIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinitionIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -21158,7 +21158,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinitionIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinitionIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultManagedStorageSasDefinitionIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -21304,7 +21304,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -21408,7 +21408,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -21871,7 +21871,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -22337,7 +22337,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccount, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -22441,7 +22441,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -22762,7 +22762,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
"TagsDictionary": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -23068,7 +23068,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -23842,7 +23842,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsNames": "System.Collections.Generic.List`1[System.String]",
"KeyUsage": "System.Collections.Generic.List`1[System.String]",
@@ -26013,7 +26013,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -26643,7 +26643,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -26850,7 +26850,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -27556,7 +27556,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -27678,7 +27678,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -28766,7 +28766,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -28975,7 +28975,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -29160,7 +29160,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -29345,7 +29345,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -29528,7 +29528,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -30492,7 +30492,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificate, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificate, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -30591,7 +30591,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -30909,7 +30909,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -31215,7 +31215,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateContact",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateContact, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateContact, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Email": "System.String",
"VaultName": "System.String"
@@ -31287,7 +31287,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -31581,7 +31581,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -31979,7 +31979,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuer, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuer, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OrganizationDetails": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails",
"ApiKey": "System.Security.SecureString",
@@ -32075,7 +32075,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"IssuerProvider": "System.String",
@@ -32346,7 +32346,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"IssuerProvider": "System.String",
@@ -32597,7 +32597,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CancellationRequested": "System.Nullable`1[System.Boolean]",
"Id": "System.String",
@@ -32699,7 +32699,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CancellationRequested": "System.Nullable`1[System.Boolean]",
"Id": "System.String",
@@ -32979,7 +32979,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CancellationRequested": "System.Nullable`1[System.Boolean]",
"Id": "System.String",
@@ -33239,7 +33239,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKey",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes",
"Key": "Microsoft.Azure.KeyVault.WebKey.JsonWebKey",
@@ -33345,7 +33345,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -33667,7 +33667,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -33975,7 +33975,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecret",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecret, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecret, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretAttributes",
"Tags": "System.Collections.Hashtable",
@@ -34082,7 +34082,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -34404,7 +34404,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -34712,7 +34712,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -34791,7 +34791,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -35043,7 +35043,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -35369,7 +35369,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes",
"Key": "Microsoft.Azure.KeyVault.WebKey.JsonWebKey",
@@ -35453,7 +35453,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -35705,7 +35705,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -36031,7 +36031,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretAttributes",
"Tags": "System.Collections.Hashtable",
@@ -36116,7 +36116,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -36368,7 +36368,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -36694,7 +36694,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -36816,7 +36816,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"ResourceId": "System.String",
@@ -38674,7 +38674,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"ResourceId": "System.String",
@@ -39043,7 +39043,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"ResourceId": "System.String",
@@ -39364,7 +39364,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"ResourceId": "System.String",
@@ -39685,7 +39685,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"ResourceId": "System.String",
@@ -40004,7 +40004,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"ResourceId": "System.String",
@@ -41590,7 +41590,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsNames": "System.Collections.Generic.List`1[System.String]",
"KeyUsage": "System.Collections.Generic.List`1[System.String]",
@@ -41842,7 +41842,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AdministratorDetails": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails]",
"Id": "System.String"
@@ -41897,7 +41897,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"IssuerProvider": "System.String",
@@ -42198,7 +42198,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AdministratorDetails": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails]",
"Id": "System.String"
@@ -42377,7 +42377,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIssuerIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"IssuerProvider": "System.String",
@@ -42562,7 +42562,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsNames": "System.Collections.Generic.List`1[System.String]",
"KeyUsage": "System.Collections.Generic.List`1[System.String]",
@@ -42762,7 +42762,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsNames": "System.Collections.Generic.List`1[System.String]",
"KeyUsage": "System.Collections.Generic.List`1[System.String]",
@@ -43651,7 +43651,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsNames": "System.Collections.Generic.List`1[System.String]",
"KeyUsage": "System.Collections.Generic.List`1[System.String]",
@@ -45291,7 +45291,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretAttributes",
"Tags": "System.Collections.Hashtable",
@@ -45396,7 +45396,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -45856,7 +45856,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -46320,7 +46320,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CancellationRequested": "System.Nullable`1[System.Boolean]",
"Id": "System.String",
@@ -46422,7 +46422,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CancellationRequested": "System.Nullable`1[System.Boolean]",
"Id": "System.String",
@@ -46660,7 +46660,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOperation, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CancellationRequested": "System.Nullable`1[System.Boolean]",
"Id": "System.String",
@@ -46872,7 +46872,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -46971,7 +46971,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificateIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -47167,7 +47167,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificateIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -47331,7 +47331,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes",
"Key": "Microsoft.Azure.KeyVault.WebKey.JsonWebKey",
@@ -47435,7 +47435,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKeyIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -47633,7 +47633,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKeyIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -47799,7 +47799,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -47903,7 +47903,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -48204,7 +48204,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -48421,7 +48421,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretAttributes",
"Tags": "System.Collections.Hashtable",
@@ -48526,7 +48526,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecretIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -48724,7 +48724,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecretIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSDeletedKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -48890,7 +48890,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificate, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -48989,7 +48989,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -49359,7 +49359,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -49697,7 +49697,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKey, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes",
"Key": "Microsoft.Azure.KeyVault.WebKey.JsonWebKey",
@@ -49801,7 +49801,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -50311,7 +50311,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -50834,7 +50834,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecret, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Attributes": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretAttributes",
"Tags": "System.Collections.Hashtable",
@@ -50939,7 +50939,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -51449,7 +51449,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -51971,7 +51971,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -52075,7 +52075,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -52453,7 +52453,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -52923,7 +52923,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -53027,7 +53027,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -53405,7 +53405,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -53875,7 +53875,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -53979,7 +53979,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -54100,7 +54100,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -54120,7 +54120,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -54281,7 +54281,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -54307,7 +54307,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -54449,7 +54449,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AccessPolicies": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
"NetworkAcls": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
@@ -54540,7 +54540,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -54566,7 +54566,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -54732,7 +54732,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -54758,7 +54758,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -54900,7 +54900,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -54926,7 +54926,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -55075,7 +55075,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificatePolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsNames": "System.Collections.Generic.List`1[System.String]",
"KeyUsage": "System.Collections.Generic.List`1[System.String]",
@@ -55273,7 +55273,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -55467,7 +55467,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateIdentityItem, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Hashtable",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -55629,7 +55629,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FirstName": "System.String",
"LastName": "System.String",
@@ -55945,7 +55945,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AdministratorDetails": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails]",
"Id": "System.String"
@@ -56017,7 +56017,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -56100,7 +56100,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -56568,7 +56568,7 @@
"Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[], Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy[], Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy",
"GenericTypeArguments": [],
@@ -56578,7 +56578,7 @@
"Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultAccessPolicy, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PermissionsToKeys": "System.Collections.Generic.List`1[System.String]",
"PermissionsToSecrets": "System.Collections.Generic.List`1[System.String]",
@@ -56700,7 +56700,7 @@
"Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleSet, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Bypass": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum",
"DefaultAction": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum",
@@ -56771,7 +56771,7 @@
"Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleBypassEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -56876,7 +56876,7 @@
"Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultNetworkRuleDefaultActionEnum, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -57802,7 +57802,7 @@
"Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultKeyAttributes, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TagsDirectionary": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"Tags": "System.Collections.Hashtable",
@@ -58178,7 +58178,7 @@
"Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateOrganizationDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AdministratorDetails": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails]",
"Id": "System.String"
@@ -58223,7 +58223,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -58235,7 +58235,7 @@
"Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultCertificateAdministratorDetails, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FirstName": "System.String",
"LastName": "System.String",
@@ -58292,7 +58292,7 @@
"Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretAttributes": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretAttributes",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretAttributes, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultSecretAttributes, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TagsDictionary": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"Tags": "System.Collections.Hashtable",
@@ -58345,7 +58345,7 @@
"Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageAccountAttributes, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enabled": "System.Nullable`1[System.Boolean]",
"Created": "System.Nullable`1[System.DateTime]",
@@ -58419,7 +58419,7 @@
"Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes": {
"Namespace": "Microsoft.Azure.Commands.KeyVault.Models",
"Name": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.KeyVault.Models.PSKeyVaultManagedStorageSasDefinitionAttributes, Microsoft.Azure.PowerShell.Cmdlets.KeyVault, Version=1.5.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enabled": "System.Nullable`1[System.Boolean]",
"Created": "System.Nullable`1[System.DateTime]",
diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Monitor.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Monitor.dll.json
index 714d2aeeabe2..10303693b75b 100644
--- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Monitor.dll.json
+++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Monitor.dll.json
@@ -14,7 +14,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Action": "Microsoft.Azure.Management.Monitor.Models.Action",
"Schedule": "Microsoft.Azure.Management.Monitor.Models.Schedule",
@@ -460,7 +460,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AznsAction": "Microsoft.Azure.Management.Monitor.Models.AzNsActionGroup",
"Trigger": "Microsoft.Azure.Management.Monitor.Models.TriggerCondition",
@@ -526,7 +526,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAznsAction",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAznsAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAznsAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ActionGroup": "System.Collections.Generic.IList`1[System.String]",
"EmailSubject": "System.String",
@@ -621,7 +621,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleTriggerCondition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleTriggerCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleTriggerCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MetricTrigger": "Microsoft.Azure.Management.Monitor.Models.LogMetricTrigger",
"Threshold": "System.Double",
@@ -724,7 +724,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAznsAction",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAznsAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAznsAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ActionGroup": "System.Collections.Generic.IList`1[System.String]",
"EmailSubject": "System.String",
@@ -837,7 +837,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleTriggerCondition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleTriggerCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleTriggerCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MetricTrigger": "Microsoft.Azure.Management.Monitor.Models.LogMetricTrigger",
"Threshold": "System.Double",
@@ -958,7 +958,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAznsAction",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAznsAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAznsAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ActionGroup": "System.Collections.Generic.IList`1[System.String]",
"EmailSubject": "System.String",
@@ -1234,7 +1234,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Action": "Microsoft.Azure.Management.Monitor.Models.Action",
"Schedule": "Microsoft.Azure.Management.Monitor.Models.Schedule",
@@ -1308,7 +1308,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AuthorizedResources": "System.Collections.Generic.IList`1[System.String]",
"Query": "System.String",
@@ -1373,7 +1373,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrequencyInMinutes": "System.Int32",
"TimeWindowInMinutes": "System.Int32"
@@ -1436,7 +1436,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AznsAction": "Microsoft.Azure.Management.Monitor.Models.AzNsActionGroup",
"Trigger": "Microsoft.Azure.Management.Monitor.Models.TriggerCondition",
@@ -1648,7 +1648,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AuthorizedResources": "System.Collections.Generic.IList`1[System.String]",
"Query": "System.String",
@@ -1719,7 +1719,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrequencyInMinutes": "System.Int32",
"TimeWindowInMinutes": "System.Int32"
@@ -1788,7 +1788,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AznsAction": "Microsoft.Azure.Management.Monitor.Models.AzNsActionGroup",
"Trigger": "Microsoft.Azure.Management.Monitor.Models.TriggerCondition",
@@ -2054,7 +2054,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleLogMetricTrigger",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleLogMetricTrigger, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleLogMetricTrigger, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Threshold": "System.Nullable`1[System.Double]",
"ThresholdOperator": "System.String",
@@ -2373,7 +2373,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrequencyInMinutes": "System.Int32",
"TimeWindowInMinutes": "System.Int32"
@@ -2611,7 +2611,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AuthorizedResources": "System.Collections.Generic.IList`1[System.String]",
"Query": "System.String",
@@ -2935,7 +2935,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleTriggerCondition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleTriggerCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleTriggerCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MetricTrigger": "Microsoft.Azure.Management.Monitor.Models.LogMetricTrigger",
"Threshold": "System.Double",
@@ -3036,7 +3036,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleLogMetricTrigger",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleLogMetricTrigger, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleLogMetricTrigger, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Threshold": "System.Nullable`1[System.Double]",
"ThresholdOperator": "System.String",
@@ -3183,7 +3183,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleLogMetricTrigger",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleLogMetricTrigger, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleLogMetricTrigger, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Threshold": "System.Nullable`1[System.Double]",
"ThresholdOperator": "System.String",
@@ -3319,7 +3319,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Action": "Microsoft.Azure.Management.Monitor.Models.Action",
"Schedule": "Microsoft.Azure.Management.Monitor.Models.Schedule",
@@ -3503,7 +3503,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Action": "Microsoft.Azure.Management.Monitor.Models.Action",
"Schedule": "Microsoft.Azure.Management.Monitor.Models.Schedule",
@@ -3933,7 +3933,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Action": "Microsoft.Azure.Management.Monitor.Models.Action",
"Schedule": "Microsoft.Azure.Management.Monitor.Models.Schedule",
@@ -4007,7 +4007,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Action": "Microsoft.Azure.Management.Monitor.Models.Action",
"Schedule": "Microsoft.Azure.Management.Monitor.Models.Schedule",
@@ -4098,7 +4098,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AuthorizedResources": "System.Collections.Generic.IList`1[System.String]",
"Query": "System.String",
@@ -4163,7 +4163,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrequencyInMinutes": "System.Int32",
"TimeWindowInMinutes": "System.Int32"
@@ -4226,7 +4226,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AznsAction": "Microsoft.Azure.Management.Monitor.Models.AzNsActionGroup",
"Trigger": "Microsoft.Azure.Management.Monitor.Models.TriggerCondition",
@@ -4456,7 +4456,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Action": "Microsoft.Azure.Management.Monitor.Models.Action",
"Schedule": "Microsoft.Azure.Management.Monitor.Models.Schedule",
@@ -4535,7 +4535,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AuthorizedResources": "System.Collections.Generic.IList`1[System.String]",
"Query": "System.String",
@@ -4606,7 +4606,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrequencyInMinutes": "System.Int32",
"TimeWindowInMinutes": "System.Int32"
@@ -4675,7 +4675,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AznsAction": "Microsoft.Azure.Management.Monitor.Models.AzNsActionGroup",
"Trigger": "Microsoft.Azure.Management.Monitor.Models.TriggerCondition",
@@ -4934,7 +4934,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AuthorizedResources": "System.Collections.Generic.IList`1[System.String]",
"Query": "System.String",
@@ -5005,7 +5005,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrequencyInMinutes": "System.Int32",
"TimeWindowInMinutes": "System.Int32"
@@ -5074,7 +5074,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AznsAction": "Microsoft.Azure.Management.Monitor.Models.AzNsActionGroup",
"Trigger": "Microsoft.Azure.Management.Monitor.Models.TriggerCondition",
@@ -5309,7 +5309,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AuthorizedResources": "System.Collections.Generic.IList`1[System.String]",
"Query": "System.String",
@@ -5380,7 +5380,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrequencyInMinutes": "System.Int32",
"TimeWindowInMinutes": "System.Int32"
@@ -5449,7 +5449,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleAlertingAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AznsAction": "Microsoft.Azure.Management.Monitor.Models.AzNsActionGroup",
"Trigger": "Microsoft.Azure.Management.Monitor.Models.TriggerCondition",
@@ -5807,7 +5807,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Action": "Microsoft.Azure.Management.Monitor.Models.Action",
"Schedule": "Microsoft.Azure.Management.Monitor.Models.Schedule",
@@ -5881,7 +5881,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Action": "Microsoft.Azure.Management.Monitor.Models.Action",
"Schedule": "Microsoft.Azure.Management.Monitor.Models.Schedule",
@@ -6065,7 +6065,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSScheduledQueryRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Action": "Microsoft.Azure.Management.Monitor.Models.Action",
"Schedule": "Microsoft.Azure.Management.Monitor.Models.Schedule",
@@ -6471,7 +6471,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetric",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetric, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetric, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "Microsoft.Azure.Management.Monitor.Models.LocalizableString",
"Unit": "Microsoft.Azure.Management.Monitor.Models.Unit",
@@ -7402,7 +7402,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDefinition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDefinition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "Microsoft.Azure.Management.Monitor.Models.LocalizableString",
"Dimensions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Models.LocalizableString]",
@@ -7967,7 +7967,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RetentionPolicy": "Microsoft.Azure.Management.Monitor.Management.Models.RetentionPolicy",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -8393,7 +8393,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfileCollection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfileCollection, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfileCollection, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Item": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile",
"Count": "System.Int32",
@@ -9341,7 +9341,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSServiceDiagnosticSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSServiceDiagnosticSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSServiceDiagnosticSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Logs": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.LogSettings]",
@@ -9813,7 +9813,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSServiceDiagnosticSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSServiceDiagnosticSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSServiceDiagnosticSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Logs": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.LogSettings]",
@@ -9883,7 +9883,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSServiceDiagnosticSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSServiceDiagnosticSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSServiceDiagnosticSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Logs": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.LogSettings]",
@@ -10253,7 +10253,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSServiceDiagnosticSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSServiceDiagnosticSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSServiceDiagnosticSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Logs": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.LogSettings]",
@@ -10813,7 +10813,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAddAutoscaleSettingOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAddAutoscaleSettingOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAddAutoscaleSettingOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SettingSpec": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleSettingResource",
"StatusCode": "System.Net.HttpStatusCode",
@@ -10870,7 +10870,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAutoscaleSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAutoscaleSetting, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAutoscaleSetting, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Notifications": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification]",
@@ -11014,7 +11014,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -11052,7 +11052,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -11113,7 +11113,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAutoscaleSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAutoscaleSetting, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAutoscaleSetting, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Notifications": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification]",
@@ -11239,7 +11239,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -11265,7 +11265,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -11433,7 +11433,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -11483,7 +11483,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -11604,7 +11604,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventData",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventData, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventData, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Claims": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDictionaryElement",
"Properties": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDictionaryElement",
@@ -12040,7 +12040,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAutoscaleSetting",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAutoscaleSetting, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAutoscaleSetting, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Notifications": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification]",
@@ -12375,7 +12375,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Email": "Microsoft.Azure.Management.Monitor.Management.Models.EmailNotification",
"Webhooks": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification]",
@@ -12440,7 +12440,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification",
"GenericTypeArguments": [],
@@ -12551,7 +12551,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification",
"GenericTypeArguments": [],
@@ -12698,7 +12698,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Recurrence": "Microsoft.Azure.Management.Monitor.Management.Models.Recurrence",
"Capacity": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleCapacity",
@@ -12896,7 +12896,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.RecurrenceFrequency",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RecurrenceFrequency, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RecurrenceFrequency, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -13077,7 +13077,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -13232,7 +13232,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -13470,7 +13470,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -13636,7 +13636,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.RecurrenceFrequency",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RecurrenceFrequency, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RecurrenceFrequency, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -13847,7 +13847,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -13968,7 +13968,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MetricTrigger": "Microsoft.Azure.Management.Monitor.Management.Models.MetricTrigger",
"ScaleAction": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleAction"
@@ -14087,7 +14087,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.ComparisonOperationType",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ComparisonOperationType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ComparisonOperationType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -14190,7 +14190,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.MetricStatisticType",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.MetricStatisticType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.MetricStatisticType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -14311,7 +14311,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationType",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -14468,7 +14468,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleDirection",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleDirection, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleDirection, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -14571,7 +14571,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleType",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -14779,7 +14779,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.ComparisonOperationType",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ComparisonOperationType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ComparisonOperationType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -14888,7 +14888,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.MetricStatisticType",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.MetricStatisticType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.MetricStatisticType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -15021,7 +15021,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationType",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -15202,7 +15202,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleDirection",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleDirection, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleDirection, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -15311,7 +15311,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleType",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -15495,7 +15495,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"ServiceUri": "System.String"
@@ -16009,7 +16009,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAddAlertRuleOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAddAlertRuleOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAddAlertRuleOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AlertRule": "Microsoft.Azure.Management.Monitor.Management.Models.AlertRuleResource",
"StatusCode": "System.Net.HttpStatusCode",
@@ -16082,7 +16082,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.ConditionOperator",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ConditionOperator, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ConditionOperator, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -16239,7 +16239,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationOperator]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationOperator, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationOperator, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -16351,7 +16351,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.RuleAction]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.RuleAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.RuleAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -16434,7 +16434,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.ConditionOperator",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ConditionOperator, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ConditionOperator, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -16615,7 +16615,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationOperator]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationOperator, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationOperator, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -16763,7 +16763,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.RuleAction]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.RuleAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.RuleAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -16840,7 +16840,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricAlertRuleV2",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricAlertRuleV2, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricAlertRuleV2, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Actions": "Microsoft.Azure.Management.Monitor.Models.ActivityLogAlertActionGroup[]",
"Criteria": "Microsoft.Azure.Management.Monitor.Models.MetricAlertCriteria",
@@ -17072,7 +17072,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -17325,7 +17325,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -17593,7 +17593,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -17887,7 +17887,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -18179,7 +18179,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -18497,7 +18497,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -18841,7 +18841,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -19183,7 +19183,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -19332,7 +19332,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAddAlertRuleOperationResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAddAlertRuleOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAddAlertRuleOperationResponse, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AlertRule": "Microsoft.Azure.Management.Monitor.Management.Models.AlertRuleResource",
"StatusCode": "System.Net.HttpStatusCode",
@@ -19569,7 +19569,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.RuleAction]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.RuleAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.RuleAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -19870,7 +19870,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.RuleAction]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.RuleAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.RuleAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -19947,7 +19947,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventData",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventData, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventData, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Claims": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDictionaryElement",
"Properties": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDictionaryElement",
@@ -20383,7 +20383,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAlertRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAlertRule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAlertRule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Condition": "Microsoft.Azure.Management.Monitor.Management.Models.RuleCondition",
"IsEnabled": "System.Boolean",
@@ -20950,7 +20950,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricAlertRuleV2",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricAlertRuleV2, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricAlertRuleV2, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Actions": "Microsoft.Azure.Management.Monitor.Models.ActivityLogAlertActionGroup[]",
"Criteria": "Microsoft.Azure.Management.Monitor.Models.MetricAlertCriteria",
@@ -21408,7 +21408,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.RuleEmailAction",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RuleEmailAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RuleEmailAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomEmails": "System.Collections.Generic.IList`1[System.String]",
"SendToServiceOwners": "System.Nullable`1[System.Boolean]"
@@ -21646,7 +21646,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.RuleWebhookAction",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RuleWebhookAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RuleWebhookAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"ServiceUri": "System.String"
@@ -21884,7 +21884,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricCriteria",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CriterionType": "Microsoft.Azure.Commands.Insights.OutputClasses.CriterionType",
"AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]",
@@ -21951,7 +21951,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDynamicMetricCriteria",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDynamicMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDynamicMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CriterionType": "Microsoft.Azure.Commands.Insights.OutputClasses.CriterionType",
"FailingPeriods": "Microsoft.Azure.Management.Monitor.Models.DynamicThresholdFailingPeriods",
@@ -22078,7 +22078,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension",
"GenericTypeArguments": [],
@@ -22445,7 +22445,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension",
"GenericTypeArguments": [],
@@ -22609,7 +22609,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension",
"GenericTypeArguments": [],
@@ -22797,7 +22797,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension",
"GenericTypeArguments": [],
@@ -22920,7 +22920,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IncludeValues": "System.Collections.Generic.IList`1[System.String]",
"ExcludeValues": "System.Collections.Generic.IList`1[System.String]",
@@ -23557,7 +23557,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricAlertRuleV2",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricAlertRuleV2, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricAlertRuleV2, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Actions": "Microsoft.Azure.Management.Monitor.Models.ActivityLogAlertActionGroup[]",
"Criteria": "Microsoft.Azure.Management.Monitor.Models.MetricAlertCriteria",
@@ -23971,7 +23971,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricAlertRuleV2",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricAlertRuleV2, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricAlertRuleV2, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Actions": "Microsoft.Azure.Management.Monitor.Models.ActivityLogAlertActionGroup[]",
"Criteria": "Microsoft.Azure.Management.Monitor.Models.MetricAlertCriteria",
@@ -24247,7 +24247,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventData",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventData, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventData, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Claims": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDictionaryElement",
"Properties": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDictionaryElement",
@@ -25789,7 +25789,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Actions": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList",
"Condition": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition",
@@ -25897,7 +25897,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Actions": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList",
"Condition": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition",
@@ -26117,7 +26117,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Actions": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList",
"Condition": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition",
@@ -26357,7 +26357,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Actions": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList",
"Condition": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition",
@@ -26465,7 +26465,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Actions": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList",
"Condition": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition",
@@ -26685,7 +26685,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Actions": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList",
"Condition": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition",
@@ -26925,7 +26925,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Actions": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList",
"Condition": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition",
@@ -27283,7 +27283,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"WebhookProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"ActionGroupId": "System.String"
@@ -27532,7 +27532,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Field": "System.String",
"Equals": "System.String"
@@ -27865,7 +27865,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Actions": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList",
"Condition": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition",
@@ -28085,7 +28085,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Actions": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList",
"Condition": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition",
@@ -28325,7 +28325,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Actions": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList",
"Condition": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition",
@@ -28471,7 +28471,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -28491,7 +28491,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -28568,7 +28568,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Actions": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList",
"Condition": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition",
@@ -28794,7 +28794,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -28820,7 +28820,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -29015,7 +29015,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -29041,7 +29041,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -29236,7 +29236,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -29262,7 +29262,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -29339,7 +29339,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActivityLogAlertResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Actions": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList",
"Condition": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition",
@@ -29511,7 +29511,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enabled": "System.Boolean",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -29877,7 +29877,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String"
},
@@ -32638,7 +32638,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enabled": "System.Boolean",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -32916,7 +32916,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enabled": "System.Boolean",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -33096,7 +33096,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enabled": "System.Boolean",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -33230,7 +33230,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -33307,7 +33307,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enabled": "System.Boolean",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -33497,7 +33497,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -33642,7 +33642,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -33862,7 +33862,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enabled": "System.Boolean",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -35556,7 +35556,7 @@
"Microsoft.Azure.Management.Monitor.Management.Models.RetentionPolicy": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.RetentionPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RetentionPolicy, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RetentionPolicy, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enabled": "System.Boolean",
"Days": "System.Int32"
@@ -35675,7 +35675,7 @@
"Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RetentionPolicy": "Microsoft.Azure.Management.Monitor.Management.Models.RetentionPolicy",
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
@@ -35738,7 +35738,7 @@
"System.Collections.ObjectModel.ReadOnlyCollection`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile]": {
"Namespace": "System.Collections.ObjectModel",
"Name": "System.Collections.ObjectModel.ReadOnlyCollection`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile]",
- "AssemblyQualifiedName": "System.Collections.ObjectModel.ReadOnlyCollection`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.ObjectModel.ReadOnlyCollection`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -35772,7 +35772,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -35784,7 +35784,7 @@
"System.Collections.Generic.List`1+Enumerator[Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1+Enumerator[Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1+Enumerator[[Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1+Enumerator[[Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -35796,7 +35796,7 @@
"Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile[]": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile[], Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogProfile",
"GenericTypeArguments": [],
@@ -35816,7 +35816,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.LogSettings]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.LogSettings]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Management.Models.LogSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Management.Models.LogSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -35828,7 +35828,7 @@
"Microsoft.Azure.Management.Monitor.Management.Models.LogSettings": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.LogSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.LogSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.LogSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RetentionPolicy": "Microsoft.Azure.Management.Monitor.Management.Models.RetentionPolicy",
"Enabled": "System.Boolean",
@@ -35884,7 +35884,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.MetricSettings]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.MetricSettings]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Management.Models.MetricSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Management.Models.MetricSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -35896,7 +35896,7 @@
"Microsoft.Azure.Management.Monitor.Management.Models.MetricSettings": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.MetricSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.MetricSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.MetricSettings, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RetentionPolicy": "Microsoft.Azure.Management.Monitor.Management.Models.RetentionPolicy",
"Enabled": "System.Boolean",
@@ -36120,7 +36120,7 @@
"Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleSettingResource": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleSettingResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleSettingResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleSettingResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Notifications": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification]",
@@ -36183,7 +36183,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -36195,7 +36195,7 @@
"Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Email": "Microsoft.Azure.Management.Monitor.Management.Models.EmailNotification",
"Webhooks": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification]",
@@ -36251,7 +36251,7 @@
"Microsoft.Azure.Management.Monitor.Management.Models.EmailNotification": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.EmailNotification",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.EmailNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.EmailNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomEmails": "System.Collections.Generic.IList`1[System.String]",
"SendToSubscriptionCoAdministrators": "System.Nullable`1[System.Boolean]",
@@ -36371,7 +36371,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -36383,7 +36383,7 @@
"Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.WebhookNotification, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"ServiceUri": "System.String"
@@ -36509,7 +36509,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -36521,7 +36521,7 @@
"Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.AutoscaleProfile, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Recurrence": "Microsoft.Azure.Management.Monitor.Management.Models.Recurrence",
"Capacity": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleCapacity",
@@ -36584,7 +36584,7 @@
"Microsoft.Azure.Management.Monitor.Management.Models.Recurrence": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.Recurrence",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.Recurrence, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.Recurrence, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Frequency": "Microsoft.Azure.Management.Monitor.Management.Models.RecurrenceFrequency",
"Schedule": "Microsoft.Azure.Management.Monitor.Management.Models.RecurrentSchedule"
@@ -36644,7 +36644,7 @@
"Microsoft.Azure.Management.Monitor.Management.Models.RecurrenceFrequency": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.RecurrenceFrequency",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RecurrenceFrequency, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RecurrenceFrequency, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -36739,7 +36739,7 @@
"Microsoft.Azure.Management.Monitor.Management.Models.RecurrentSchedule": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.RecurrentSchedule",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RecurrentSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RecurrentSchedule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Hours": "System.Collections.Generic.IList`1[System.Nullable`1[System.Int32]]",
"Minutes": "System.Collections.Generic.IList`1[System.Nullable`1[System.Int32]]",
@@ -36982,7 +36982,7 @@
"Microsoft.Azure.Management.Monitor.Management.Models.ScaleCapacity": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleCapacity",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleCapacity, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleCapacity, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Minimum": "System.String",
"Maximum": "System.String",
@@ -37043,7 +37043,7 @@
"Microsoft.Azure.Management.Monitor.Management.Models.TimeWindow": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.TimeWindow",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.TimeWindow, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.TimeWindow, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Start": "System.DateTime",
"End": "System.DateTime",
@@ -37306,7 +37306,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -37318,7 +37318,7 @@
"Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleRule, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MetricTrigger": "Microsoft.Azure.Management.Monitor.Management.Models.MetricTrigger",
"ScaleAction": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleAction"
@@ -37392,7 +37392,7 @@
"Microsoft.Azure.Management.Monitor.Management.Models.MetricTrigger": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.MetricTrigger",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.MetricTrigger, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.MetricTrigger, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OperatorProperty": "Microsoft.Azure.Management.Monitor.Management.Models.ComparisonOperationType",
"Statistic": "Microsoft.Azure.Management.Monitor.Management.Models.MetricStatisticType",
@@ -37458,7 +37458,7 @@
"Microsoft.Azure.Management.Monitor.Management.Models.ComparisonOperationType": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.ComparisonOperationType",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ComparisonOperationType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ComparisonOperationType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -37553,7 +37553,7 @@
"Microsoft.Azure.Management.Monitor.Management.Models.MetricStatisticType": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.MetricStatisticType",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.MetricStatisticType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.MetricStatisticType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -37648,7 +37648,7 @@
"Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationType": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationType",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -38028,7 +38028,7 @@
"Microsoft.Azure.Management.Monitor.Management.Models.ScaleAction": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleAction",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Direction": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleDirection",
"Type": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleType",
@@ -38090,7 +38090,7 @@
"Microsoft.Azure.Management.Monitor.Management.Models.ScaleDirection": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleDirection",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleDirection, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleDirection, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -38185,7 +38185,7 @@
"Microsoft.Azure.Management.Monitor.Management.Models.ScaleType": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleType",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ScaleType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -38877,7 +38877,7 @@
"Microsoft.Azure.Commands.Insights.OutputClasses.PSDictionaryElement": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDictionaryElement",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDictionaryElement, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSDictionaryElement, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Content": "System.Collections.Generic.IDictionary`2[System.String,System.String]"
},
@@ -38936,7 +38936,7 @@
"Microsoft.Azure.Commands.Insights.OutputClasses.PSEventDataAuthorization": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventDataAuthorization",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventDataAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventDataAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Scope": "System.String",
"Action": "System.String",
@@ -38983,7 +38983,7 @@
"Microsoft.Azure.Commands.Insights.OutputClasses.PSEventDataHttpRequest": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventDataHttpRequest",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventDataHttpRequest, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEventDataHttpRequest, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ClientId": "System.String",
"Method": "System.String",
@@ -39270,7 +39270,7 @@
"Microsoft.Azure.Management.Monitor.Management.Models.AlertRuleResource": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.AlertRuleResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.AlertRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.AlertRuleResource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Condition": "Microsoft.Azure.Management.Monitor.Management.Models.RuleCondition",
"IsEnabled": "System.Boolean",
@@ -39339,7 +39339,7 @@
"Microsoft.Azure.Management.Monitor.Management.Models.RuleCondition": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.RuleCondition",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DataSource": "Microsoft.Azure.Management.Monitor.Management.Models.RuleDataSource"
},
@@ -39393,7 +39393,7 @@
"Microsoft.Azure.Management.Monitor.Management.Models.RuleDataSource": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.RuleDataSource",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RuleDataSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RuleDataSource, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceUri": "System.String"
},
@@ -39555,7 +39555,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.RuleAction]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.RuleAction]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Management.Models.RuleAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Management.Models.RuleAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -39567,7 +39567,7 @@
"Microsoft.Azure.Management.Monitor.Management.Models.RuleAction": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.RuleAction",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RuleAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.RuleAction, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -39663,7 +39663,7 @@
"Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationOperator": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationOperator",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationOperator, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.TimeAggregationOperator, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -39909,7 +39909,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -39921,7 +39921,7 @@
"Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.IPSMultiMetricCriteria, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CriterionType": "Microsoft.Azure.Commands.Insights.OutputClasses.CriterionType"
},
@@ -39933,7 +39933,7 @@
"Microsoft.Azure.Commands.Insights.OutputClasses.CriterionType": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.CriterionType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.CriterionType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.CriterionType, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -40244,7 +40244,7 @@
"Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSMetricDimension, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IncludeValues": "System.Collections.Generic.IList`1[System.String]",
"ExcludeValues": "System.Collections.Generic.IList`1[System.String]",
@@ -40303,7 +40303,7 @@
"Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionList, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ActionGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup]"
},
@@ -40357,7 +40357,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -40369,7 +40369,7 @@
"Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertActionGroup, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"WebhookProperties": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"ActionGroupId": "System.String"
@@ -40441,7 +40441,7 @@
"Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertAllOfCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllOf": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition]"
},
@@ -40495,7 +40495,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -40507,7 +40507,7 @@
"Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ActivityLogAlertLeafCondition, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Field": "System.String",
"Equals": "System.String"
@@ -40756,7 +40756,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSArmRoleReceiver]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSArmRoleReceiver]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSArmRoleReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSArmRoleReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -40768,7 +40768,7 @@
"Microsoft.Azure.Commands.Insights.OutputClasses.PSArmRoleReceiver": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSArmRoleReceiver",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSArmRoleReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSArmRoleReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"UseCommonAlertSchema": "System.Boolean",
"RoleId": "System.String",
@@ -40824,7 +40824,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSAutomationRunbookReceiver]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSAutomationRunbookReceiver]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSAutomationRunbookReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSAutomationRunbookReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -40836,7 +40836,7 @@
"Microsoft.Azure.Commands.Insights.OutputClasses.PSAutomationRunbookReceiver": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAutomationRunbookReceiver",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAutomationRunbookReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAutomationRunbookReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsGlobalRunbook": "System.Boolean",
"UseCommonAlertSchema": "System.Boolean",
@@ -40896,7 +40896,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSAzureAppPushReceiver]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSAzureAppPushReceiver]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSAzureAppPushReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSAzureAppPushReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -40908,7 +40908,7 @@
"Microsoft.Azure.Commands.Insights.OutputClasses.PSAzureAppPushReceiver": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAzureAppPushReceiver",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAzureAppPushReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAzureAppPushReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"EmailAddress": "System.String",
"Name": "System.String"
@@ -40963,7 +40963,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSAzureFunctionReceiver]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSAzureFunctionReceiver]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSAzureFunctionReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSAzureFunctionReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -40975,7 +40975,7 @@
"Microsoft.Azure.Commands.Insights.OutputClasses.PSAzureFunctionReceiver": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAzureFunctionReceiver",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAzureFunctionReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSAzureFunctionReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"UseCommonAlertSchema": "System.Boolean",
"FunctionAppResourceId": "System.String",
@@ -41033,7 +41033,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSEmailReceiver]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSEmailReceiver]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSEmailReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSEmailReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -41045,7 +41045,7 @@
"Microsoft.Azure.Commands.Insights.OutputClasses.PSEmailReceiver": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEmailReceiver",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEmailReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSEmailReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"UseCommonAlertSchema": "System.Boolean",
"Status": "System.Nullable`1[Microsoft.Azure.Management.Monitor.Management.Models.ReceiverStatus]",
@@ -41102,7 +41102,7 @@
"System.Nullable`1[Microsoft.Azure.Management.Monitor.Management.Models.ReceiverStatus]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Management.Monitor.Management.Models.ReceiverStatus]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Monitor.Management.Models.ReceiverStatus, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Management.Monitor.Management.Models.ReceiverStatus, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -41114,7 +41114,7 @@
"Microsoft.Azure.Management.Monitor.Management.Models.ReceiverStatus": {
"Namespace": "Microsoft.Azure.Management.Monitor.Management.Models",
"Name": "Microsoft.Azure.Management.Monitor.Management.Models.ReceiverStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ReceiverStatus, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.Monitor.Management.Models.ReceiverStatus, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -41209,7 +41209,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSItsmReceiver]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSItsmReceiver]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSItsmReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSItsmReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -41221,7 +41221,7 @@
"Microsoft.Azure.Commands.Insights.OutputClasses.PSItsmReceiver": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSItsmReceiver",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSItsmReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSItsmReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"WorkspaceId": "System.String",
"ConnectionId": "System.String",
@@ -41279,7 +41279,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSLogicAppReceiver]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSLogicAppReceiver]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSLogicAppReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSLogicAppReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -41291,7 +41291,7 @@
"Microsoft.Azure.Commands.Insights.OutputClasses.PSLogicAppReceiver": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogicAppReceiver",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogicAppReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSLogicAppReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"UseCommonAlertSchema": "System.Boolean",
"ResourceId": "System.String",
@@ -41348,7 +41348,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSSmsReceiver]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSSmsReceiver]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSSmsReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSSmsReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -41360,7 +41360,7 @@
"Microsoft.Azure.Commands.Insights.OutputClasses.PSSmsReceiver": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSSmsReceiver",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSSmsReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSSmsReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Status": "System.Nullable`1[Microsoft.Azure.Management.Monitor.Management.Models.ReceiverStatus]",
"CountryCode": "System.String",
@@ -41417,7 +41417,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSVoiceReceiver]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSVoiceReceiver]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSVoiceReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSVoiceReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -41429,7 +41429,7 @@
"Microsoft.Azure.Commands.Insights.OutputClasses.PSVoiceReceiver": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSVoiceReceiver",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSVoiceReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSVoiceReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CountryCode": "System.String",
"PhoneNumber": "System.String",
@@ -41485,7 +41485,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSWebhookReceiver]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Insights.OutputClasses.PSWebhookReceiver]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSWebhookReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Insights.OutputClasses.PSWebhookReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -41497,7 +41497,7 @@
"Microsoft.Azure.Commands.Insights.OutputClasses.PSWebhookReceiver": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSWebhookReceiver",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSWebhookReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSWebhookReceiver, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"UseCommonAlertSchema": "System.Boolean",
"UseAadAuth": "System.Boolean",
@@ -41557,7 +41557,7 @@
"Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase": {
"Namespace": "Microsoft.Azure.Commands.Insights.OutputClasses",
"Name": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.1.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase, Microsoft.Azure.PowerShell.Cmdlets.Monitor, Version=1.6.2.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String"
},
diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Network.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Network.dll.json
index fc586b70d91d..9ff72f20c2c8 100644
--- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Network.dll.json
+++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Network.dll.json
@@ -14,7 +14,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -116,7 +116,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -292,7 +292,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -498,7 +498,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Data": "System.String",
"ProvisioningState": "System.String",
@@ -574,7 +574,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -738,7 +738,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -896,7 +896,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Data": "System.String",
"ProvisioningState": "System.String",
@@ -1128,7 +1128,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -1248,7 +1248,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -1412,7 +1412,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -1570,7 +1570,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -1672,7 +1672,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -1848,7 +1848,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -2054,7 +2054,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MinCapacity": "System.Int32",
"MaxCapacity": "System.Nullable`1[System.Int32]"
@@ -2108,7 +2108,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -2248,7 +2248,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -2406,7 +2406,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MinCapacity": "System.Int32",
"MaxCapacity": "System.Nullable`1[System.Int32]"
@@ -2638,7 +2638,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -2740,7 +2740,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -2898,7 +2898,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -3080,7 +3080,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -3182,7 +3182,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -3360,7 +3360,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -3568,7 +3568,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -3670,7 +3670,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -3864,7 +3864,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -4094,7 +4094,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -4183,7 +4183,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -4347,7 +4347,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -4505,7 +4505,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -4792,7 +4792,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -4881,7 +4881,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -5045,7 +5045,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -5203,7 +5203,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -5305,7 +5305,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -5499,7 +5499,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -5729,7 +5729,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -5831,7 +5831,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -6028,7 +6028,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enabled": "System.Boolean",
"DrainTimeoutInSec": "System.Int32"
@@ -6099,7 +6099,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch",
"PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]",
@@ -6166,7 +6166,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate",
"GenericTypeArguments": [],
@@ -6184,7 +6184,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate",
"GenericTypeArguments": [],
@@ -6313,7 +6313,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -6546,7 +6546,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enabled": "System.Boolean",
"DrainTimeoutInSec": "System.Int32"
@@ -6629,7 +6629,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch",
"PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]",
@@ -6702,7 +6702,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate",
"GenericTypeArguments": [],
@@ -6726,7 +6726,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate",
"GenericTypeArguments": [],
@@ -6899,7 +6899,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -7004,7 +7004,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -7168,7 +7168,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -7328,7 +7328,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -7511,7 +7511,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enabled": "System.Boolean",
"DrainTimeoutInSec": "System.Int32"
@@ -7582,7 +7582,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch",
"PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]",
@@ -7649,7 +7649,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate",
"GenericTypeArguments": [],
@@ -7667,7 +7667,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate",
"GenericTypeArguments": [],
@@ -7922,7 +7922,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enabled": "System.Boolean",
"DrainTimeoutInSec": "System.Int32"
@@ -8005,7 +8005,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch",
"PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]",
@@ -8078,7 +8078,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate",
"GenericTypeArguments": [],
@@ -8102,7 +8102,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate",
"GenericTypeArguments": [],
@@ -8275,7 +8275,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -8395,7 +8395,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -8559,7 +8559,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -8719,7 +8719,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -8821,7 +8821,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -9018,7 +9018,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enabled": "System.Boolean",
"DrainTimeoutInSec": "System.Int32"
@@ -9089,7 +9089,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch",
"PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]",
@@ -9156,7 +9156,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate",
"GenericTypeArguments": [],
@@ -9174,7 +9174,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate",
"GenericTypeArguments": [],
@@ -9303,7 +9303,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -9536,7 +9536,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enabled": "System.Boolean",
"DrainTimeoutInSec": "System.Int32"
@@ -9619,7 +9619,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch",
"PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]",
@@ -9692,7 +9692,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate",
"GenericTypeArguments": [],
@@ -9716,7 +9716,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate",
"GenericTypeArguments": [],
@@ -9889,7 +9889,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enabled": "System.Boolean",
"DrainTimeoutInSec": "System.Int32"
@@ -9943,7 +9943,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -10068,7 +10068,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -10211,7 +10211,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enabled": "System.Boolean",
"DrainTimeoutInSec": "System.Int32"
@@ -10439,7 +10439,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -10526,7 +10526,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -10651,7 +10651,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -10794,7 +10794,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -10881,7 +10881,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -11042,7 +11042,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -11233,7 +11233,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StatusCode": "System.String",
"CustomErrorPageUrl": "System.String"
@@ -11287,7 +11287,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -11463,7 +11463,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -11669,7 +11669,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StatusCode": "System.String",
"CustomErrorPageUrl": "System.String"
@@ -11723,7 +11723,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -11867,7 +11867,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -12041,7 +12041,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StatusCode": "System.String",
"CustomErrorPageUrl": "System.String"
@@ -12113,7 +12113,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -12277,7 +12277,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -12435,7 +12435,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StatusCode": "System.String",
"CustomErrorPageUrl": "System.String"
@@ -12507,7 +12507,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -12639,7 +12639,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -12765,7 +12765,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StatusCode": "System.String",
"CustomErrorPageUrl": "System.String"
@@ -12993,7 +12993,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StatusCode": "System.String",
"CustomErrorPageUrl": "System.String"
@@ -13065,7 +13065,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -13229,7 +13229,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -13387,7 +13387,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StatusCode": "System.String",
"CustomErrorPageUrl": "System.String"
@@ -13459,7 +13459,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -13591,7 +13591,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -13717,7 +13717,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StatusCode": "System.String",
"CustomErrorPageUrl": "System.String"
@@ -13771,7 +13771,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -13947,7 +13947,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -14153,7 +14153,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StatusCode": "System.String",
"CustomErrorPageUrl": "System.String"
@@ -14207,7 +14207,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -14351,7 +14351,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -14525,7 +14525,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enabled": "System.Boolean",
"DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]",
@@ -14588,7 +14588,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -14728,7 +14728,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -14886,7 +14886,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enabled": "System.Boolean",
"DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]",
@@ -15028,7 +15028,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup",
"GenericTypeArguments": [],
@@ -15100,7 +15100,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion",
"GenericTypeArguments": [],
@@ -15260,7 +15260,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup",
"GenericTypeArguments": [],
@@ -15356,7 +15356,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion",
"GenericTypeArguments": [],
@@ -15431,7 +15431,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -15533,7 +15533,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -15713,7 +15713,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup",
"GenericTypeArguments": [],
@@ -15785,7 +15785,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion",
"GenericTypeArguments": [],
@@ -15842,7 +15842,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -16052,7 +16052,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup",
"GenericTypeArguments": [],
@@ -16148,7 +16148,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion",
"GenericTypeArguments": [],
@@ -16223,7 +16223,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Rules": "System.Collections.Generic.List`1[System.Int32]",
"RuleGroupName": "System.String",
@@ -16452,7 +16452,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MatchVariable": "System.String",
"SelectorMatchOperator": "System.String",
@@ -16723,7 +16723,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -16825,7 +16825,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -16980,7 +16980,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -17111,7 +17111,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -17226,7 +17226,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -17497,7 +17497,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -17696,7 +17696,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -17815,7 +17815,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -17897,7 +17897,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -18079,7 +18079,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -18160,7 +18160,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -18324,7 +18324,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -18482,7 +18482,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -18599,7 +18599,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -18730,7 +18730,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -19101,7 +19101,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -19220,7 +19220,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -19377,7 +19377,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -19497,7 +19497,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -19661,7 +19661,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -19819,7 +19819,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -19921,7 +19921,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -20076,7 +20076,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -20207,7 +20207,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -20322,7 +20322,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -20593,7 +20593,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -20792,7 +20792,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -20911,7 +20911,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -20993,7 +20993,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -21175,7 +21175,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -21277,7 +21277,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -21453,7 +21453,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -21659,7 +21659,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Port": "System.Int32",
"ProvisioningState": "System.String",
@@ -21735,7 +21735,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -21899,7 +21899,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -22057,7 +22057,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Port": "System.Int32",
"ProvisioningState": "System.String",
@@ -22289,7 +22289,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -22409,7 +22409,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -22573,7 +22573,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -22731,7 +22731,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -22833,7 +22833,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -23009,7 +23009,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -23215,7 +23215,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -23317,7 +23317,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -23454,7 +23454,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -23606,7 +23606,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -23805,7 +23805,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -23980,7 +23980,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -24099,7 +24099,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -24281,7 +24281,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"ProvisioningState": "System.String",
@@ -24358,7 +24358,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -24522,7 +24522,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -24680,7 +24680,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"ProvisioningState": "System.String",
@@ -24775,7 +24775,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -25087,7 +25087,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -25281,7 +25281,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -25401,7 +25401,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -25565,7 +25565,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -25723,7 +25723,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -25825,7 +25825,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -25962,7 +25962,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -26114,7 +26114,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -26313,7 +26313,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -26488,7 +26488,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -26607,7 +26607,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -26789,7 +26789,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableServerVariableAndRequestHeaderResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableServerVariableAndRequestHeaderResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableServerVariableAndRequestHeaderResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AvailableServerVariable": "System.Collections.Generic.IList`1[System.String]",
"AvailableRequestHeader": "System.Collections.Generic.IList`1[System.String]",
@@ -26936,7 +26936,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableSslOptions",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableSslOptions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableSslOptions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PredefinedPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"AvailableCipherSuites": "System.Collections.Generic.List`1[System.String]",
@@ -27097,7 +27097,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableWafRuleSetsResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableWafRuleSetsResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableWafRuleSetsResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Value": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet]",
"ValueText": "System.String"
@@ -27244,7 +27244,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealth",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool]",
"BackendAddressPoolsText": "System.String"
@@ -27678,7 +27678,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -27958,7 +27958,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPredefinedPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPredefinedPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPredefinedPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CipherSuites": "System.Collections.Generic.List`1[System.String]",
"MinProtocolVersion": "System.String",
@@ -28150,7 +28150,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -28252,7 +28252,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -28389,7 +28389,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -28469,7 +28469,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Port": "System.Int32",
"ProvisioningState": "System.String",
@@ -28562,7 +28562,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
"PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
@@ -28625,7 +28625,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Password": "System.Security.SecureString",
"Data": "System.String",
@@ -28763,7 +28763,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError",
"GenericTypeArguments": [],
@@ -28820,7 +28820,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -29053,7 +29053,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError",
"GenericTypeArguments": [],
@@ -29217,7 +29217,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -29450,7 +29450,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError",
"GenericTypeArguments": [],
@@ -29518,7 +29518,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -29586,7 +29586,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Port": "System.Int32",
"ProvisioningState": "System.String",
@@ -29649,7 +29649,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
"PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
@@ -29718,7 +29718,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Password": "System.Security.SecureString",
"Data": "System.String",
@@ -29784,7 +29784,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -30017,7 +30017,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError",
"GenericTypeArguments": [],
@@ -30092,7 +30092,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -30180,7 +30180,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -30344,7 +30344,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -30502,7 +30502,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -30608,7 +30608,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -30688,7 +30688,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Port": "System.Int32",
"ProvisioningState": "System.String",
@@ -30781,7 +30781,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
"PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
@@ -30844,7 +30844,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Password": "System.Security.SecureString",
"Data": "System.String",
@@ -30982,7 +30982,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError",
"GenericTypeArguments": [],
@@ -31165,7 +31165,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError",
"GenericTypeArguments": [],
@@ -31455,7 +31455,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError",
"GenericTypeArguments": [],
@@ -31523,7 +31523,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -31591,7 +31591,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Port": "System.Int32",
"ProvisioningState": "System.String",
@@ -31654,7 +31654,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
"PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
@@ -31723,7 +31723,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Password": "System.Security.SecureString",
"Data": "System.String",
@@ -31915,7 +31915,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError",
"GenericTypeArguments": [],
@@ -31990,7 +31990,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -32078,7 +32078,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -32242,7 +32242,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -32400,7 +32400,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -32502,7 +32502,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -32639,7 +32639,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -32719,7 +32719,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Port": "System.Int32",
"ProvisioningState": "System.String",
@@ -32812,7 +32812,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
"PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
@@ -32875,7 +32875,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Password": "System.Security.SecureString",
"Data": "System.String",
@@ -33013,7 +33013,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError",
"GenericTypeArguments": [],
@@ -33070,7 +33070,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -33303,7 +33303,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError",
"GenericTypeArguments": [],
@@ -33467,7 +33467,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -33700,7 +33700,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError",
"GenericTypeArguments": [],
@@ -33768,7 +33768,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -33836,7 +33836,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Port": "System.Int32",
"ProvisioningState": "System.String",
@@ -33899,7 +33899,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
"PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
@@ -33968,7 +33968,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Password": "System.Security.SecureString",
"Data": "System.String",
@@ -34034,7 +34034,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -34267,7 +34267,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError",
"GenericTypeArguments": [],
@@ -34342,7 +34342,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]",
"Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]",
@@ -34398,7 +34398,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -34538,7 +34538,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -34696,7 +34696,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]",
"Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]",
@@ -34888,7 +34888,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -34990,7 +34990,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -35130,7 +35130,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -35288,7 +35288,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -35390,7 +35390,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -35550,7 +35550,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -35734,7 +35734,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -35892,7 +35892,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Capacity": "System.Nullable`1[System.Int32]",
"Tier": "System.String",
@@ -35946,7 +35946,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]",
"CipherSuites": "System.Collections.Generic.List`1[System.String]",
@@ -36004,7 +36004,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration",
"GenericTypeArguments": [],
@@ -36022,7 +36022,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate",
"GenericTypeArguments": [],
@@ -36040,7 +36040,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate",
"GenericTypeArguments": [],
@@ -36058,7 +36058,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate",
"GenericTypeArguments": [],
@@ -36076,7 +36076,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration",
"GenericTypeArguments": [],
@@ -36094,7 +36094,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort",
"GenericTypeArguments": [],
@@ -36112,7 +36112,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe",
"GenericTypeArguments": [],
@@ -36130,7 +36130,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
"GenericTypeArguments": [],
@@ -36148,7 +36148,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
"GenericTypeArguments": [],
@@ -36166,7 +36166,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
"GenericTypeArguments": [],
@@ -36184,7 +36184,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap",
"GenericTypeArguments": [],
@@ -36202,7 +36202,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule",
"GenericTypeArguments": [],
@@ -36220,7 +36220,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
"GenericTypeArguments": [],
@@ -36238,7 +36238,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration",
"GenericTypeArguments": [],
@@ -36256,7 +36256,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enabled": "System.Boolean",
"DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]",
@@ -36336,7 +36336,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
"PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
@@ -36399,7 +36399,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MinCapacity": "System.Int32",
"MaxCapacity": "System.Nullable`1[System.Int32]"
@@ -36544,7 +36544,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]",
"Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]",
@@ -36635,7 +36635,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError",
"GenericTypeArguments": [],
@@ -36766,7 +36766,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Capacity": "System.Nullable`1[System.Int32]",
"Tier": "System.String",
@@ -36826,7 +36826,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]",
"CipherSuites": "System.Collections.Generic.List`1[System.String]",
@@ -36890,7 +36890,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration",
"GenericTypeArguments": [],
@@ -36914,7 +36914,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate",
"GenericTypeArguments": [],
@@ -36938,7 +36938,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate",
"GenericTypeArguments": [],
@@ -36962,7 +36962,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate",
"GenericTypeArguments": [],
@@ -36986,7 +36986,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration",
"GenericTypeArguments": [],
@@ -37010,7 +37010,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort",
"GenericTypeArguments": [],
@@ -37034,7 +37034,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe",
"GenericTypeArguments": [],
@@ -37058,7 +37058,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
"GenericTypeArguments": [],
@@ -37082,7 +37082,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
"GenericTypeArguments": [],
@@ -37106,7 +37106,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
"GenericTypeArguments": [],
@@ -37130,7 +37130,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap",
"GenericTypeArguments": [],
@@ -37154,7 +37154,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule",
"GenericTypeArguments": [],
@@ -37178,7 +37178,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
"GenericTypeArguments": [],
@@ -37202,7 +37202,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration",
"GenericTypeArguments": [],
@@ -37226,7 +37226,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enabled": "System.Boolean",
"DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]",
@@ -37294,7 +37294,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MinCapacity": "System.Int32",
"MaxCapacity": "System.Nullable`1[System.Int32]"
@@ -37497,7 +37497,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError",
"GenericTypeArguments": [],
@@ -37663,7 +37663,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Capacity": "System.Nullable`1[System.Int32]",
"Tier": "System.String",
@@ -37723,7 +37723,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]",
"CipherSuites": "System.Collections.Generic.List`1[System.String]",
@@ -37787,7 +37787,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration",
"GenericTypeArguments": [],
@@ -37811,7 +37811,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate",
"GenericTypeArguments": [],
@@ -37835,7 +37835,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate",
"GenericTypeArguments": [],
@@ -37859,7 +37859,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate",
"GenericTypeArguments": [],
@@ -37883,7 +37883,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration",
"GenericTypeArguments": [],
@@ -37907,7 +37907,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort",
"GenericTypeArguments": [],
@@ -37931,7 +37931,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe",
"GenericTypeArguments": [],
@@ -37955,7 +37955,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
"GenericTypeArguments": [],
@@ -37979,7 +37979,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
"GenericTypeArguments": [],
@@ -38003,7 +38003,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
"GenericTypeArguments": [],
@@ -38027,7 +38027,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap",
"GenericTypeArguments": [],
@@ -38051,7 +38051,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule",
"GenericTypeArguments": [],
@@ -38075,7 +38075,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
"GenericTypeArguments": [],
@@ -38099,7 +38099,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration",
"GenericTypeArguments": [],
@@ -38123,7 +38123,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enabled": "System.Boolean",
"DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]",
@@ -38191,7 +38191,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MinCapacity": "System.Int32",
"MaxCapacity": "System.Nullable`1[System.Int32]"
@@ -38394,7 +38394,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError",
"GenericTypeArguments": [],
@@ -38462,7 +38462,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
"PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
@@ -38605,7 +38605,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Capacity": "System.Nullable`1[System.Int32]",
"Tier": "System.String",
@@ -38665,7 +38665,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]",
"CipherSuites": "System.Collections.Generic.List`1[System.String]",
@@ -38729,7 +38729,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration",
"GenericTypeArguments": [],
@@ -38753,7 +38753,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate",
"GenericTypeArguments": [],
@@ -38777,7 +38777,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate",
"GenericTypeArguments": [],
@@ -38801,7 +38801,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate",
"GenericTypeArguments": [],
@@ -38825,7 +38825,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration",
"GenericTypeArguments": [],
@@ -38849,7 +38849,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort",
"GenericTypeArguments": [],
@@ -38873,7 +38873,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe",
"GenericTypeArguments": [],
@@ -38897,7 +38897,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
"GenericTypeArguments": [],
@@ -38921,7 +38921,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
"GenericTypeArguments": [],
@@ -38945,7 +38945,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
"GenericTypeArguments": [],
@@ -38969,7 +38969,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap",
"GenericTypeArguments": [],
@@ -38993,7 +38993,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule",
"GenericTypeArguments": [],
@@ -39017,7 +39017,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
"GenericTypeArguments": [],
@@ -39041,7 +39041,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration",
"GenericTypeArguments": [],
@@ -39065,7 +39065,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enabled": "System.Boolean",
"DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]",
@@ -39133,7 +39133,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MinCapacity": "System.Int32",
"MaxCapacity": "System.Nullable`1[System.Int32]"
@@ -39336,7 +39336,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError",
"GenericTypeArguments": [],
@@ -39504,7 +39504,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Capacity": "System.Nullable`1[System.Int32]",
"Tier": "System.String",
@@ -39564,7 +39564,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]",
"CipherSuites": "System.Collections.Generic.List`1[System.String]",
@@ -39628,7 +39628,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration",
"GenericTypeArguments": [],
@@ -39652,7 +39652,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate",
"GenericTypeArguments": [],
@@ -39676,7 +39676,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate",
"GenericTypeArguments": [],
@@ -39700,7 +39700,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate",
"GenericTypeArguments": [],
@@ -39724,7 +39724,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration",
"GenericTypeArguments": [],
@@ -39748,7 +39748,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort",
"GenericTypeArguments": [],
@@ -39772,7 +39772,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe",
"GenericTypeArguments": [],
@@ -39796,7 +39796,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
"GenericTypeArguments": [],
@@ -39820,7 +39820,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
"GenericTypeArguments": [],
@@ -39844,7 +39844,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
"GenericTypeArguments": [],
@@ -39868,7 +39868,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap",
"GenericTypeArguments": [],
@@ -39892,7 +39892,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule",
"GenericTypeArguments": [],
@@ -39916,7 +39916,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
"GenericTypeArguments": [],
@@ -39940,7 +39940,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration",
"GenericTypeArguments": [],
@@ -39964,7 +39964,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enabled": "System.Boolean",
"DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]",
@@ -40032,7 +40032,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MinCapacity": "System.Int32",
"MaxCapacity": "System.Nullable`1[System.Int32]"
@@ -40235,7 +40235,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError",
"GenericTypeArguments": [],
@@ -40303,7 +40303,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]",
"Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]",
@@ -40438,7 +40438,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Capacity": "System.Nullable`1[System.Int32]",
"Tier": "System.String",
@@ -40498,7 +40498,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]",
"CipherSuites": "System.Collections.Generic.List`1[System.String]",
@@ -40562,7 +40562,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration",
"GenericTypeArguments": [],
@@ -40586,7 +40586,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate",
"GenericTypeArguments": [],
@@ -40610,7 +40610,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate",
"GenericTypeArguments": [],
@@ -40634,7 +40634,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate",
"GenericTypeArguments": [],
@@ -40658,7 +40658,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration",
"GenericTypeArguments": [],
@@ -40682,7 +40682,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort",
"GenericTypeArguments": [],
@@ -40706,7 +40706,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe",
"GenericTypeArguments": [],
@@ -40730,7 +40730,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
"GenericTypeArguments": [],
@@ -40754,7 +40754,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
"GenericTypeArguments": [],
@@ -40778,7 +40778,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
"GenericTypeArguments": [],
@@ -40802,7 +40802,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap",
"GenericTypeArguments": [],
@@ -40826,7 +40826,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule",
"GenericTypeArguments": [],
@@ -40850,7 +40850,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
"GenericTypeArguments": [],
@@ -40874,7 +40874,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration",
"GenericTypeArguments": [],
@@ -40898,7 +40898,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enabled": "System.Boolean",
"DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]",
@@ -40966,7 +40966,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MinCapacity": "System.Int32",
"MaxCapacity": "System.Nullable`1[System.Int32]"
@@ -41169,7 +41169,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError",
"GenericTypeArguments": [],
@@ -41244,7 +41244,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"BackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -41366,7 +41366,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -41454,7 +41454,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -41558,7 +41558,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
"ProvisioningState": "System.String",
@@ -41639,7 +41639,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -41724,7 +41724,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
"PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
@@ -42130,7 +42130,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -42206,7 +42206,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -42298,7 +42298,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
"ProvisioningState": "System.String",
@@ -42367,7 +42367,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -42440,7 +42440,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
"PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
@@ -42608,7 +42608,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StatusCodes": "System.Collections.Generic.List`1[System.String]",
"Body": "System.String",
@@ -42837,7 +42837,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -42939,7 +42939,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -43223,7 +43223,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StatusCodes": "System.Collections.Generic.List`1[System.String]",
"Body": "System.String",
@@ -43316,7 +43316,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -43666,7 +43666,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StatusCodes": "System.Collections.Generic.List`1[System.String]",
"Body": "System.String",
@@ -43777,7 +43777,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch",
"PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]",
@@ -43863,7 +43863,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -44027,7 +44027,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -44185,7 +44185,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch",
"PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]",
@@ -44436,7 +44436,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StatusCodes": "System.Collections.Generic.List`1[System.String]",
"Body": "System.String",
@@ -44772,7 +44772,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StatusCodes": "System.Collections.Generic.List`1[System.String]",
"Body": "System.String",
@@ -44883,7 +44883,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -45003,7 +45003,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -45167,7 +45167,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -45325,7 +45325,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -45427,7 +45427,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -45711,7 +45711,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StatusCodes": "System.Collections.Generic.List`1[System.String]",
"Body": "System.String",
@@ -45804,7 +45804,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -46154,7 +46154,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StatusCodes": "System.Collections.Generic.List`1[System.String]",
"Body": "System.String",
@@ -46265,7 +46265,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -46367,7 +46367,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -46527,7 +46527,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -46693,7 +46693,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -46973,7 +46973,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -47229,7 +47229,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -47304,7 +47304,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -47584,7 +47584,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -47847,7 +47847,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -47933,7 +47933,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -48097,7 +48097,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -48255,7 +48255,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -48382,7 +48382,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -48870,7 +48870,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -49274,7 +49274,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -49394,7 +49394,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -49558,7 +49558,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -49716,7 +49716,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -49818,7 +49818,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -49978,7 +49978,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -50144,7 +50144,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -50424,7 +50424,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -50680,7 +50680,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -50755,7 +50755,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -51035,7 +51035,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -51579,7 +51579,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -51681,7 +51681,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -51839,7 +51839,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -51943,7 +51943,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -52030,7 +52030,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -52118,7 +52118,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -52201,7 +52201,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
"ProvisioningState": "System.String",
@@ -52282,7 +52282,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -52388,7 +52388,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -52734,7 +52734,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -52936,7 +52936,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -53028,7 +53028,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -53103,7 +53103,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -53179,7 +53179,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -53250,7 +53250,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
"ProvisioningState": "System.String",
@@ -53319,7 +53319,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -53392,7 +53392,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -53601,7 +53601,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"BackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -53689,7 +53689,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -53853,7 +53853,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -54011,7 +54011,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"BackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -54138,7 +54138,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -54242,7 +54242,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -54329,7 +54329,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -54417,7 +54417,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -54500,7 +54500,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
"ProvisioningState": "System.String",
@@ -54581,7 +54581,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -55021,7 +55021,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -55113,7 +55113,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -55188,7 +55188,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -55264,7 +55264,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -55335,7 +55335,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
"ProvisioningState": "System.String",
@@ -55404,7 +55404,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -55579,7 +55579,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"BackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -55667,7 +55667,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -55831,7 +55831,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -55989,7 +55989,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -56091,7 +56091,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -56249,7 +56249,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -56353,7 +56353,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -56440,7 +56440,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -56528,7 +56528,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -56611,7 +56611,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
"ProvisioningState": "System.String",
@@ -56692,7 +56692,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -56798,7 +56798,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -57144,7 +57144,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -57346,7 +57346,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -57438,7 +57438,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -57513,7 +57513,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -57589,7 +57589,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -57660,7 +57660,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
"ProvisioningState": "System.String",
@@ -57729,7 +57729,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -57802,7 +57802,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -58011,7 +58011,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"UrlConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration",
"RequestHeaderConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]",
@@ -58069,7 +58069,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -58089,7 +58089,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -58109,7 +58109,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Reroute": "System.Boolean",
"ModifiedQueryString": "System.String",
@@ -58202,7 +58202,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -58228,7 +58228,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -58254,7 +58254,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Reroute": "System.Boolean",
"ModifiedQueryString": "System.String",
@@ -58365,7 +58365,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IgnoreCase": "System.Nullable`1[System.Boolean]",
"Negate": "System.Nullable`1[System.Boolean]",
@@ -58679,7 +58679,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"HeaderName": "System.String",
"HeaderValue": "System.String"
@@ -58907,7 +58907,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -59009,7 +59009,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -59128,7 +59128,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -59187,7 +59187,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -59318,7 +59318,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -59395,7 +59395,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
"ProvisioningState": "System.String",
@@ -59477,7 +59477,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -59641,7 +59641,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -59799,7 +59799,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
"ProvisioningState": "System.String",
@@ -59881,7 +59881,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -59964,7 +59964,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -60041,7 +60041,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -60161,7 +60161,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -60325,7 +60325,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -60483,7 +60483,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -60585,7 +60585,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -60704,7 +60704,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -60763,7 +60763,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -60894,7 +60894,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -60971,7 +60971,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Reroute": "System.Boolean",
"ModifiedQueryString": "System.String",
@@ -61242,7 +61242,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ActionSet": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet",
"Conditions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition]",
@@ -61319,7 +61319,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"UrlConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration",
"RequestHeaderConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]",
@@ -61394,7 +61394,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition",
"GenericTypeArguments": [],
@@ -61475,7 +61475,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"UrlConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration",
"RequestHeaderConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]",
@@ -61562,7 +61562,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition",
"GenericTypeArguments": [],
@@ -61637,7 +61637,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -61739,7 +61739,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -61897,7 +61897,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -62079,7 +62079,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Capacity": "System.Nullable`1[System.Int32]",
"Tier": "System.String",
@@ -62134,7 +62134,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -62274,7 +62274,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -62432,7 +62432,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Capacity": "System.Nullable`1[System.Int32]",
"Tier": "System.String",
@@ -62733,7 +62733,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -62835,7 +62835,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -63044,7 +63044,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -63289,7 +63289,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -63391,7 +63391,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -63603,7 +63603,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -63857,7 +63857,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Password": "System.Security.SecureString",
"Data": "System.String",
@@ -63936,7 +63936,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -64100,7 +64100,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -64258,7 +64258,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Password": "System.Security.SecureString",
"Data": "System.String",
@@ -64577,7 +64577,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -64697,7 +64697,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -64861,7 +64861,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -65019,7 +65019,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -65121,7 +65121,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -65333,7 +65333,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -65587,7 +65587,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]",
"CipherSuites": "System.Collections.Generic.List`1[System.String]",
@@ -65646,7 +65646,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -65786,7 +65786,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -65944,7 +65944,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]",
"CipherSuites": "System.Collections.Generic.List`1[System.String]",
@@ -66325,7 +66325,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -66427,7 +66427,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -66585,7 +66585,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -66767,7 +66767,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -66869,7 +66869,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -67110,7 +67110,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -67399,7 +67399,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -67501,7 +67501,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -67641,7 +67641,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -67799,7 +67799,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -67901,7 +67901,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -68059,7 +68059,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -68241,7 +68241,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -68343,7 +68343,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -68519,7 +68519,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -68725,7 +68725,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Data": "System.String",
"ProvisioningState": "System.String",
@@ -68801,7 +68801,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -68965,7 +68965,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -69123,7 +69123,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Data": "System.String",
"ProvisioningState": "System.String",
@@ -69355,7 +69355,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -69475,7 +69475,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -69639,7 +69639,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -69797,7 +69797,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -69899,7 +69899,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -70075,7 +70075,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -70281,7 +70281,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -70383,7 +70383,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -70502,7 +70502,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule",
"GenericTypeArguments": [],
@@ -70538,7 +70538,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -70626,7 +70626,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -70712,7 +70712,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
"ProvisioningState": "System.String",
@@ -70811,7 +70811,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -70917,7 +70917,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -71048,7 +71048,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule",
"GenericTypeArguments": [],
@@ -71188,7 +71188,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -71319,7 +71319,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule",
"GenericTypeArguments": [],
@@ -71387,7 +71387,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -71463,7 +71463,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -71555,7 +71555,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
"ProvisioningState": "System.String",
@@ -71624,7 +71624,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -71755,7 +71755,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule",
"GenericTypeArguments": [],
@@ -71823,7 +71823,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
"ProvisioningState": "System.String",
@@ -71892,7 +71892,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -71965,7 +71965,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -72096,7 +72096,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule",
"GenericTypeArguments": [],
@@ -72212,7 +72212,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -72343,7 +72343,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule",
"GenericTypeArguments": [],
@@ -72418,7 +72418,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -72502,7 +72502,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -72666,7 +72666,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -72824,7 +72824,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -72908,7 +72908,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule",
"GenericTypeArguments": [],
@@ -72944,7 +72944,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -73032,7 +73032,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -73118,7 +73118,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
"ProvisioningState": "System.String",
@@ -73217,7 +73217,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -73347,7 +73347,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule",
"GenericTypeArguments": [],
@@ -73511,7 +73511,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule",
"GenericTypeArguments": [],
@@ -73579,7 +73579,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -73655,7 +73655,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -73747,7 +73747,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
"ProvisioningState": "System.String",
@@ -73840,7 +73840,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule",
"GenericTypeArguments": [],
@@ -73908,7 +73908,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
"ProvisioningState": "System.String",
@@ -73977,7 +73977,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -74074,7 +74074,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule",
"GenericTypeArguments": [],
@@ -74214,7 +74214,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule",
"GenericTypeArguments": [],
@@ -74289,7 +74289,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -74409,7 +74409,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -74573,7 +74573,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -74731,7 +74731,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -74833,7 +74833,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -74952,7 +74952,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule",
"GenericTypeArguments": [],
@@ -74988,7 +74988,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -75076,7 +75076,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -75162,7 +75162,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
"ProvisioningState": "System.String",
@@ -75261,7 +75261,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -75367,7 +75367,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -75498,7 +75498,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule",
"GenericTypeArguments": [],
@@ -75638,7 +75638,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -75769,7 +75769,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule",
"GenericTypeArguments": [],
@@ -75837,7 +75837,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -75913,7 +75913,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -76005,7 +76005,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
"ProvisioningState": "System.String",
@@ -76074,7 +76074,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -76205,7 +76205,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule",
"GenericTypeArguments": [],
@@ -76273,7 +76273,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
"ProvisioningState": "System.String",
@@ -76342,7 +76342,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -76415,7 +76415,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -76546,7 +76546,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule",
"GenericTypeArguments": [],
@@ -76662,7 +76662,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
@@ -76793,7 +76793,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule",
"GenericTypeArguments": [],
@@ -76868,7 +76868,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAvailablePrivateEndpointType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailablePrivateEndpointType, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailablePrivateEndpointType, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Id": "System.String",
@@ -77099,7 +77099,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"FqdnTagName": "System.String",
@@ -77157,7 +77157,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag]",
- "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -77268,7 +77268,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Protocols": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol]",
"SourceAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -77918,7 +77918,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RuleCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection]",
"Name": "System.String",
@@ -78021,7 +78021,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule",
"GenericTypeArguments": [],
@@ -78147,7 +78147,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule",
"GenericTypeArguments": [],
@@ -78249,7 +78249,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource",
"RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]",
@@ -78622,7 +78622,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Action": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule]",
@@ -78748,7 +78748,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNetworkRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"protocols": "System.Collections.Generic.List`1[System.String]",
"SourceAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -78963,7 +78963,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNetworkRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"protocols": "System.Collections.Generic.List`1[System.String]",
"SourceAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -79166,7 +79166,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Protocols": "System.Collections.Generic.List`1[System.String]",
"SourceAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -79596,7 +79596,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource",
"RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]",
@@ -80228,7 +80228,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource",
"RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]",
@@ -80753,7 +80753,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource",
"RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]",
@@ -80946,7 +80946,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup",
"Name": "System.String"
@@ -81056,7 +81056,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource",
"RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]",
@@ -81321,7 +81321,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource",
"RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]",
@@ -81554,7 +81554,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RuleCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection]",
"Name": "System.String",
@@ -81657,7 +81657,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection",
"GenericTypeArguments": [],
@@ -81693,7 +81693,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource",
"RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]",
@@ -81862,7 +81862,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection",
"GenericTypeArguments": [],
@@ -82026,7 +82026,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection",
"GenericTypeArguments": [],
@@ -82094,7 +82094,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource",
"RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]",
@@ -82212,7 +82212,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection",
"GenericTypeArguments": [],
@@ -82344,7 +82344,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource",
"RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]",
@@ -82426,7 +82426,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup",
"Name": "System.String"
@@ -82806,7 +82806,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource",
"RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]",
@@ -82992,7 +82992,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup",
"Name": "System.String"
@@ -83430,7 +83430,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RuleCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection]",
"Name": "System.String",
@@ -83517,7 +83517,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup",
"Name": "System.String"
@@ -83570,7 +83570,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource",
"RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]",
@@ -83706,7 +83706,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection",
"GenericTypeArguments": [],
@@ -83861,7 +83861,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection",
"GenericTypeArguments": [],
@@ -83955,7 +83955,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource",
"RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]",
@@ -84049,7 +84049,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection",
"GenericTypeArguments": [],
@@ -84117,7 +84117,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup",
"Name": "System.String"
@@ -84200,7 +84200,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection",
"GenericTypeArguments": [],
@@ -84316,7 +84316,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection",
"GenericTypeArguments": [],
@@ -84408,7 +84408,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection",
"GenericTypeArguments": [],
@@ -84483,7 +84483,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource",
"RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]",
@@ -84586,7 +84586,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource",
"RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]",
@@ -85045,7 +85045,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource",
"RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]",
@@ -85626,7 +85626,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Action": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule]",
@@ -85752,7 +85752,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule",
"GenericTypeArguments": [],
@@ -85878,7 +85878,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule",
"GenericTypeArguments": [],
@@ -85980,7 +85980,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Protocols": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol]",
"SourceAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -86698,7 +86698,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku",
@@ -86766,20 +86766,6 @@
],
"ReturnType": "System.Void"
},
- {
- "Name": "SetManagementIpConfiguration",
- "Parameters": [
- {
- "Name": "virtualNetwork",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "publicIpAddress",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Void"
- },
{
"Name": "RemovePublicIpAddress",
"Parameters": [
@@ -86982,7 +86968,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewall]",
- "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -87181,7 +87167,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Action": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRCAction",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule]",
@@ -87307,7 +87293,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule",
"GenericTypeArguments": [],
@@ -87412,7 +87398,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule",
"GenericTypeArguments": [],
@@ -87487,7 +87473,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Protocols": "System.Collections.Generic.List`1[System.String]",
"SourceAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -88082,7 +88068,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Action": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule]",
@@ -88208,7 +88194,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule",
"GenericTypeArguments": [],
@@ -88334,7 +88320,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule",
"GenericTypeArguments": [],
@@ -88436,7 +88422,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Protocols": "System.Collections.Generic.List`1[System.String]",
"SourceAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -88992,7 +88978,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku",
@@ -89060,20 +89046,6 @@
],
"ReturnType": "System.Void"
},
- {
- "Name": "SetManagementIpConfiguration",
- "Parameters": [
- {
- "Name": "virtualNetwork",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "publicIpAddress",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Void"
- },
{
"Name": "RemovePublicIpAddress",
"Parameters": [
@@ -89372,7 +89344,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -89447,7 +89419,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"GenericTypeArguments": [],
@@ -89465,7 +89437,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -89541,7 +89513,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection",
"GenericTypeArguments": [],
@@ -89559,7 +89531,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection",
"GenericTypeArguments": [],
@@ -89577,7 +89549,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection",
"GenericTypeArguments": [],
@@ -89617,7 +89589,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FQDNs": "System.String[]",
"IpAddresses": "System.String[]"
@@ -89930,7 +89902,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection",
"GenericTypeArguments": [],
@@ -89954,7 +89926,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection",
"GenericTypeArguments": [],
@@ -89978,7 +89950,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection",
"GenericTypeArguments": [],
@@ -90030,7 +90002,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FQDNs": "System.String[]",
"IpAddresses": "System.String[]"
@@ -90450,7 +90422,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection",
"GenericTypeArguments": [],
@@ -90474,7 +90446,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection",
"GenericTypeArguments": [],
@@ -90498,7 +90470,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection",
"GenericTypeArguments": [],
@@ -90550,7 +90522,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FQDNs": "System.String[]",
"IpAddresses": "System.String[]"
@@ -90848,7 +90820,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -90929,7 +90901,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"GenericTypeArguments": [],
@@ -90953,7 +90925,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -91109,7 +91081,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection",
"GenericTypeArguments": [],
@@ -91133,7 +91105,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection",
"GenericTypeArguments": [],
@@ -91157,7 +91129,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection",
"GenericTypeArguments": [],
@@ -91209,7 +91181,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FQDNs": "System.String[]",
"IpAddresses": "System.String[]"
@@ -91841,7 +91813,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku",
@@ -91909,20 +91881,6 @@
],
"ReturnType": "System.Void"
},
- {
- "Name": "SetManagementIpConfiguration",
- "Parameters": [
- {
- "Name": "virtualNetwork",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "publicIpAddress",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Void"
- },
{
"Name": "RemovePublicIpAddress",
"Parameters": [
@@ -92129,7 +92087,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku",
@@ -92197,20 +92155,6 @@
],
"ReturnType": "System.Void"
},
- {
- "Name": "SetManagementIpConfiguration",
- "Parameters": [
- {
- "Name": "virtualNetwork",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "publicIpAddress",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Void"
- },
{
"Name": "RemovePublicIpAddress",
"Parameters": [
@@ -92473,7 +92417,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku",
@@ -92541,20 +92485,6 @@
],
"ReturnType": "System.Void"
},
- {
- "Name": "SetManagementIpConfiguration",
- "Parameters": [
- {
- "Name": "virtualNetwork",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "publicIpAddress",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Void"
- },
{
"Name": "RemovePublicIpAddress",
"Parameters": [
@@ -92841,7 +92771,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FQDNs": "System.String[]",
"IpAddresses": "System.String[]"
@@ -93071,7 +93001,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId",
"EnableInternetSecurity": "System.Boolean",
@@ -93170,7 +93100,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId",
@@ -93648,7 +93578,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId",
@@ -94425,7 +94355,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId",
"EnableInternetSecurity": "System.Boolean",
@@ -94847,7 +94777,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId",
"EnableInternetSecurity": "System.Boolean",
@@ -95104,7 +95034,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId",
@@ -95490,7 +95420,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId",
@@ -95605,7 +95535,7 @@
"Constructors": []
},
"ValidateSet": [],
- "ValidateRangeMin": 2,
+ "ValidateRangeMin": 1,
"ValidateRangeMax": 100,
"ValidateNotNullOrEmpty": false
},
@@ -95623,7 +95553,7 @@
"Constructors": []
},
"ValidateSet": [],
- "ValidateRangeMin": 2,
+ "ValidateRangeMin": 1,
"ValidateRangeMax": 100,
"ValidateNotNullOrEmpty": false
},
@@ -95633,7 +95563,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -95873,7 +95803,7 @@
"Constructors": []
},
"ValidateSet": [],
- "ValidateRangeMin": 2,
+ "ValidateRangeMin": 1,
"ValidateRangeMax": 100,
"ValidateNotNullOrEmpty": false
},
@@ -95897,7 +95827,7 @@
"Constructors": []
},
"ValidateSet": [],
- "ValidateRangeMin": 2,
+ "ValidateRangeMin": 1,
"ValidateRangeMax": 100,
"ValidateNotNullOrEmpty": false
},
@@ -96005,7 +95935,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -96140,7 +96070,7 @@
"Constructors": []
},
"ValidateSet": [],
- "ValidateRangeMin": 2,
+ "ValidateRangeMin": 1,
"ValidateRangeMax": 100,
"ValidateNotNullOrEmpty": false
},
@@ -96164,7 +96094,7 @@
"Constructors": []
},
"ValidateSet": [],
- "ValidateRangeMin": 2,
+ "ValidateRangeMin": 1,
"ValidateRangeMax": 100,
"ValidateNotNullOrEmpty": false
},
@@ -96355,7 +96285,7 @@
"Constructors": []
},
"ValidateSet": [],
- "ValidateRangeMin": 2,
+ "ValidateRangeMin": 1,
"ValidateRangeMax": 100,
"ValidateNotNullOrEmpty": false
},
@@ -96379,7 +96309,7 @@
"Constructors": []
},
"ValidateSet": [],
- "ValidateRangeMin": 2,
+ "ValidateRangeMin": 1,
"ValidateRangeMax": 100,
"ValidateNotNullOrEmpty": false
},
@@ -96570,7 +96500,7 @@
"Constructors": []
},
"ValidateSet": [],
- "ValidateRangeMin": 2,
+ "ValidateRangeMin": 1,
"ValidateRangeMax": 100,
"ValidateNotNullOrEmpty": false
},
@@ -96594,7 +96524,7 @@
"Constructors": []
},
"ValidateSet": [],
- "ValidateRangeMin": 2,
+ "ValidateRangeMin": 1,
"ValidateRangeMax": 100,
"ValidateNotNullOrEmpty": false
},
@@ -96769,7 +96699,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId",
@@ -97076,7 +97006,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId",
@@ -97458,7 +97388,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId",
@@ -97568,7 +97498,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId",
@@ -97958,7 +97888,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId",
@@ -98482,7 +98412,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"EnableInternetSecurity": "System.Boolean",
@@ -98582,7 +98512,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -98858,7 +98788,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -99181,7 +99111,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"EnableInternetSecurity": "System.Boolean",
@@ -99281,7 +99211,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -99393,7 +99323,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -99806,7 +99736,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -100009,7 +99939,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -100085,7 +100015,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -100288,7 +100218,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -100534,7 +100464,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -101111,7 +101041,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"EnableInternetSecurity": "System.Boolean",
@@ -101477,7 +101407,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"EnableInternetSecurity": "System.Boolean",
@@ -101921,7 +101851,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"EnableInternetSecurity": "System.Boolean",
@@ -102041,7 +101971,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"EnableInternetSecurity": "System.Boolean",
@@ -102369,7 +102299,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"EnableInternetSecurity": "System.Boolean",
@@ -102734,20 +102664,20 @@
"AliasList": []
},
{
- "VerbName": "Get",
- "NounName": "AzP2sVpnGateway",
- "Name": "Get-AzP2sVpnGateway",
- "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmP2SVpnGatewayCommand",
- "SupportsShouldProcess": false,
+ "VerbName": "Disconnect",
+ "NounName": "AzP2SVpnGatewayVpnConnection",
+ "Name": "Disconnect-AzP2SVpnGatewayVpnConnection",
+ "ClassName": "Microsoft.Azure.Commands.Network.DisconnectAzureP2SVpnGatewayVpnConnectionCommand",
+ "SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "ListBySubscriptionId",
+ "DefaultParameterSetName": "ByP2SVpnGatewayName",
"OutputTypes": [
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -102851,201 +102781,32 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "ResourceId",
+ "AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
- "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
- },
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- }
- ],
- "ParameterSets": [
- {
- "Name": "ListByResourceGroupName",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "ResourceGroupName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "ResourceName",
- "P2SVpnGatewayName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
- "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "__AllParameterSets",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
- "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- }
- ]
+ "ValidateNotNullOrEmpty": true
},
{
- "Name": "ListBySubscriptionId",
- "Parameters": []
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "Get",
- "NounName": "AzP2sVpnGatewayConnectionHealth",
- "Name": "Get-AzP2sVpnGatewayConnectionHealth",
- "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmP2SVpnGatewayConnectionHealthCommand",
- "SupportsShouldProcess": false,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "ByP2SVpnGatewayName",
- "OutputTypes": [
- {
+ "Name": "InputObject",
+ "AliasList": [
+ "P2SVpnGateway"
+ ],
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -103103,41 +102864,20 @@
}
]
},
- "ParameterSets": [
- "__AllParameterSets"
- ]
- }
- ],
- "Parameters": [
- {
- "Name": "Name",
- "AliasList": [
- "ResourceName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
{
- "Name": "ResourceGroupName",
+ "Name": "VpnConnectionId",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
- "ElementType": null,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -103148,83 +102888,30 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "InputObject",
- "AliasList": [
- "P2SVpnGateway"
- ],
+ "Name": "AsJob",
+ "AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.Network.Models",
- "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
- "Properties": {
- "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
- "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
- "VpnClientConnectionHealth": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth",
- "P2SConnectionConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration]",
- "Tag": "System.Collections.Hashtable",
- "VpnGatewayScaleUnit": "System.Int32",
- "Name": "System.String",
- "TagsTable": "System.String",
- "Type": "System.String",
- "ResourceGuid": "System.String",
- "P2SConnectionConfigurationsText": "System.String",
- "ResourceGroupName": "System.String",
- "Etag": "System.String",
- "VpnClientConnectionHealthText": "System.String",
- "ProvisioningState": "System.String",
- "VpnServerConfigurationLocation": "System.String",
- "Location": "System.String",
- "Id": "System.String"
- },
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
- },
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
{
- "Name": "ResourceId",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -103234,7 +102921,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
{
"Name": "DefaultProfile",
@@ -103274,11 +102961,36 @@
{
"Name": "ByP2SVpnGatewayName",
"Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "Name",
"AliasList": [
- "ResourceName"
+ "ResourceName",
+ "P2SVpnGatewayName"
],
"Type": {
"Namespace": "System",
@@ -103295,14 +103007,130 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "VpnConnectionId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": "System.String",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ResourceGroupName",
+ "Name": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "ByP2SVpnGatewayResourceId",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -103324,6 +103152,78 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
+ {
+ "ParameterMetadata": {
+ "Name": "VpnConnectionId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": "System.String",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -103377,7 +103277,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -103445,6 +103345,78 @@
"ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "VpnConnectionId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": "System.String",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -103487,11 +103459,282 @@
]
},
{
- "Name": "ByP2SVpnGatewayResourceId",
+ "Name": "__AllParameterSets",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceId",
+ "Name": "VpnConnectionId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": "System.String",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Get",
+ "NounName": "AzP2sVpnGateway",
+ "Name": "Get-AzP2sVpnGateway",
+ "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmP2SVpnGatewayCommand",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ListBySubscriptionId",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Network.Models",
+ "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
+ "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
+ "VpnClientConnectionHealth": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth",
+ "P2SConnectionConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration]",
+ "Tag": "System.Collections.Hashtable",
+ "VpnGatewayScaleUnit": "System.Int32",
+ "Name": "System.String",
+ "TagsTable": "System.String",
+ "Type": "System.String",
+ "ResourceGuid": "System.String",
+ "P2SConnectionConfigurationsText": "System.String",
+ "ResourceGroupName": "System.String",
+ "Etag": "System.String",
+ "VpnClientConnectionHealthText": "System.String",
+ "ProvisioningState": "System.String",
+ "VpnServerConfigurationLocation": "System.String",
+ "Location": "System.String",
+ "Id": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Name",
+ "AliasList": [
+ "ResourceName",
+ "P2SVpnGatewayName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "ListByResourceGroupName",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -103508,10 +103751,37 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "ResourceName",
+ "P2SVpnGatewayName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
@@ -103597,15 +103867,19 @@
"ValueFromPipelineByPropertyName": false
}
]
+ },
+ {
+ "Name": "ListBySubscriptionId",
+ "Parameters": []
}
],
"AliasList": []
},
{
"VerbName": "Get",
- "NounName": "AzP2sVpnGatewayDetailedConnectionHealth",
- "Name": "Get-AzP2sVpnGatewayDetailedConnectionHealth",
- "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmP2SVpnGatewayDetailedConnectionHealthCommand",
+ "NounName": "AzP2sVpnGatewayConnectionHealth",
+ "Name": "Get-AzP2sVpnGatewayConnectionHealth",
+ "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmP2SVpnGatewayConnectionHealthCommand",
"SupportsShouldProcess": false,
"ConfirmImpact": 2,
"SupportsPaging": false,
@@ -103614,10 +103888,27 @@
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
- "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnConnectionHealth",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "SasUrl": "System.String"
+ "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
+ "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
+ "VpnClientConnectionHealth": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth",
+ "P2SConnectionConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration]",
+ "Tag": "System.Collections.Hashtable",
+ "VpnGatewayScaleUnit": "System.Int32",
+ "Name": "System.String",
+ "TagsTable": "System.String",
+ "Type": "System.String",
+ "ResourceGuid": "System.String",
+ "P2SConnectionConfigurationsText": "System.String",
+ "ResourceGroupName": "System.String",
+ "Etag": "System.String",
+ "VpnClientConnectionHealthText": "System.String",
+ "ProvisioningState": "System.String",
+ "VpnServerConfigurationLocation": "System.String",
+ "Location": "System.String",
+ "Id": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -103708,7 +103999,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -103789,42 +104080,6 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- {
- "Name": "OutputBlobSasUrl",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "VpnUserNamesFilter",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": "System.String",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
{
"Name": "DefaultProfile",
"AliasList": [
@@ -103887,7 +104142,7 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
@@ -103911,56 +104166,8 @@
"Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "OutputBlobSasUrl",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
- {
- "ParameterMetadata": {
- "Name": "VpnUserNamesFilter",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": "System.String",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -104014,7 +104221,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -104082,54 +104289,6 @@
"ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
- {
- "ParameterMetadata": {
- "Name": "OutputBlobSasUrl",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "VpnUserNamesFilter",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": "System.String",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -104198,54 +104357,6 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
- {
- "ParameterMetadata": {
- "Name": "OutputBlobSasUrl",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "VpnUserNamesFilter",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": "System.String",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -104290,54 +104401,6 @@
{
"Name": "__AllParameterSets",
"Parameters": [
- {
- "ParameterMetadata": {
- "Name": "OutputBlobSasUrl",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "VpnUserNamesFilter",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String[]",
- "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": "System.String",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -104384,9 +104447,9 @@
},
{
"VerbName": "Get",
- "NounName": "AzP2sVpnGatewayVpnProfile",
- "Name": "Get-AzP2sVpnGatewayVpnProfile",
- "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmP2SVpnGatewayVpnProfileCommand",
+ "NounName": "AzP2sVpnGatewayDetailedConnectionHealth",
+ "Name": "Get-AzP2sVpnGatewayDetailedConnectionHealth",
+ "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmP2SVpnGatewayDetailedConnectionHealthCommand",
"SupportsShouldProcess": false,
"ConfirmImpact": 2,
"SupportsPaging": false,
@@ -104395,10 +104458,10 @@
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
- "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnProfileResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfileResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnConnectionHealth",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "ProfileUrl": "System.String"
+ "SasUrl": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -104489,7 +104552,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -104571,7 +104634,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "AuthenticationMethod",
+ "Name": "OutputBlobSasUrl",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -104583,10 +104646,25 @@
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "EAPTLS",
- "EAPMSCHAPv2"
- ],
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "VpnUserNamesFilter",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": "System.String",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
@@ -104681,7 +104759,7 @@
},
{
"ParameterMetadata": {
- "Name": "AuthenticationMethod",
+ "Name": "OutputBlobSasUrl",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -104693,35 +104771,801 @@
"Methods": [],
"Constructors": []
},
- "ValidateSet": [
- "EAPTLS",
- "EAPMSCHAPv2"
- ],
+ "ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "VpnUserNamesFilter",
+ "AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": "System.String",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "ByP2SVpnGatewayObject",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "AliasList": [
+ "P2SVpnGateway"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Network.Models",
+ "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
+ "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
+ "VpnClientConnectionHealth": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth",
+ "P2SConnectionConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration]",
+ "Tag": "System.Collections.Hashtable",
+ "VpnGatewayScaleUnit": "System.Int32",
+ "Name": "System.String",
+ "TagsTable": "System.String",
+ "Type": "System.String",
+ "ResourceGuid": "System.String",
+ "P2SConnectionConfigurationsText": "System.String",
+ "ResourceGroupName": "System.String",
+ "Etag": "System.String",
+ "VpnClientConnectionHealthText": "System.String",
+ "ProvisioningState": "System.String",
+ "VpnServerConfigurationLocation": "System.String",
+ "Location": "System.String",
+ "Id": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "OutputBlobSasUrl",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "VpnUserNamesFilter",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": "System.String",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "ByP2SVpnGatewayResourceId",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "OutputBlobSasUrl",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "VpnUserNamesFilter",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": "System.String",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "OutputBlobSasUrl",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "VpnUserNamesFilter",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": "System.String",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Get",
+ "NounName": "AzP2sVpnGatewayVpnProfile",
+ "Name": "Get-AzP2sVpnGatewayVpnProfile",
+ "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmP2SVpnGatewayVpnProfileCommand",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ByP2SVpnGatewayName",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Network.Models",
+ "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnProfileResponse",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfileResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "ProfileUrl": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "Name",
+ "AliasList": [
+ "ResourceName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "InputObject",
+ "AliasList": [
+ "P2SVpnGateway"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Network.Models",
+ "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
+ "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
+ "VpnClientConnectionHealth": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth",
+ "P2SConnectionConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration]",
+ "Tag": "System.Collections.Hashtable",
+ "VpnGatewayScaleUnit": "System.Int32",
+ "Name": "System.String",
+ "TagsTable": "System.String",
+ "Type": "System.String",
+ "ResourceGuid": "System.String",
+ "P2SConnectionConfigurationsText": "System.String",
+ "ResourceGroupName": "System.String",
+ "Etag": "System.String",
+ "VpnClientConnectionHealthText": "System.String",
+ "ProvisioningState": "System.String",
+ "VpnServerConfigurationLocation": "System.String",
+ "Location": "System.String",
+ "Id": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "AuthenticationMethod",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "EAPTLS",
+ "EAPMSCHAPv2"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "ByP2SVpnGatewayName",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "ResourceName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AuthenticationMethod",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [
+ "EAPTLS",
+ "EAPMSCHAPv2"
+ ],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
"Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
},
"ElementType": null,
@@ -104759,7 +105603,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -105078,7 +105922,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -105223,7 +106067,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -105311,7 +106155,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -105716,7 +106560,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -106231,7 +107075,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -106307,7 +107151,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -106583,7 +107427,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -106898,7 +107742,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -107480,7 +108324,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -107789,7 +108633,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -108173,7 +109017,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -108285,7 +109129,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -108390,7 +109234,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -108824,7 +109668,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -109267,7 +110111,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -109484,7 +110328,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -109559,7 +110403,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -109786,7 +110630,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -110213,7 +111057,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -110773,7 +111617,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressPrefixes": "System.Collections.Generic.List`1[System.String]",
"Destinations": "System.Collections.Generic.List`1[System.String]",
@@ -111089,7 +111933,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]",
"Connections": "System.Collections.Generic.List`1[System.String]",
@@ -111165,7 +112009,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute",
"GenericTypeArguments": [],
@@ -111264,7 +112108,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute",
"GenericTypeArguments": [],
@@ -111363,7 +112207,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]",
"Connections": "System.Collections.Generic.List`1[System.String]",
@@ -111464,7 +112308,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -111741,7 +112585,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -112147,7 +112991,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -112219,7 +113063,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]",
"Connections": "System.Collections.Generic.List`1[System.String]",
@@ -112614,7 +113458,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -112808,7 +113652,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]",
"Connections": "System.Collections.Generic.List`1[System.String]",
@@ -113252,7 +114096,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -113551,7 +114395,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -113661,7 +114505,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -113779,7 +114623,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
"GenericTypeArguments": [],
@@ -113797,7 +114641,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]",
"Connections": "System.Collections.Generic.List`1[System.String]",
@@ -114046,7 +114890,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
"GenericTypeArguments": [],
@@ -114070,7 +114914,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]",
"Connections": "System.Collections.Generic.List`1[System.String]",
@@ -114249,7 +115093,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -114418,7 +115262,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
"GenericTypeArguments": [],
@@ -114442,7 +115286,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]",
"Connections": "System.Collections.Generic.List`1[System.String]",
@@ -114744,7 +115588,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
"GenericTypeArguments": [],
@@ -114768,7 +115612,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]",
"Connections": "System.Collections.Generic.List`1[System.String]",
@@ -114954,7 +115798,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressPrefixes": "System.Collections.Generic.List`1[System.String]",
"Destinations": "System.Collections.Generic.List`1[System.String]",
@@ -115186,7 +116030,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]",
"Connections": "System.Collections.Generic.List`1[System.String]",
@@ -115244,7 +116088,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute",
"GenericTypeArguments": [],
@@ -115301,7 +116145,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute",
"GenericTypeArguments": [],
@@ -115456,7 +116300,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -115930,7 +116774,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -116245,7 +117089,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -116378,7 +117222,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -116448,7 +117292,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable",
"GenericTypeArguments": [],
@@ -116593,7 +117437,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable",
"GenericTypeArguments": [],
@@ -116735,7 +117579,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable",
"GenericTypeArguments": [],
@@ -116853,7 +117697,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -116929,7 +117773,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable",
"GenericTypeArguments": [],
@@ -117045,7 +117889,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable",
"GenericTypeArguments": [],
@@ -117168,7 +118012,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -117300,7 +118144,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -117388,7 +118232,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
"GenericTypeArguments": [],
@@ -117406,7 +118250,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]",
"Connections": "System.Collections.Generic.List`1[System.String]",
@@ -117631,7 +118475,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
"GenericTypeArguments": [],
@@ -117655,7 +118499,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]",
"Connections": "System.Collections.Generic.List`1[System.String]",
@@ -117884,7 +118728,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
"GenericTypeArguments": [],
@@ -117908,7 +118752,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]",
"Connections": "System.Collections.Generic.List`1[System.String]",
@@ -118089,7 +118933,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -118189,7 +119033,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
"GenericTypeArguments": [],
@@ -118213,7 +119057,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]",
"Connections": "System.Collections.Generic.List`1[System.String]",
@@ -118416,7 +119260,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
"GenericTypeArguments": [],
@@ -118440,7 +119284,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]",
"Connections": "System.Collections.Generic.List`1[System.String]",
@@ -118626,7 +119470,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -118917,7 +119761,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationsResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationsResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationsResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VpnServerConfigurationResourceIds": "System.Collections.Generic.List`1[System.String]",
"VpnServerConfigurationResourceIdsText": "System.String"
@@ -119011,7 +119855,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -119230,7 +120074,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -119525,7 +120369,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnProfileResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfileResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfileResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ProfileUrl": "System.String"
},
@@ -119618,7 +120462,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -119702,7 +120546,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -119909,7 +120753,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -120212,7 +121056,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -120282,7 +121126,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -120440,7 +121284,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -120631,7 +121475,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -120986,7 +121830,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWanVpnSitesConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWanVpnSitesConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWanVpnSitesConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SasUrl": "System.String"
},
@@ -121080,7 +121924,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -121200,7 +122044,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSite",
"GenericTypeArguments": [],
@@ -121308,7 +122152,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSite",
"GenericTypeArguments": [],
@@ -121545,7 +122389,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -121615,7 +122459,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSite",
"GenericTypeArguments": [],
@@ -121709,7 +122553,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -121897,7 +122741,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSite",
"GenericTypeArguments": [],
@@ -122182,7 +123026,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -122739,7 +123583,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -123043,7 +123887,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -123422,7 +124266,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -123528,7 +124372,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -124008,7 +124852,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -124687,7 +125531,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"EnableInternetSecurity": "System.Boolean",
@@ -124798,7 +125642,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -124905,7 +125749,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -125026,7 +125870,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -125160,7 +126004,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection",
"GenericTypeArguments": [],
@@ -125304,7 +126148,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -125452,7 +126296,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -125616,7 +126460,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection",
"GenericTypeArguments": [],
@@ -125882,7 +126726,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -126046,7 +126890,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection",
"GenericTypeArguments": [],
@@ -126165,7 +127009,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -126236,7 +127080,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -126384,7 +127228,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -126548,7 +127392,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection",
"GenericTypeArguments": [],
@@ -126667,7 +127511,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -126837,7 +127681,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -127001,7 +127845,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection",
"GenericTypeArguments": [],
@@ -127144,7 +127988,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -127292,7 +128136,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -127456,7 +128300,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection",
"GenericTypeArguments": [],
@@ -127698,7 +128542,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -127862,7 +128706,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection",
"GenericTypeArguments": [],
@@ -128053,7 +128897,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -128217,7 +129061,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection",
"GenericTypeArguments": [],
@@ -128340,7 +129184,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VpnSiteLink": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"EnableBgp": "System.Boolean",
@@ -128428,7 +129272,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BgpProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings",
"LinkProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties",
@@ -128541,7 +129385,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -128740,7 +129584,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BgpProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings",
"LinkProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties",
@@ -128877,7 +129721,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -129193,7 +130037,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"EnableInternetSecurity": "System.Boolean",
@@ -129626,7 +130470,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"EnableInternetSecurity": "System.Boolean",
@@ -129891,7 +130735,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -130185,7 +131029,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -130308,7 +131152,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -130414,7 +131258,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection",
"GenericTypeArguments": [],
@@ -130582,7 +131426,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection",
"GenericTypeArguments": [],
@@ -130698,7 +131542,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -130849,7 +131693,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection",
"GenericTypeArguments": [],
@@ -131064,7 +131908,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection",
"GenericTypeArguments": [],
@@ -131279,7 +132123,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection",
"GenericTypeArguments": [],
@@ -131462,7 +132306,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -131767,7 +132611,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -132147,7 +132991,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -132255,7 +133099,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -132338,7 +133182,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection",
"GenericTypeArguments": [],
@@ -132501,7 +133345,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection",
"GenericTypeArguments": [],
@@ -132643,7 +133487,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -132714,7 +133558,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection",
"GenericTypeArguments": [],
@@ -132878,7 +133722,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection",
"GenericTypeArguments": [],
@@ -133018,7 +133862,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection",
"GenericTypeArguments": [],
@@ -133165,7 +134009,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -133473,7 +134317,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -133815,7 +134659,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -134038,7 +134882,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -134332,7 +135176,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -134674,7 +135518,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -134992,7 +135836,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -135175,7 +136019,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -135494,7 +136338,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -135888,7 +136732,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -136009,7 +136853,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -136313,7 +137157,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -136560,7 +137404,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -136878,7 +137722,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -137172,7 +138016,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -137290,7 +138134,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -137478,7 +138322,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -137596,7 +138440,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -137832,7 +138676,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -137950,7 +138794,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
"VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
@@ -138162,7 +139006,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -138407,7 +139251,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -138700,7 +139544,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -138969,7 +139813,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -139140,7 +139984,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -139263,7 +140107,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -139559,7 +140403,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -139720,7 +140564,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -139946,7 +140790,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
"GenericTypeArguments": [],
@@ -140733,7 +141577,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
"GenericTypeArguments": [],
@@ -140996,7 +141840,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -141425,7 +142269,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -141495,7 +142339,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
"GenericTypeArguments": [],
@@ -142165,7 +143009,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
"GenericTypeArguments": [],
@@ -142435,7 +143279,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BgpProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings",
"LinkProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties",
@@ -142897,7 +143741,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -143204,7 +144048,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -143586,7 +144430,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -143695,7 +144539,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -143818,7 +144662,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -144044,7 +144888,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
"GenericTypeArguments": [],
@@ -144428,7 +145272,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
"GenericTypeArguments": [],
@@ -144811,7 +145655,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
"GenericTypeArguments": [],
@@ -144978,7 +145822,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -145240,7 +146084,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
"GenericTypeArguments": [],
@@ -145599,7 +146443,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
"GenericTypeArguments": [],
@@ -145717,7 +146561,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -146030,7 +146874,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
"GenericTypeArguments": [],
@@ -146148,7 +146992,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -146437,7 +147281,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
"GenericTypeArguments": [],
@@ -146555,7 +147399,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -146628,7 +147472,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -146890,7 +147734,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
"GenericTypeArguments": [],
@@ -147008,7 +147852,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -147273,7 +148117,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
"GenericTypeArguments": [],
@@ -147655,7 +148499,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
"GenericTypeArguments": [],
@@ -148013,7 +148857,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
"GenericTypeArguments": [],
@@ -148155,7 +148999,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowVnetToVnetTraffic": "System.Boolean",
"AllowBranchToBranchTraffic": "System.Boolean",
@@ -148417,7 +149261,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
"GenericTypeArguments": [],
@@ -148751,7 +149595,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
"GenericTypeArguments": [],
@@ -149059,7 +149903,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
"GenericTypeArguments": [],
@@ -149182,7 +150026,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSDdosProtectionPlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDdosProtectionPlan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDdosProtectionPlan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualNetworks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"Tag": "System.Collections.Hashtable",
@@ -149789,7 +150633,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -149889,7 +150733,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -150033,7 +150877,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -150171,7 +151015,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AuthorizationKey": "System.String",
"AuthorizationUseStatus": "System.String",
@@ -150247,7 +151091,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -150391,7 +151235,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -150529,7 +151373,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AuthorizationKey": "System.String",
"AuthorizationUseStatus": "System.String",
@@ -150719,7 +151563,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -150819,7 +151663,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -150963,7 +151807,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -151101,7 +151945,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -151361,7 +152205,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -151831,7 +152675,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -152067,7 +152911,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -152159,7 +153003,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPeering[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPeering",
"GenericTypeArguments": [],
@@ -152177,7 +153021,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization",
"GenericTypeArguments": [],
@@ -152438,7 +153282,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPeering[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPeering",
"GenericTypeArguments": [],
@@ -152462,7 +153306,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization",
"GenericTypeArguments": [],
@@ -152830,7 +153674,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPeering[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPeering",
"GenericTypeArguments": [],
@@ -152854,7 +153698,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization",
"GenericTypeArguments": [],
@@ -153020,7 +153864,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -153254,7 +154098,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPeering[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPeering",
"GenericTypeArguments": [],
@@ -153278,7 +154122,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization",
"GenericTypeArguments": [],
@@ -153451,7 +154295,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -153551,7 +154395,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -153816,7 +154660,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -153993,7 +154837,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -154443,7 +155287,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -154845,7 +155689,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -154950,7 +155794,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -155363,7 +156207,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -155463,7 +156307,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -155661,7 +156505,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -155888,7 +156732,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -156078,7 +156922,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PeerExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -156159,7 +157003,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -156303,7 +157147,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -156441,7 +157285,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -156541,7 +157385,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -156685,7 +157529,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -156823,7 +157667,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPeering",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig",
"MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig",
@@ -156919,7 +157763,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -157063,7 +157907,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -157201,7 +158045,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPeering",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig",
"MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig",
@@ -157481,7 +158325,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -158336,7 +159180,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -158767,7 +159611,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -158867,7 +159711,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -159033,7 +159877,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -159199,7 +160043,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -159299,7 +160143,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -159564,7 +160408,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -159741,7 +160585,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -160191,7 +161035,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -160593,7 +161437,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -160698,7 +161542,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -161434,7 +162278,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -161516,7 +162360,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -161654,7 +162498,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
"ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -161816,7 +162660,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitArpTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitArpTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitArpTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Age": "System.Nullable`1[System.Int32]",
"InterfaceProperty": "System.String",
@@ -161933,7 +162777,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network",
"Name": "Microsoft.Azure.Commands.Network.DevicePathEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -162154,7 +162998,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network",
"Name": "Microsoft.Azure.Commands.Network.DevicePathEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -162314,7 +163158,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Weight": "System.Nullable`1[System.Int32]",
"Network": "System.String",
@@ -162432,7 +163276,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network",
"Name": "Microsoft.Azure.Commands.Network.DevicePathEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -162653,7 +163497,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network",
"Name": "Microsoft.Azure.Commands.Network.DevicePathEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -162813,7 +163657,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTableSummary",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTableSummary, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTableSummary, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"V": "System.Nullable`1[System.Int32]",
"AsProperty": "System.Nullable`1[System.Int32]",
@@ -162931,7 +163775,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network",
"Name": "Microsoft.Azure.Commands.Network.DevicePathEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -163152,7 +163996,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network",
"Name": "Microsoft.Azure.Commands.Network.DevicePathEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -163312,7 +164156,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitStats",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitStats, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitStats, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PrimaryBytesIn": "System.Nullable`1[System.Int64]",
"PrimaryBytesOut": "System.Nullable`1[System.Int64]",
@@ -163600,7 +164444,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitArpTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitArpTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitArpTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Age": "System.Nullable`1[System.Int32]",
"InterfaceProperty": "System.String",
@@ -163695,7 +164539,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]",
@@ -163789,7 +164633,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network",
"Name": "Microsoft.Azure.Commands.Network.DevicePathEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -164013,7 +164857,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network",
"Name": "Microsoft.Azure.Commands.Network.DevicePathEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -164169,7 +165013,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]",
@@ -164275,7 +165119,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network",
"Name": "Microsoft.Azure.Commands.Network.DevicePathEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -164459,7 +165303,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network",
"Name": "Microsoft.Azure.Commands.Network.DevicePathEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -164622,7 +165466,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Weight": "System.Nullable`1[System.Int32]",
"Network": "System.String",
@@ -164718,7 +165562,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]",
@@ -164812,7 +165656,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network",
"Name": "Microsoft.Azure.Commands.Network.DevicePathEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -165036,7 +165880,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network",
"Name": "Microsoft.Azure.Commands.Network.DevicePathEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -165192,7 +166036,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]",
@@ -165298,7 +166142,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network",
"Name": "Microsoft.Azure.Commands.Network.DevicePathEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -165482,7 +166326,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network",
"Name": "Microsoft.Azure.Commands.Network.DevicePathEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -165645,7 +166489,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]",
@@ -165757,7 +166601,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]",
@@ -165851,7 +166695,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network",
"Name": "Microsoft.Azure.Commands.Network.DevicePathEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -166075,7 +166919,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network",
"Name": "Microsoft.Azure.Commands.Network.DevicePathEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -166231,7 +167075,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]",
@@ -166337,7 +167181,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network",
"Name": "Microsoft.Azure.Commands.Network.DevicePathEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -166521,7 +167365,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network",
"Name": "Microsoft.Azure.Commands.Network.DevicePathEnum",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -166684,7 +167528,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]",
@@ -166775,7 +167619,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]",
@@ -167115,7 +167959,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]",
@@ -167519,7 +168363,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig",
"MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig",
@@ -167609,7 +168453,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]",
@@ -167744,7 +168588,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]",
@@ -167873,7 +168717,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]",
@@ -167946,7 +168790,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]",
@@ -168115,7 +168959,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]",
@@ -168320,7 +169164,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]",
@@ -168567,7 +169411,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]",
@@ -168640,7 +169484,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]",
@@ -168784,7 +169628,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering",
"GenericTypeArguments": [],
@@ -168877,7 +169721,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]",
@@ -169143,7 +169987,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering",
"GenericTypeArguments": [],
@@ -169358,7 +170202,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AvailableBandwidths": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths]",
"Tag": "System.Collections.Hashtable",
@@ -169556,7 +170400,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -169939,7 +170783,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]",
"Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]",
@@ -169995,7 +170839,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -170108,7 +170952,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -170239,7 +171083,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]",
"Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]",
@@ -170431,7 +171275,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -170506,7 +171350,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -170619,7 +171463,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -170750,7 +171594,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -170825,7 +171669,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -170958,7 +171802,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -171115,7 +171959,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MacSecConfig": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLinkMacSecConfig",
"RouterName": "System.String",
@@ -171197,7 +172041,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -171352,7 +172196,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -171476,7 +172320,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -171624,7 +172468,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -171755,7 +172599,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -171976,7 +172820,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink",
"GenericTypeArguments": [],
@@ -172030,7 +172874,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]",
"Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]",
@@ -172268,7 +173112,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink",
"GenericTypeArguments": [],
@@ -172340,7 +173184,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]",
"Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]",
@@ -172615,7 +173459,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink",
"GenericTypeArguments": [],
@@ -172687,7 +173531,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]",
"Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]",
@@ -172912,7 +173756,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink",
"GenericTypeArguments": [],
@@ -172984,7 +173828,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]",
"Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]",
@@ -173115,7 +173959,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -173338,7 +174182,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -173963,7 +174807,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -174040,7 +174884,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -174173,7 +175017,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
"Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
@@ -174328,7 +175172,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MatchVariables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable]",
"MatchValues": "System.Collections.Generic.List`1[System.String]",
@@ -174388,7 +175232,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable",
"GenericTypeArguments": [],
@@ -174536,7 +175380,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable",
"GenericTypeArguments": [],
@@ -174726,7 +175570,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MatchConditions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition]",
"Priority": "System.Int32",
@@ -174840,7 +175684,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition",
"GenericTypeArguments": [],
@@ -174993,7 +175837,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition",
"GenericTypeArguments": [],
@@ -175096,7 +175940,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VariableName": "System.String",
"Selector": "System.String"
@@ -175342,7 +176186,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
"PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
@@ -175584,7 +176428,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MatchVariable": "System.String",
"SelectorMatchOperator": "System.String",
@@ -175875,7 +176719,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RuleId": "System.String",
"State": "System.String"
@@ -176107,7 +176951,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride]",
"RuleGroupName": "System.String"
@@ -176179,7 +177023,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride",
"GenericTypeArguments": [],
@@ -176260,7 +177104,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride",
"GenericTypeArguments": [],
@@ -176335,7 +177179,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RuleGroupOverrides": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride]",
"RuleSetVersion": "System.String",
@@ -176426,7 +177270,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride",
"GenericTypeArguments": [],
@@ -176531,7 +177375,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride",
"GenericTypeArguments": [],
@@ -176606,7 +177450,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]",
"ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]"
@@ -176660,7 +177504,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet",
"GenericTypeArguments": [],
@@ -176678,7 +177522,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion",
"GenericTypeArguments": [],
@@ -176735,7 +177579,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet",
"GenericTypeArguments": [],
@@ -176759,7 +177603,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion",
"GenericTypeArguments": [],
@@ -176834,7 +177678,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
"PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
@@ -176954,7 +177798,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule",
"GenericTypeArguments": [],
@@ -176972,7 +177816,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RequestBodyCheck": "System.Boolean",
"MaxRequestBodySizeInKb": "System.Int32",
@@ -177028,7 +177872,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]",
"ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]"
@@ -177248,7 +178092,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule",
"GenericTypeArguments": [],
@@ -177272,7 +178116,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RequestBodyCheck": "System.Boolean",
"MaxRequestBodySizeInKb": "System.Int32",
@@ -177334,7 +178178,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]",
"ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]"
@@ -177516,7 +178360,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RequestBodyCheck": "System.Boolean",
"MaxRequestBodySizeInKb": "System.Int32",
@@ -177942,7 +178786,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
"PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
@@ -178282,7 +179126,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
"PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
@@ -178730,7 +179574,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
"PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
@@ -178830,7 +179674,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
"PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
@@ -178911,7 +179755,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule",
"GenericTypeArguments": [],
@@ -178929,7 +179773,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RequestBodyCheck": "System.Boolean",
"MaxRequestBodySizeInKb": "System.Int32",
@@ -178985,7 +179829,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]",
"ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]"
@@ -179143,7 +179987,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule",
"GenericTypeArguments": [],
@@ -179167,7 +180011,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RequestBodyCheck": "System.Boolean",
"MaxRequestBodySizeInKb": "System.Int32",
@@ -179229,7 +180073,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]",
"ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]"
@@ -179356,7 +180200,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
"PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
@@ -179425,7 +180269,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule",
"GenericTypeArguments": [],
@@ -179449,7 +180293,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RequestBodyCheck": "System.Boolean",
"MaxRequestBodySizeInKb": "System.Int32",
@@ -179511,7 +180355,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]",
"ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]"
@@ -179662,7 +180506,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule",
"GenericTypeArguments": [],
@@ -179686,7 +180530,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RequestBodyCheck": "System.Boolean",
"MaxRequestBodySizeInKb": "System.Int32",
@@ -179748,7 +180592,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]",
"ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]"
@@ -179875,7 +180719,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule",
"GenericTypeArguments": [],
@@ -179899,7 +180743,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RequestBodyCheck": "System.Boolean",
"MaxRequestBodySizeInKb": "System.Int32",
@@ -179961,7 +180805,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]",
"ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]"
@@ -180095,7 +180939,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -180335,7 +181179,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -181066,7 +181910,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -181144,7 +181988,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -181278,7 +182122,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -181436,7 +182280,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -181508,7 +182352,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -181642,7 +182486,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -181800,7 +182644,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -182004,7 +182848,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -182082,7 +182926,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -182216,7 +183060,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -182374,7 +183218,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -182452,7 +183296,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -182622,7 +183466,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -182753,7 +183597,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -182868,7 +183712,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -183094,7 +183938,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -183213,7 +184057,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -183463,7 +184307,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -183662,7 +184506,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -183837,7 +184681,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -183919,7 +184763,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -184101,7 +184945,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -184201,7 +185045,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -184335,7 +185179,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -184493,7 +185337,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -184686,7 +185530,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -184817,7 +185661,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -185075,7 +185919,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -185569,7 +186413,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -185750,7 +186594,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -185828,7 +186672,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -185962,7 +186806,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -186120,7 +186964,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -186198,7 +187042,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -186368,7 +187212,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -186499,7 +187343,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -186614,7 +187458,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -186840,7 +187684,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -186959,7 +187803,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -187209,7 +188053,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -187408,7 +188252,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -187583,7 +188427,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -187665,7 +188509,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -187847,7 +188691,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -188283,7 +189127,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -188361,7 +189205,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -188600,7 +189444,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -188738,7 +189582,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -189081,7 +189925,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -189400,7 +190244,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -189505,7 +190349,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -189831,7 +190675,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPortRangeStart": "System.Int32",
@@ -189911,7 +190755,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -190045,7 +190889,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -190203,7 +191047,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPortRangeStart": "System.Int32",
@@ -190445,7 +191289,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -191079,7 +191923,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -191427,7 +192271,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -191505,7 +192349,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -191639,7 +192483,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -191797,7 +192641,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -191875,7 +192719,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -192114,7 +192958,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -192252,7 +193096,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -192595,7 +193439,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -192914,7 +193758,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -193019,7 +193863,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -193345,7 +194189,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -193423,7 +194267,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -193644,7 +194488,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -193782,7 +194626,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -194101,7 +194945,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -194396,7 +195240,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -194501,7 +195345,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -194803,7 +195647,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
"FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -194879,7 +195723,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -195013,7 +195857,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -195171,7 +196015,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
"FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -195391,7 +196235,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -195977,7 +196821,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -196301,7 +197145,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -196379,7 +197223,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -196513,7 +197357,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -196671,7 +197515,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -196749,7 +197593,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -196970,7 +197814,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -197108,7 +197952,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -197427,7 +198271,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -197722,7 +198566,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -197827,7 +198671,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -198129,7 +198973,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -198207,7 +199051,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -198464,7 +199308,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -198581,7 +199425,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -198670,7 +199514,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSProbe",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"Port": "System.Int32",
@@ -198791,7 +199635,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -199206,7 +200050,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -199549,7 +200393,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -199654,7 +200498,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -199731,7 +200575,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSProbe",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"Port": "System.Int32",
@@ -199819,7 +200663,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -200169,7 +201013,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -200249,7 +201093,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -200383,7 +201227,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -200541,7 +201385,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -200801,7 +201645,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -200918,7 +201762,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -201007,7 +201851,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSProbe",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"Port": "System.Int32",
@@ -201720,7 +202564,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -201825,7 +202669,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -201902,7 +202746,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSProbe",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"Port": "System.Int32",
@@ -202257,7 +203101,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -202335,7 +203179,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -202469,7 +203313,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -202627,7 +203471,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -202705,7 +203549,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -202962,7 +203806,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -203079,7 +203923,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -203168,7 +204012,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSProbe",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"Port": "System.Int32",
@@ -203289,7 +204133,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -203704,7 +204548,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -204047,7 +204891,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -204152,7 +204996,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -204229,7 +205073,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSProbe",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"Port": "System.Int32",
@@ -204317,7 +205161,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -204667,7 +205511,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -204837,7 +205681,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"GenericTypeArguments": [],
@@ -204855,7 +205699,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
"GenericTypeArguments": [],
@@ -204873,7 +205717,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule",
"GenericTypeArguments": [],
@@ -204891,7 +205735,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSProbe[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSProbe",
"GenericTypeArguments": [],
@@ -204909,7 +205753,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule",
"GenericTypeArguments": [],
@@ -204927,7 +205771,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool",
"GenericTypeArguments": [],
@@ -204945,7 +205789,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule",
"GenericTypeArguments": [],
@@ -205160,7 +206004,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"GenericTypeArguments": [],
@@ -205184,7 +206028,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
"GenericTypeArguments": [],
@@ -205208,7 +206052,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule",
"GenericTypeArguments": [],
@@ -205232,7 +206076,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSProbe[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSProbe",
"GenericTypeArguments": [],
@@ -205256,7 +206100,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule",
"GenericTypeArguments": [],
@@ -205280,7 +206124,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool",
"GenericTypeArguments": [],
@@ -205304,7 +206148,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule",
"GenericTypeArguments": [],
@@ -205427,7 +206271,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -205505,7 +206349,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -205672,7 +206516,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -205708,7 +206552,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -205818,7 +206662,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -206021,7 +206865,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -206113,7 +206957,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -206316,7 +207160,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -206384,7 +207228,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -206461,7 +207305,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -206664,7 +207508,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -206739,7 +207583,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -206808,7 +207652,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -206942,7 +207786,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -207100,7 +207944,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -207259,7 +208103,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -207295,7 +208139,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -207525,7 +208369,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -207737,7 +208581,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -207805,7 +208649,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -208002,7 +208846,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -208077,7 +208921,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -208155,7 +208999,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -208289,7 +209133,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -208447,7 +209291,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -208525,7 +209369,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -208692,7 +209536,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -208728,7 +209572,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -208838,7 +209682,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -209041,7 +209885,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -209133,7 +209977,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -209336,7 +210180,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -209404,7 +210248,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -209481,7 +210325,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -209684,7 +210528,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -209759,7 +210603,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -209837,7 +210681,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -210061,7 +210905,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -210339,7 +211183,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSProbe",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"Port": "System.Int32",
@@ -210422,7 +211266,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -210556,7 +211400,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -210714,7 +211558,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSProbe",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"Port": "System.Int32",
@@ -211139,7 +211983,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -211217,7 +212061,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -211351,7 +212195,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -211509,7 +212353,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -211587,7 +212431,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -211811,7 +212655,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -212412,7 +213256,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -212490,7 +213334,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -212624,7 +213468,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
"BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
@@ -212782,7 +213626,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -213217,7 +214061,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -213386,7 +214230,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoute[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSRoute",
"GenericTypeArguments": [],
@@ -213601,7 +214445,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoute[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSRoute",
"GenericTypeArguments": [],
@@ -214047,7 +214891,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -214124,7 +214968,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -214311,7 +215155,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -214540,7 +215384,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoute",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressPrefix": "System.String",
"NextHopType": "System.String",
@@ -214599,7 +215443,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -214732,7 +215576,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -214889,7 +215733,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoute",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressPrefix": "System.String",
"NextHopType": "System.String",
@@ -215206,7 +216050,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -215283,7 +216127,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -215416,7 +216260,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -215573,7 +216417,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -215650,7 +216494,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -215837,7 +216681,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -216066,7 +216910,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -216143,7 +216987,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -216276,7 +217120,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -216433,7 +217277,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSUsage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSUsage, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSUsage, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceType": "System.String"
},
@@ -216618,7 +217462,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]",
"IpAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -216678,7 +217522,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Network.Models.PSIpGroup]",
- "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -217007,7 +217851,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]",
"IpAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -217520,7 +218364,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]",
"IpAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -217860,7 +218704,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]",
"IpAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -218308,7 +219152,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]",
"IpAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -218372,7 +219216,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]",
"IpAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -218492,7 +219336,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]",
"IpAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -218636,7 +219480,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -218881,7 +219725,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -219827,7 +220671,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -219894,7 +220738,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -220089,7 +220933,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -220332,7 +221176,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku",
"PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -220778,7 +221622,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku",
"PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -220976,7 +221820,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -220994,7 +221838,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -221257,7 +222101,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -221281,7 +222125,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -221461,7 +222305,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku",
"PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -221809,7 +222653,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku",
"PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -222265,7 +223109,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku",
"PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -222393,7 +223237,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku",
"PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -222462,7 +223306,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -222480,7 +223324,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -222621,7 +223465,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -222645,7 +223489,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -222787,7 +223631,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -222811,7 +223655,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -222929,7 +223773,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku",
"PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -223004,7 +223848,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -223028,7 +223872,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -223144,7 +223988,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -223168,7 +224012,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"GenericTypeArguments": [],
@@ -223291,7 +224135,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Association": "Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroupAssociation",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -223525,7 +224369,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSEffectiveRoute",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"AddressPrefix": "System.Collections.Generic.List`1[System.String]",
@@ -223800,7 +224644,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -224764,7 +225608,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -224876,7 +225720,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -225044,7 +225888,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -225175,7 +226019,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -225269,7 +226113,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
"GenericTypeArguments": [],
@@ -225305,7 +226149,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule",
"GenericTypeArguments": [],
@@ -225341,7 +226185,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
"GenericTypeArguments": [],
@@ -225377,7 +226221,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
"GenericTypeArguments": [],
@@ -225458,7 +226302,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -225844,7 +226688,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -226062,7 +226906,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -226181,7 +227025,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -226263,7 +227107,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
"GenericTypeArguments": [],
@@ -226287,7 +227131,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule",
"GenericTypeArguments": [],
@@ -226311,7 +227155,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
"GenericTypeArguments": [],
@@ -226335,7 +227179,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
"GenericTypeArguments": [],
@@ -226383,7 +227227,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -226608,7 +227452,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PrivateLinkConnectionProperties": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation",
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
@@ -226722,7 +227566,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -226878,7 +227722,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -227028,7 +227872,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PrivateLinkConnectionProperties": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation",
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
@@ -227217,7 +228061,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -227348,7 +228192,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -227442,7 +228286,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
"GenericTypeArguments": [],
@@ -227478,7 +228322,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule",
"GenericTypeArguments": [],
@@ -227514,7 +228358,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
"GenericTypeArguments": [],
@@ -227550,7 +228394,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
"GenericTypeArguments": [],
@@ -228037,7 +228881,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -228156,7 +229000,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -228238,7 +229082,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
"GenericTypeArguments": [],
@@ -228262,7 +229106,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule",
"GenericTypeArguments": [],
@@ -228286,7 +229130,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
"GenericTypeArguments": [],
@@ -228310,7 +229154,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
"GenericTypeArguments": [],
@@ -228484,7 +229328,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -228596,7 +229440,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -228752,7 +229596,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -228902,7 +229746,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -229014,7 +229858,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -229182,7 +230026,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -229313,7 +230157,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -229407,7 +230251,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
"GenericTypeArguments": [],
@@ -229443,7 +230287,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule",
"GenericTypeArguments": [],
@@ -229479,7 +230323,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
"GenericTypeArguments": [],
@@ -229515,7 +230359,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
"GenericTypeArguments": [],
@@ -229596,7 +230440,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -229982,7 +230826,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -230200,7 +231044,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -230319,7 +231163,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -230401,7 +231245,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
"GenericTypeArguments": [],
@@ -230425,7 +231269,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule",
"GenericTypeArguments": [],
@@ -230449,7 +231293,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
"GenericTypeArguments": [],
@@ -230473,7 +231317,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
"GenericTypeArguments": [],
@@ -230521,7 +231365,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -230746,7 +231590,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -230896,7 +231740,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
"GenericTypeArguments": [],
@@ -230932,7 +231776,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -231063,7 +231907,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -231157,7 +232001,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -231264,7 +232108,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
"GenericTypeArguments": [],
@@ -231300,7 +232144,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule",
"GenericTypeArguments": [],
@@ -231336,7 +232180,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
"GenericTypeArguments": [],
@@ -231372,7 +232216,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
"GenericTypeArguments": [],
@@ -231877,7 +232721,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
"GenericTypeArguments": [],
@@ -231925,7 +232769,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -232306,7 +233150,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
"GenericTypeArguments": [],
@@ -233118,7 +233962,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -233237,7 +234081,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -233319,7 +234163,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -233414,7 +234258,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
"GenericTypeArguments": [],
@@ -233438,7 +234282,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule",
"GenericTypeArguments": [],
@@ -233462,7 +234306,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
"GenericTypeArguments": [],
@@ -233486,7 +234330,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
"GenericTypeArguments": [],
@@ -234174,7 +235018,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -234268,7 +235112,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -234418,7 +235262,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -234592,7 +235436,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -234686,7 +235530,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -234815,7 +235659,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
@@ -234921,7 +235765,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -235112,7 +235956,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -235279,7 +236123,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
@@ -235352,7 +236196,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -235526,7 +236370,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualNetworkTap": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap",
"ResourceGroupName": "System.String",
@@ -235931,7 +236775,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -236097,7 +236941,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualNetworkTap": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap",
"ResourceGroupName": "System.String",
@@ -236510,7 +237354,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualNetworkTap": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap",
"ResourceGroupName": "System.String",
@@ -236765,7 +237609,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -236859,7 +237703,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualNetworkTap": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap",
"ResourceGroupName": "System.String",
@@ -236992,7 +237836,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualNetworkTap": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap",
"ResourceGroupName": "System.String",
@@ -237159,7 +238003,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]",
"IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile]",
@@ -237239,7 +238083,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile",
"GenericTypeArguments": [],
@@ -237322,7 +238166,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile",
"GenericTypeArguments": [],
@@ -237397,7 +238241,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]",
"ContainerNetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]",
@@ -237999,7 +238843,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]",
"IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile]",
@@ -238077,7 +238921,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -238271,7 +239115,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -238482,7 +239326,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -238652,7 +239496,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]",
"ContainerNetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]",
@@ -238794,7 +239638,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration",
"GenericTypeArguments": [],
@@ -238987,7 +239831,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration",
"GenericTypeArguments": [],
@@ -239185,7 +240029,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]",
"ContainerNetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]",
@@ -239649,7 +240493,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]",
"ContainerNetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]",
@@ -239959,7 +240803,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]",
"ContainerNetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]",
@@ -240025,7 +240869,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]",
"ContainerNetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]",
@@ -240147,7 +240991,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]",
"ContainerNetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]",
@@ -240293,7 +241137,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -240741,7 +241585,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -240849,7 +241693,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -241053,7 +241897,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
"GenericTypeArguments": [],
@@ -241071,7 +241915,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
"GenericTypeArguments": [],
@@ -241248,7 +242092,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -241616,7 +242460,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
"GenericTypeArguments": [],
@@ -241640,7 +242484,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
"GenericTypeArguments": [],
@@ -241688,7 +242532,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -242128,7 +242972,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -242503,7 +243347,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SourcePortRange": "System.Collections.Generic.IList`1[System.String]",
"DestinationPortRange": "System.Collections.Generic.IList`1[System.String]",
@@ -242590,7 +243434,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -242760,7 +243604,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -242930,7 +243774,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SourcePortRange": "System.Collections.Generic.IList`1[System.String]",
"DestinationPortRange": "System.Collections.Generic.IList`1[System.String]",
@@ -243132,7 +243976,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
"GenericTypeArguments": [],
@@ -243150,7 +243994,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
"GenericTypeArguments": [],
@@ -243600,7 +244444,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
"GenericTypeArguments": [],
@@ -243624,7 +244468,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
"GenericTypeArguments": [],
@@ -244297,7 +245141,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -244405,7 +245249,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -244557,7 +245401,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -244703,7 +245547,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -244811,7 +245655,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -245015,7 +245859,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
"GenericTypeArguments": [],
@@ -245033,7 +245877,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
"GenericTypeArguments": [],
@@ -245210,7 +246054,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -245578,7 +246422,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
"GenericTypeArguments": [],
@@ -245602,7 +246446,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
"GenericTypeArguments": [],
@@ -245650,7 +246494,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -246090,7 +246934,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -246465,7 +247309,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -246611,7 +247455,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule",
"GenericTypeArguments": [],
@@ -246796,7 +247640,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule",
"GenericTypeArguments": [],
@@ -247266,7 +248110,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -247356,7 +248200,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -247502,7 +248346,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -247672,7 +248516,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Destination": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorDestination",
"Source": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorSource",
@@ -247737,7 +248581,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"Outputs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]",
@@ -247804,7 +248648,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -247996,7 +248840,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -248464,7 +249308,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorQueryResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorQueryResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorQueryResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"States": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot]",
"StatesText": "System.String"
@@ -248518,7 +249362,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -248651,7 +249495,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -248789,7 +249633,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -249302,7 +250146,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -249512,7 +250356,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Destination": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorDestination",
"Source": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorSource",
@@ -249577,7 +250421,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"Outputs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]",
@@ -249644,7 +250488,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -249889,7 +250733,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject",
"GenericTypeArguments": [],
@@ -249907,7 +250751,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject",
"GenericTypeArguments": [],
@@ -249943,7 +250787,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"Outputs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]",
@@ -250115,7 +250959,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -250494,7 +251338,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -250587,7 +251431,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject",
"GenericTypeArguments": [],
@@ -250611,7 +251455,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject",
"GenericTypeArguments": [],
@@ -251209,7 +252053,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject",
"GenericTypeArguments": [],
@@ -251233,7 +252077,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject",
"GenericTypeArguments": [],
@@ -251783,7 +252627,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject",
"GenericTypeArguments": [],
@@ -251807,7 +252651,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject",
"GenericTypeArguments": [],
@@ -251971,7 +252815,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"Outputs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]",
@@ -252229,7 +253073,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "System.String",
"Address": "System.String"
@@ -252415,7 +253259,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Filter": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilter",
"Name": "System.String",
@@ -252544,7 +253388,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem",
"GenericTypeArguments": [],
@@ -252717,7 +253561,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem",
"GenericTypeArguments": [],
@@ -252908,7 +253752,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"Outputs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]",
@@ -252970,7 +253814,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -253105,7 +253949,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject",
"GenericTypeArguments": [],
@@ -253123,7 +253967,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject",
"GenericTypeArguments": [],
@@ -253216,7 +254060,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -253309,7 +254153,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject",
"GenericTypeArguments": [],
@@ -253333,7 +254177,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject",
"GenericTypeArguments": [],
@@ -253523,7 +254367,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject",
"GenericTypeArguments": [],
@@ -253547,7 +254391,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject",
"GenericTypeArguments": [],
@@ -253713,7 +254557,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject",
"GenericTypeArguments": [],
@@ -253737,7 +254581,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject",
"GenericTypeArguments": [],
@@ -253879,7 +254723,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject",
"GenericTypeArguments": [],
@@ -253903,7 +254747,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject",
"GenericTypeArguments": [],
@@ -254026,7 +254870,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"WorkspaceSettings": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorWorkspaceSettings",
"Type": "System.String",
@@ -254255,7 +255099,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ProtocolConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration",
"SuccessThreshold": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorSuccessThreshold",
@@ -254352,7 +255196,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -254549,7 +255393,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -254732,7 +255576,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sources": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]",
"Destinations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]",
@@ -254810,7 +255654,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -254830,7 +255674,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -254850,7 +255694,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -254951,7 +255795,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -254977,7 +255821,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -255003,7 +255847,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -255123,7 +255967,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -255256,7 +256100,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -255412,7 +256256,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -256021,7 +256865,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -256279,7 +257123,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Destination": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorDestination",
"Source": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorSource",
@@ -256344,7 +257188,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"Outputs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]",
@@ -256411,7 +257255,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -256544,7 +257388,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -256735,7 +257579,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject",
"GenericTypeArguments": [],
@@ -256753,7 +257597,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject",
"GenericTypeArguments": [],
@@ -256882,7 +257726,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -257237,7 +258081,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -257330,7 +258174,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject",
"GenericTypeArguments": [],
@@ -257354,7 +258198,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject",
"GenericTypeArguments": [],
@@ -257904,7 +258748,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject",
"GenericTypeArguments": [],
@@ -257928,7 +258772,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject",
"GenericTypeArguments": [],
@@ -258430,7 +259274,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject",
"GenericTypeArguments": [],
@@ -258454,7 +259298,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject",
"GenericTypeArguments": [],
@@ -258904,7 +259748,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject",
"GenericTypeArguments": [],
@@ -258928,7 +259772,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject",
"GenericTypeArguments": [],
@@ -259068,7 +259912,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -259297,7 +260141,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -259430,7 +260274,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -259586,7 +260430,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -260195,7 +261039,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -260472,7 +261316,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -260605,7 +261449,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -260761,7 +261605,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -261370,7 +262214,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -261616,399 +262460,40 @@
},
{
"VerbName": "Get",
- "NounName": "AzNetworkWatcher",
- "Name": "Get-AzNetworkWatcher",
- "ClassName": "Microsoft.Azure.Commands.Network.GetAzureNetworkWatcherCommand",
+ "NounName": "AzNetworkWatcherFlowLog",
+ "Name": "Get-AzNetworkWatcherFlowLog",
+ "ClassName": "Microsoft.Azure.Commands.Network.GetAzNetworkWatcherFlowLogCommand",
"SupportsShouldProcess": false,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "__AllParameterSets",
+ "DefaultParameterSetName": "SetByName",
"OutputTypes": [
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
- "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
+ "Format": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters",
+ "RetentionPolicy": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters",
+ "FlowAnalyticsConfiguration": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsProperties",
"Tag": "System.Collections.Hashtable",
+ "Enabled": "System.Nullable`1[System.Boolean]",
"ProvisioningState": "System.String",
- "ResourceGroupName": "System.String",
- "Location": "System.String",
- "ResourceGuid": "System.String",
- "Type": "System.String",
- "TagsTable": "System.String",
"Name": "System.String",
+ "TagsTable": "System.String",
+ "Type": "System.String",
+ "ResourceGuid": "System.String",
+ "Location": "System.String",
+ "FormatText": "System.String",
+ "FlowAnalyticsConfigurationText": "System.String",
"Etag": "System.String",
- "Id": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
- },
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
- },
- "ParameterSets": [
- "__AllParameterSets"
- ]
- }
- ],
- "Parameters": [
- {
- "Name": "Name",
- "AliasList": [
- "ResourceName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "ResourceGroupName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "Location",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
- "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- }
- ],
- "ParameterSets": [
- {
- "Name": "List",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "ResourceName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "ResourceGroupName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
- "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "SetByLocation",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "Location",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
- "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "__AllParameterSets",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
- "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- }
- ]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "Get",
- "NounName": "AzNetworkWatcherFlowLogStatus",
- "Name": "Get-AzNetworkWatcherFlowLogStatus",
- "ClassName": "Microsoft.Azure.Commands.Network.GetAzureNetworkWatcherFlowLogStatusCommand",
- "SupportsShouldProcess": false,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "SetByResource",
- "OutputTypes": [
- {
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Network.Models",
- "Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLog",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLog, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
- "Properties": {
- "Format": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters",
- "RetentionPolicy": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters",
- "FlowAnalyticsConfiguration": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsProperties",
- "Enabled": "System.Boolean",
+ "RetentionPolicyText": "System.String",
"StorageId": "System.String",
+ "TargetResourceGuid": "System.String",
"TargetResourceId": "System.String",
- "RetentionPolicyText": "System.String",
- "FormatText": "System.String",
- "FlowAnalyticsConfigurationText": "System.String"
+ "ResourceGroupName": "System.String",
+ "Id": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -262059,7 +262544,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -262116,9 +262601,7 @@
},
{
"Name": "NetworkWatcherName",
- "AliasList": [
- "Name"
- ],
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -262171,7 +262654,7 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "TargetResourceId",
+ "Name": "ResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -262186,15 +262669,17 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
{
- "Name": "AsJob",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "FlowLogName"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -262204,7 +262689,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
{
"Name": "DefaultProfile",
@@ -262251,7 +262736,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -262313,8 +262798,10 @@
},
{
"ParameterMetadata": {
- "Name": "TargetResourceId",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "FlowLogName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -262330,30 +262817,6 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "AsJob",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
@@ -262406,9 +262869,7 @@
{
"ParameterMetadata": {
"Name": "NetworkWatcherName",
- "AliasList": [
- "Name"
- ],
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -262426,7 +262887,7 @@
},
"Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": true,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
@@ -262451,12 +262912,14 @@
"Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "TargetResourceId",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "FlowLogName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -262472,30 +262935,6 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "AsJob",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
@@ -262571,8 +263010,10 @@
},
{
"ParameterMetadata": {
- "Name": "TargetResourceId",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "FlowLogName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -262588,30 +263029,6 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "AsJob",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
@@ -262659,11 +263076,11 @@
]
},
{
- "Name": "__AllParameterSets",
+ "Name": "SetByResourceId",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TargetResourceId",
+ "Name": "ResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -262678,7 +263095,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": true,
"Position": -2147483648,
@@ -262687,16 +263104,31 @@
},
{
"ParameterMetadata": {
- "Name": "AsJob",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
@@ -262708,7 +263140,12 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -262754,24 +263191,41 @@
"AliasList": []
},
{
- "VerbName": "Get",
- "NounName": "AzNetworkWatcherNextHop",
- "Name": "Get-AzNetworkWatcherNextHop",
- "ClassName": "Microsoft.Azure.Commands.Network.GetAzureNetworkWatcherNextHopCommand",
- "SupportsShouldProcess": false,
+ "VerbName": "New",
+ "NounName": "AzNetworkWatcherFlowLog",
+ "Name": "New-AzNetworkWatcherFlowLog",
+ "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkWatcherFlowLogCommand",
+ "SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "SetByResource",
+ "DefaultParameterSetName": "SetByName",
"OutputTypes": [
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
- "Name": "Microsoft.Azure.Commands.Network.Models.PSNextHopResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNextHopResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "NextHopType": "System.String",
- "NextHopIpAddress": "System.String",
- "RouteTableId": "System.String"
+ "Format": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters",
+ "RetentionPolicy": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters",
+ "FlowAnalyticsConfiguration": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsProperties",
+ "Tag": "System.Collections.Hashtable",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "ProvisioningState": "System.String",
+ "Name": "System.String",
+ "TagsTable": "System.String",
+ "Type": "System.String",
+ "ResourceGuid": "System.String",
+ "Location": "System.String",
+ "FormatText": "System.String",
+ "FlowAnalyticsConfigurationText": "System.String",
+ "Etag": "System.String",
+ "RetentionPolicyText": "System.String",
+ "StorageId": "System.String",
+ "TargetResourceGuid": "System.String",
+ "TargetResourceId": "System.String",
+ "ResourceGroupName": "System.String",
+ "Id": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -262822,7 +263276,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -262879,9 +263333,7 @@
},
{
"Name": "NetworkWatcherName",
- "AliasList": [
- "Name"
- ],
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -262934,7 +263386,27 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "TargetVirtualMachineId",
+ "Name": "Name",
+ "AliasList": [
+ "FlowLogName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "TargetResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -262952,7 +263424,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "DestinationIPAddress",
+ "Name": "StorageId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -262970,7 +263442,63 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "SourceIPAddress",
+ "Name": "Enabled",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "EnableRetention",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "RetentionPolicyDays",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "FormatType",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -262988,7 +263516,45 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "TargetNetworkInterfaceId",
+ "Name": "FormatVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "EnableTrafficAnalytics",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "TrafficAnalyticsWorkspaceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -263006,7 +263572,45 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "AsJob",
+ "Name": "TrafficAnalyticsInterval",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": 1,
+ "ValidateRangeMax": 2147483647,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Tag",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Force",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -263068,7 +263672,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -263130,8 +263734,10 @@
},
{
"ParameterMetadata": {
- "Name": "TargetVirtualMachineId",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "FlowLogName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -263150,11 +263756,11 @@
"Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DestinationIPAddress",
+ "Name": "TargetResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -263178,7 +263784,7 @@
},
{
"ParameterMetadata": {
- "Name": "SourceIPAddress",
+ "Name": "StorageId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -263202,12 +263808,12 @@
},
{
"ParameterMetadata": {
- "Name": "TargetNetworkInterfaceId",
+ "Name": "Enabled",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -263219,19 +263825,19 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "AsJob",
+ "Name": "EnableRetention",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -263250,125 +263856,33 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
- "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "SetByName",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "NetworkWatcherName",
- "AliasList": [
- "Name"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "ResourceGroupName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "TargetVirtualMachineId",
+ "Name": "RetentionPolicyDays",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
- "GenericTypeArguments": [],
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DestinationIPAddress",
+ "Name": "FormatType",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -263385,43 +263899,45 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "SourceIPAddress",
+ "Name": "FormatVersion",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
- "GenericTypeArguments": [],
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
"Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "TargetNetworkInterfaceId",
+ "Name": "Tag",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -263431,7 +263947,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
@@ -263440,7 +263956,7 @@
},
{
"ParameterMetadata": {
- "Name": "AsJob",
+ "Name": "Force",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -263504,21 +264020,64 @@
]
},
{
- "Name": "SetByLocation",
+ "Name": "SetByResourceWithTA",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Location",
+ "Name": "NetworkWatcher",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.Network.Models",
+ "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Tag": "System.Collections.Hashtable",
+ "ProvisioningState": "System.String",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "ResourceGuid": "System.String",
+ "Type": "System.String",
+ "TagsTable": "System.String",
+ "Name": "System.String",
+ "Etag": "System.String",
+ "Id": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
@@ -263527,17 +264086,17 @@
},
"Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "TargetVirtualMachineId",
+ "Name": "EnableTrafficAnalytics",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -263547,16 +264106,16 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DestinationIPAddress",
+ "Name": "TrafficAnalyticsWorkspaceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -263573,15 +264132,43 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "SourceIPAddress",
+ "Name": "TrafficAnalyticsInterval",
"AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": 1,
+ "ValidateRangeMax": 2147483647,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "FlowLogName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -263604,7 +264191,7 @@
},
{
"ParameterMetadata": {
- "Name": "TargetNetworkInterfaceId",
+ "Name": "TargetResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -263621,19 +264208,19 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "AsJob",
+ "Name": "StorageId",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -263643,9 +264230,8883 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Enabled",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableRetention",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RetentionPolicyDays",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "FormatType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "FormatVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Force",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "SetByName",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "NetworkWatcherName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "FlowLogName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TargetResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "StorageId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Enabled",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableRetention",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RetentionPolicyDays",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "FormatType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "FormatVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Force",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "SetByNameWithTA",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "NetworkWatcherName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableTrafficAnalytics",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TrafficAnalyticsWorkspaceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TrafficAnalyticsInterval",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": 1,
+ "ValidateRangeMax": 2147483647,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "FlowLogName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TargetResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "StorageId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Enabled",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableRetention",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RetentionPolicyDays",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "FormatType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "FormatVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Force",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "SetByLocation",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Location",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "FlowLogName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TargetResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "StorageId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Enabled",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableRetention",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RetentionPolicyDays",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "FormatType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "FormatVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Force",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "SetByLocationWithTA",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Location",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableTrafficAnalytics",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TrafficAnalyticsWorkspaceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TrafficAnalyticsInterval",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": 1,
+ "ValidateRangeMax": 2147483647,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "FlowLogName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TargetResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "StorageId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Enabled",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableRetention",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RetentionPolicyDays",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "FormatType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "FormatVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Force",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "FlowLogName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TargetResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "StorageId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Enabled",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableRetention",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RetentionPolicyDays",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "FormatType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "FormatVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Force",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Remove",
+ "NounName": "AzNetworkWatcherFlowLog",
+ "Name": "Remove-AzNetworkWatcherFlowLog",
+ "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzNetworkWatcherFlowLogCommand",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "SetByName",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "NetworkWatcher",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Network.Models",
+ "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Tag": "System.Collections.Hashtable",
+ "ProvisioningState": "System.String",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "ResourceGuid": "System.String",
+ "Type": "System.String",
+ "TagsTable": "System.String",
+ "Name": "System.String",
+ "Etag": "System.String",
+ "Id": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "NetworkWatcherName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Location",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Network.Models",
+ "Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Format": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters",
+ "RetentionPolicy": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters",
+ "FlowAnalyticsConfiguration": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsProperties",
+ "Tag": "System.Collections.Hashtable",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "ProvisioningState": "System.String",
+ "Name": "System.String",
+ "TagsTable": "System.String",
+ "Type": "System.String",
+ "ResourceGuid": "System.String",
+ "Location": "System.String",
+ "FormatText": "System.String",
+ "FlowAnalyticsConfigurationText": "System.String",
+ "Etag": "System.String",
+ "RetentionPolicyText": "System.String",
+ "StorageId": "System.String",
+ "TargetResourceGuid": "System.String",
+ "TargetResourceId": "System.String",
+ "ResourceGroupName": "System.String",
+ "Id": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Name",
+ "AliasList": [
+ "FlowLogName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "SetByResource",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "NetworkWatcher",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Network.Models",
+ "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Tag": "System.Collections.Hashtable",
+ "ProvisioningState": "System.String",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "ResourceGuid": "System.String",
+ "Type": "System.String",
+ "TagsTable": "System.String",
+ "Name": "System.String",
+ "Etag": "System.String",
+ "Id": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "FlowLogName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "SetByName",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "NetworkWatcherName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "FlowLogName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "SetByLocation",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Location",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "FlowLogName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "SetByResourceId",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "SetByInputObject",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Network.Models",
+ "Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Format": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters",
+ "RetentionPolicy": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters",
+ "FlowAnalyticsConfiguration": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsProperties",
+ "Tag": "System.Collections.Hashtable",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "ProvisioningState": "System.String",
+ "Name": "System.String",
+ "TagsTable": "System.String",
+ "Type": "System.String",
+ "ResourceGuid": "System.String",
+ "Location": "System.String",
+ "FormatText": "System.String",
+ "FlowAnalyticsConfigurationText": "System.String",
+ "Etag": "System.String",
+ "RetentionPolicyText": "System.String",
+ "StorageId": "System.String",
+ "TargetResourceGuid": "System.String",
+ "TargetResourceId": "System.String",
+ "ResourceGroupName": "System.String",
+ "Id": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Set",
+ "NounName": "AzNetworkWatcherFlowLog",
+ "Name": "Set-AzNetworkWatcherFlowLog",
+ "ClassName": "Microsoft.Azure.Commands.Network.SetAzNetworkWatcherFlowLogCommand",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "SetByName",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Network.Models",
+ "Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Format": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters",
+ "RetentionPolicy": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters",
+ "FlowAnalyticsConfiguration": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsProperties",
+ "Tag": "System.Collections.Hashtable",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "ProvisioningState": "System.String",
+ "Name": "System.String",
+ "TagsTable": "System.String",
+ "Type": "System.String",
+ "ResourceGuid": "System.String",
+ "Location": "System.String",
+ "FormatText": "System.String",
+ "FlowAnalyticsConfigurationText": "System.String",
+ "Etag": "System.String",
+ "RetentionPolicyText": "System.String",
+ "StorageId": "System.String",
+ "TargetResourceGuid": "System.String",
+ "TargetResourceId": "System.String",
+ "ResourceGroupName": "System.String",
+ "Id": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "NetworkWatcher",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Network.Models",
+ "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Tag": "System.Collections.Hashtable",
+ "ProvisioningState": "System.String",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "ResourceGuid": "System.String",
+ "Type": "System.String",
+ "TagsTable": "System.String",
+ "Name": "System.String",
+ "Etag": "System.String",
+ "Id": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "NetworkWatcherName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Location",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Network.Models",
+ "Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Format": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters",
+ "RetentionPolicy": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters",
+ "FlowAnalyticsConfiguration": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsProperties",
+ "Tag": "System.Collections.Hashtable",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "ProvisioningState": "System.String",
+ "Name": "System.String",
+ "TagsTable": "System.String",
+ "Type": "System.String",
+ "ResourceGuid": "System.String",
+ "Location": "System.String",
+ "FormatText": "System.String",
+ "FlowAnalyticsConfigurationText": "System.String",
+ "Etag": "System.String",
+ "RetentionPolicyText": "System.String",
+ "StorageId": "System.String",
+ "TargetResourceGuid": "System.String",
+ "TargetResourceId": "System.String",
+ "ResourceGroupName": "System.String",
+ "Id": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Name",
+ "AliasList": [
+ "FlowLogName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "TargetResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "StorageId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Enabled",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "EnableRetention",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Boolean]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Boolean"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "RetentionPolicyDays",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "FormatType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "FormatVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "EnableTrafficAnalytics",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "TrafficAnalyticsWorkspaceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "TrafficAnalyticsInterval",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": 1,
+ "ValidateRangeMax": 2147483647,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Tag",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Force",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "SetByResource",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "NetworkWatcher",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Network.Models",
+ "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Tag": "System.Collections.Hashtable",
+ "ProvisioningState": "System.String",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "ResourceGuid": "System.String",
+ "Type": "System.String",
+ "TagsTable": "System.String",
+ "Name": "System.String",
+ "Etag": "System.String",
+ "Id": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "FlowLogName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TargetResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "StorageId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Enabled",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableRetention",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Boolean]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Boolean"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RetentionPolicyDays",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "FormatType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "FormatVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Force",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "SetByResourceWithTA",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "NetworkWatcher",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Network.Models",
+ "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Tag": "System.Collections.Hashtable",
+ "ProvisioningState": "System.String",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "ResourceGuid": "System.String",
+ "Type": "System.String",
+ "TagsTable": "System.String",
+ "Name": "System.String",
+ "Etag": "System.String",
+ "Id": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "FlowLogName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TargetResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "StorageId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Enabled",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableRetention",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Boolean]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Boolean"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RetentionPolicyDays",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "FormatType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "FormatVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableTrafficAnalytics",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TrafficAnalyticsWorkspaceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TrafficAnalyticsInterval",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": 1,
+ "ValidateRangeMax": 2147483647,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Force",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "SetByName",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "NetworkWatcherName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "FlowLogName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TargetResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "StorageId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Enabled",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableRetention",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Boolean]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Boolean"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RetentionPolicyDays",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "FormatType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "FormatVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Force",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "SetByNameWithTA",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "NetworkWatcherName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "FlowLogName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TargetResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "StorageId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Enabled",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableRetention",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Boolean]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Boolean"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RetentionPolicyDays",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "FormatType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "FormatVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableTrafficAnalytics",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TrafficAnalyticsWorkspaceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TrafficAnalyticsInterval",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": 1,
+ "ValidateRangeMax": 2147483647,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Force",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "SetByLocation",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Location",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "FlowLogName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TargetResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "StorageId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Enabled",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableRetention",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Boolean]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Boolean"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RetentionPolicyDays",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "FormatType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "FormatVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Force",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "SetByLocationWithTA",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Location",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "FlowLogName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TargetResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "StorageId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Enabled",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableRetention",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Boolean]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Boolean"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RetentionPolicyDays",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "FormatType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "FormatVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableTrafficAnalytics",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TrafficAnalyticsWorkspaceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TrafficAnalyticsInterval",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": 1,
+ "ValidateRangeMax": 2147483647,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Force",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "SetByResourceId",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TargetResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "StorageId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Enabled",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableRetention",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Boolean]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Boolean"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RetentionPolicyDays",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "FormatType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "FormatVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Force",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "SetByResourceIdWithTA",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TargetResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "StorageId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Enabled",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableRetention",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Boolean]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Boolean"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RetentionPolicyDays",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "FormatType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "FormatVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "EnableTrafficAnalytics",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TrafficAnalyticsWorkspaceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TrafficAnalyticsInterval",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": 1,
+ "ValidateRangeMax": 2147483647,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Force",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "SetByInputObject",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Network.Models",
+ "Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Format": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters",
+ "RetentionPolicy": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters",
+ "FlowAnalyticsConfiguration": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsProperties",
+ "Tag": "System.Collections.Hashtable",
+ "Enabled": "System.Nullable`1[System.Boolean]",
+ "ProvisioningState": "System.String",
+ "Name": "System.String",
+ "TagsTable": "System.String",
+ "Type": "System.String",
+ "ResourceGuid": "System.String",
+ "Location": "System.String",
+ "FormatText": "System.String",
+ "FlowAnalyticsConfigurationText": "System.String",
+ "Etag": "System.String",
+ "RetentionPolicyText": "System.String",
+ "StorageId": "System.String",
+ "TargetResourceGuid": "System.String",
+ "TargetResourceId": "System.String",
+ "ResourceGroupName": "System.String",
+ "Id": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Force",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Force",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Get",
+ "NounName": "AzNetworkWatcher",
+ "Name": "Get-AzNetworkWatcher",
+ "ClassName": "Microsoft.Azure.Commands.Network.GetAzureNetworkWatcherCommand",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "__AllParameterSets",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Network.Models",
+ "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Tag": "System.Collections.Hashtable",
+ "ProvisioningState": "System.String",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "ResourceGuid": "System.String",
+ "Type": "System.String",
+ "TagsTable": "System.String",
+ "Name": "System.String",
+ "Etag": "System.String",
+ "Id": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "Name",
+ "AliasList": [
+ "ResourceName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Location",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "List",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "ResourceName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "SetByLocation",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Location",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Get",
+ "NounName": "AzNetworkWatcherFlowLogStatus",
+ "Name": "Get-AzNetworkWatcherFlowLogStatus",
+ "ClassName": "Microsoft.Azure.Commands.Network.GetAzureNetworkWatcherFlowLogStatusCommand",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "SetByResource",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Network.Models",
+ "Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLog",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLog, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Format": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters",
+ "RetentionPolicy": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters",
+ "FlowAnalyticsConfiguration": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsProperties",
+ "Enabled": "System.Boolean",
+ "StorageId": "System.String",
+ "TargetResourceId": "System.String",
+ "RetentionPolicyText": "System.String",
+ "FormatText": "System.String",
+ "FlowAnalyticsConfigurationText": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "NetworkWatcher",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Network.Models",
+ "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Tag": "System.Collections.Hashtable",
+ "ProvisioningState": "System.String",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "ResourceGuid": "System.String",
+ "Type": "System.String",
+ "TagsTable": "System.String",
+ "Name": "System.String",
+ "Etag": "System.String",
+ "Id": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "NetworkWatcherName",
+ "AliasList": [
+ "Name"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Location",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "TargetResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "SetByResource",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "NetworkWatcher",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Network.Models",
+ "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Tag": "System.Collections.Hashtable",
+ "ProvisioningState": "System.String",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "ResourceGuid": "System.String",
+ "Type": "System.String",
+ "TagsTable": "System.String",
+ "Name": "System.String",
+ "Etag": "System.String",
+ "Id": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TargetResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "SetByName",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "NetworkWatcherName",
+ "AliasList": [
+ "Name"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TargetResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "SetByLocation",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Location",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TargetResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "TargetResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Get",
+ "NounName": "AzNetworkWatcherNextHop",
+ "Name": "Get-AzNetworkWatcherNextHop",
+ "ClassName": "Microsoft.Azure.Commands.Network.GetAzureNetworkWatcherNextHopCommand",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "SetByResource",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Network.Models",
+ "Name": "Microsoft.Azure.Commands.Network.Models.PSNextHopResult",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNextHopResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "NextHopType": "System.String",
+ "NextHopIpAddress": "System.String",
+ "RouteTableId": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "NetworkWatcher",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Network.Models",
+ "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Tag": "System.Collections.Hashtable",
+ "ProvisioningState": "System.String",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "ResourceGuid": "System.String",
+ "Type": "System.String",
+ "TagsTable": "System.String",
+ "Name": "System.String",
+ "Etag": "System.String",
+ "Id": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "NetworkWatcherName",
+ "AliasList": [
+ "Name"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Location",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "TargetVirtualMachineId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "DestinationIPAddress",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "SourceIPAddress",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "TargetNetworkInterfaceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "SetByResource",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "NetworkWatcher",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Network.Models",
+ "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Tag": "System.Collections.Hashtable",
+ "ProvisioningState": "System.String",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "ResourceGuid": "System.String",
+ "Type": "System.String",
+ "TagsTable": "System.String",
+ "Name": "System.String",
+ "Etag": "System.String",
+ "Id": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TargetVirtualMachineId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DestinationIPAddress",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SourceIPAddress",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TargetNetworkInterfaceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "SetByName",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "NetworkWatcherName",
+ "AliasList": [
+ "Name"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TargetVirtualMachineId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DestinationIPAddress",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SourceIPAddress",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TargetNetworkInterfaceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "SetByLocation",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Location",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TargetVirtualMachineId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DestinationIPAddress",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SourceIPAddress",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TargetNetworkInterfaceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -263872,7 +273333,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityGroupViewResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityGroupViewResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityGroupViewResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView]",
"NetworkInterfacesText": "System.String"
@@ -263926,7 +273387,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -264118,7 +273579,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -264634,7 +274095,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTopology",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopology, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopology, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Resources": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTopologyResource]",
"CreatedDateTime": "System.Nullable`1[System.DateTime]",
@@ -264691,7 +274152,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -264865,7 +274326,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -265285,7 +274746,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Results": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails]",
"Tag": "System.Collections.Hashtable",
@@ -265356,7 +274817,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -265530,7 +274991,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -265950,7 +275411,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResponse",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Results": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult]",
"ResultsText": "System.String"
@@ -266004,7 +275465,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -266175,7 +275636,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -266252,7 +275713,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -266367,7 +275828,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -266559,7 +276020,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -266725,7 +276186,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -266891,7 +276352,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -267033,7 +276494,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -267134,7 +276595,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Direction": "System.String",
"Protocol": "System.String",
@@ -267491,7 +276952,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -267815,7 +277276,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSGetPacketCaptureResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGetPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGetPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StorageLocation": "Microsoft.Azure.Commands.Network.Models.PSStorageLocation",
"Filters": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter]",
@@ -267899,7 +277360,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -268091,7 +277552,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -268607,7 +278068,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StorageLocation": "Microsoft.Azure.Commands.Network.Models.PSStorageLocation",
"Filters": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter]",
@@ -268681,7 +278142,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -268948,7 +278409,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter",
"GenericTypeArguments": [],
@@ -269023,7 +278484,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -269288,7 +278749,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter",
"GenericTypeArguments": [],
@@ -269628,7 +279089,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter",
"GenericTypeArguments": [],
@@ -269942,7 +279403,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter",
"GenericTypeArguments": [],
@@ -270232,7 +279693,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter",
"GenericTypeArguments": [],
@@ -270331,7 +279792,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Protocol": "System.String",
"RemoteIPAddress": "System.String",
@@ -270707,7 +280168,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -270917,7 +280378,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -271548,7 +281009,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -271758,7 +281219,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -272389,7 +281850,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -272581,7 +282042,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -273097,7 +282558,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLog",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLog, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLog, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Format": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters",
"RetentionPolicy": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters",
@@ -273158,7 +282619,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -273574,7 +283035,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -273957,7 +283418,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -274384,7 +283845,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -276984,7 +286445,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Results": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails]",
"Tag": "System.Collections.Hashtable",
@@ -277055,7 +286516,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -277265,7 +286726,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -277877,7 +287338,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectivityInformation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectivityInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectivityInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Hops": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop]",
"AvgLatencyInMs": "System.Nullable`1[System.Int32]",
@@ -277937,7 +287398,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -278144,7 +287605,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Header": "System.Collections.IDictionary",
"ValidStatusCode": "System.Int32[]",
@@ -278256,7 +287717,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -278443,7 +287904,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Header": "System.Collections.IDictionary",
"ValidStatusCode": "System.Int32[]",
@@ -278742,7 +288203,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Header": "System.Collections.IDictionary",
"ValidStatusCode": "System.Int32[]",
@@ -279015,7 +288476,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Header": "System.Collections.IDictionary",
"ValidStatusCode": "System.Int32[]",
@@ -279264,7 +288725,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Header": "System.Collections.IDictionary",
"ValidStatusCode": "System.Int32[]",
@@ -279400,7 +288861,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIPFlowVerifyResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPFlowVerifyResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPFlowVerifyResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Access": "System.String",
"RuleName": "System.String"
@@ -279454,7 +288915,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -279778,7 +289239,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -280990,7 +290451,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
@@ -281435,7 +290896,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
@@ -281576,7 +291037,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -281689,7 +291150,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection",
"GenericTypeArguments": [],
@@ -281892,7 +291353,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -282011,7 +291472,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection",
"GenericTypeArguments": [],
@@ -282182,7 +291643,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState",
"GroupIds": "System.Collections.Generic.List`1[System.String]",
@@ -282262,7 +291723,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet",
"AutoApproval": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet",
@@ -282547,7 +292008,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet",
"AutoApproval": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet",
@@ -283215,7 +292676,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
@@ -283300,7 +292761,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
@@ -283441,7 +292902,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
@@ -283606,7 +293067,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAutoApprovedPrivateLinkService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAutoApprovedPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAutoApprovedPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PrivateLinkService": "System.String"
},
@@ -283833,7 +293294,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet",
"AutoApproval": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet",
@@ -284268,7 +293729,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet",
"AutoApproval": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet",
@@ -284401,7 +293862,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"GenericTypeArguments": [],
@@ -284419,7 +293880,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration",
"GenericTypeArguments": [],
@@ -284658,7 +294119,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"GenericTypeArguments": [],
@@ -284682,7 +294143,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration",
"GenericTypeArguments": [],
@@ -284901,7 +294362,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint",
"PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState",
@@ -285444,7 +294905,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint",
"PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState",
@@ -285987,7 +295448,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint",
"PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState",
@@ -287411,7 +296872,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint",
"PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState",
@@ -288044,7 +297505,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RequiredMembers": "System.Collections.Generic.List`1[System.String]",
"Name": "System.String",
@@ -288278,7 +297739,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
@@ -288399,7 +297860,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -288475,7 +297936,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -288720,7 +298181,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -288802,7 +298263,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -289554,7 +299015,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet",
"AutoApproval": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet",
@@ -289631,7 +299092,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet",
"AutoApproval": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet",
@@ -289764,7 +299225,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet",
"AutoApproval": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet",
@@ -289921,7 +299382,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBgpServiceCommunity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpServiceCommunity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpServiceCommunity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BgpCommunities": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpCommunity]",
"Name": "System.String",
@@ -290069,7 +299530,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProvider",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BandwidthsOffered": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered]",
"PeeringLocations": "System.Collections.Generic.List`1[System.String]",
@@ -290416,7 +299877,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -291327,7 +300788,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -291541,7 +301002,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag",
"GenericTypeArguments": [],
@@ -291559,7 +301020,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku",
"PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]",
@@ -291956,7 +301417,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag",
"GenericTypeArguments": [],
@@ -291980,7 +301441,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku",
"PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]",
@@ -292252,7 +301713,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpTagType": "System.String",
"Tag": "System.String"
@@ -292803,7 +302264,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -292880,7 +302341,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -293013,7 +302474,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -293170,7 +302631,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku",
"PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]",
@@ -293550,7 +303011,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku",
"PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]",
@@ -293737,7 +303198,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag",
"GenericTypeArguments": [],
@@ -294017,7 +303478,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag",
"GenericTypeArguments": [],
@@ -294263,7 +303724,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku",
"PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]",
@@ -294733,7 +304194,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku",
"PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]",
@@ -295049,7 +304510,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku",
"PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]",
@@ -295121,7 +304582,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku",
"PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]",
@@ -295249,7 +304710,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku",
"PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]",
@@ -295401,7 +304862,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -295835,7 +305296,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -295967,7 +305428,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule",
"GenericTypeArguments": [],
@@ -296152,7 +305613,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule",
"GenericTypeArguments": [],
@@ -296580,7 +306041,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -296656,7 +306117,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -296865,7 +306326,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -297122,7 +306583,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Communities": "System.Collections.Generic.List`1[System.String]",
"Access": "System.String",
@@ -297198,7 +306659,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -297336,7 +306797,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -297468,7 +306929,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Communities": "System.Collections.Generic.List`1[System.String]",
"Access": "System.String",
@@ -297836,7 +307297,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Communities": "System.Collections.Generic.List`1[System.String]",
"Access": "System.String",
@@ -297912,7 +307373,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -298068,7 +307529,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -298224,7 +307685,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -298300,7 +307761,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -298509,7 +307970,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -298766,7 +308227,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -298842,7 +308303,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -298992,7 +308453,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -299172,7 +308633,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -299552,7 +309013,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -299646,7 +309107,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition",
"GenericTypeArguments": [],
@@ -299781,7 +309242,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition",
"GenericTypeArguments": [],
@@ -300001,7 +309462,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -300407,7 +309868,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -300679,7 +310140,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -300773,7 +310234,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -300965,7 +310426,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -301173,7 +310634,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"serviceResources": "System.Collections.Generic.List`1[System.String]",
"Description": "System.String",
@@ -301250,7 +310711,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -301388,7 +310849,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -301520,7 +310981,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"serviceResources": "System.Collections.Generic.List`1[System.String]",
"Description": "System.String",
@@ -301841,7 +311302,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -301953,7 +311414,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"serviceResources": "System.Collections.Generic.List`1[System.String]",
"Description": "System.String",
@@ -302011,7 +311472,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -302149,7 +311610,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -302298,7 +311759,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -302423,7 +311884,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"serviceResources": "System.Collections.Generic.List`1[System.String]",
"Description": "System.String",
@@ -302487,7 +311948,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -302612,7 +312073,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -302744,7 +312205,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -302838,7 +312299,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -303030,7 +312491,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -303238,7 +312699,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -303314,7 +312775,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -303428,7 +312889,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -304080,7 +313541,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
"Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -304540,7 +314001,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -305116,7 +314577,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalAddressRanges": "System.String[]",
"RemoteAddressRanges": "System.String[]"
@@ -305348,7 +314809,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
"Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -305507,7 +314968,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -305585,7 +315046,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -305663,7 +315124,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -305806,7 +315267,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPeering",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig",
"MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig",
@@ -305955,7 +315416,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -305973,7 +315434,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy",
"GenericTypeArguments": [],
@@ -306185,7 +315646,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -306269,7 +315730,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -306353,7 +315814,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -306598,7 +316059,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -306622,7 +316083,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy",
"GenericTypeArguments": [],
@@ -306887,7 +316348,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -306971,7 +316432,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -307055,7 +316516,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -307300,7 +316761,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -307324,7 +316785,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy",
"GenericTypeArguments": [],
@@ -307467,7 +316928,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPeering",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig",
"MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig",
@@ -307648,7 +317109,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -307732,7 +317193,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -307816,7 +317277,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -308061,7 +317522,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -308085,7 +317546,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy",
"GenericTypeArguments": [],
@@ -309078,7 +318539,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"EndTime": "System.DateTime",
@@ -309185,7 +318646,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
"Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -309508,7 +318969,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
"Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -309905,7 +319366,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"EndTime": "System.DateTime",
@@ -310011,7 +319472,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
"Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -310333,7 +319794,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
"Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -310730,7 +320191,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
"Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -310815,7 +320276,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
"Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -310939,7 +320400,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -310957,7 +320418,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy",
"GenericTypeArguments": [],
@@ -311068,7 +320529,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
"Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -311210,7 +320671,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -311234,7 +320695,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy",
"GenericTypeArguments": [],
@@ -311374,7 +320835,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
"Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -311516,7 +320977,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -311540,7 +321001,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy",
"GenericTypeArguments": [],
@@ -311667,7 +321128,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -311746,7 +321207,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -311878,7 +321339,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -312009,7 +321470,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -312124,7 +321585,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -312348,7 +321809,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -312524,7 +321985,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -312643,7 +322104,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -312725,7 +322186,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -312908,7 +322369,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Thumbprint": "System.String",
"ProvisioningState": "System.String",
@@ -313227,7 +322688,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicCertData": "System.String",
"ProvisioningState": "System.String",
@@ -313787,7 +323248,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSGatewayRoute",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Weight": "System.Nullable`1[System.Int32]",
"LocalAddress": "System.String",
@@ -314108,7 +323569,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBGPPeerStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBGPPeerStatus, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBGPPeerStatus, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Asn": "System.Nullable`1[System.Int32]",
"RoutesReceived": "System.Nullable`1[System.Int64]",
@@ -314430,7 +323891,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -314687,7 +324148,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSGatewayRoute",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Weight": "System.Nullable`1[System.Int32]",
"LocalAddress": "System.String",
@@ -314966,7 +324427,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Thumbprint": "System.String",
"ProvisioningState": "System.String",
@@ -315243,7 +324704,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicCertData": "System.String",
"ProvisioningState": "System.String",
@@ -315520,7 +324981,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SaLifeTimeSeconds": "System.Int32",
"SaDataSizeKilobytes": "System.Int32",
@@ -316068,7 +325529,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -316616,7 +326077,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -316751,7 +326212,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration",
"GenericTypeArguments": [],
@@ -316883,7 +326344,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -316989,7 +326450,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate",
"GenericTypeArguments": [],
@@ -317007,7 +326468,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate",
"GenericTypeArguments": [],
@@ -317025,7 +326486,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -317420,7 +326881,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration",
"GenericTypeArguments": [],
@@ -317588,7 +327049,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -317712,7 +327173,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate",
"GenericTypeArguments": [],
@@ -317736,7 +327197,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate",
"GenericTypeArguments": [],
@@ -317760,7 +327221,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -318142,7 +327603,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration",
"GenericTypeArguments": [],
@@ -318310,7 +327771,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -318434,7 +327895,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate",
"GenericTypeArguments": [],
@@ -318458,7 +327919,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate",
"GenericTypeArguments": [],
@@ -318482,7 +327943,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -318792,7 +328253,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration",
"GenericTypeArguments": [],
@@ -318960,7 +328421,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -319084,7 +328545,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate",
"GenericTypeArguments": [],
@@ -319108,7 +328569,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate",
"GenericTypeArguments": [],
@@ -319132,7 +328593,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -319368,7 +328829,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration",
"GenericTypeArguments": [],
@@ -319536,7 +328997,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -319660,7 +329121,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate",
"GenericTypeArguments": [],
@@ -319684,7 +329145,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate",
"GenericTypeArguments": [],
@@ -319708,7 +329169,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -319951,7 +329412,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -320066,7 +329527,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -320197,7 +329658,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -320544,7 +330005,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -320663,7 +330124,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -320844,7 +330305,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VpnProfileSASUrl": "System.String"
},
@@ -321255,7 +330716,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Thumbprint": "System.String",
"ProvisioningState": "System.String",
@@ -321486,7 +330947,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicCertData": "System.String",
"ProvisioningState": "System.String",
@@ -321772,7 +331233,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -321999,7 +331460,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -322569,7 +332030,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -322648,7 +332109,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -322765,7 +332226,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -322900,7 +332361,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -322979,7 +332440,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -323114,7 +332575,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -323835,7 +333296,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -323914,7 +333375,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -324067,7 +333528,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -324250,7 +333711,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -324329,7 +333790,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -324478,7 +333939,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -324651,7 +334112,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -324730,7 +334191,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -324808,7 +334269,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -324913,7 +334374,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -325041,7 +334502,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -325113,7 +334574,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -325248,7 +334709,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SaLifeTimeSeconds": "System.Int32",
"SaDataSizeKilobytes": "System.Int32",
@@ -325344,7 +334805,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SaLifeTimeSeconds": "System.Int32",
"SaDataSizeKilobytes": "System.Int32",
@@ -325403,7 +334864,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -325586,7 +335047,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SaLifeTimeSeconds": "System.Int32",
"SaDataSizeKilobytes": "System.Int32",
@@ -325695,7 +335156,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -325827,7 +335288,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SaLifeTimeSeconds": "System.Int32",
"SaDataSizeKilobytes": "System.Int32",
@@ -326008,7 +335469,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SaLifeTimeSeconds": "System.Int32",
"SaDataSizeKilobytes": "System.Int32",
@@ -326128,7 +335589,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -326207,7 +335668,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -326321,7 +335782,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -326427,7 +335888,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate",
"GenericTypeArguments": [],
@@ -326445,7 +335906,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate",
"GenericTypeArguments": [],
@@ -326463,7 +335924,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -326754,7 +336215,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -326880,7 +336341,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -327004,7 +336465,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate",
"GenericTypeArguments": [],
@@ -327028,7 +336489,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate",
"GenericTypeArguments": [],
@@ -327052,7 +336513,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -327336,7 +336797,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -327462,7 +336923,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -327586,7 +337047,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate",
"GenericTypeArguments": [],
@@ -327610,7 +337071,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate",
"GenericTypeArguments": [],
@@ -327634,7 +337095,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -327942,7 +337403,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -328068,7 +337529,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -328192,7 +337653,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate",
"GenericTypeArguments": [],
@@ -328216,7 +337677,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate",
"GenericTypeArguments": [],
@@ -328240,7 +337701,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -328548,7 +338009,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -328674,7 +338135,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -328798,7 +338259,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate",
"GenericTypeArguments": [],
@@ -328822,7 +338283,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate",
"GenericTypeArguments": [],
@@ -328846,7 +338307,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -329106,7 +338567,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -329232,7 +338693,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -329356,7 +338817,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate",
"GenericTypeArguments": [],
@@ -329380,7 +338841,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate",
"GenericTypeArguments": [],
@@ -329404,7 +338865,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
"GenericTypeArguments": [],
@@ -329651,7 +339112,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
@@ -330023,7 +339484,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
@@ -330199,7 +339660,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PrivateLinkConnectionProperties": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation",
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
@@ -330312,7 +339773,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -330958,7 +340419,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PrivateLinkConnectionProperties": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation",
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
@@ -331059,7 +340520,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -331456,7 +340917,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
@@ -331920,7 +341381,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
@@ -332232,7 +341693,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
@@ -332300,7 +341761,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
@@ -332424,7 +341885,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
@@ -332572,7 +342033,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -333006,7 +342467,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -333174,7 +342635,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
"GenericTypeArguments": [],
@@ -333461,7 +342922,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
"GenericTypeArguments": [],
@@ -333680,7 +343141,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -333767,7 +343228,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -334013,7 +343474,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -334289,7 +343750,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -334935,7 +344396,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -335004,7 +344465,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -335129,7 +344590,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -335601,7 +345062,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -335677,7 +345138,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -335809,7 +345270,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -335965,7 +345426,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -336059,7 +345520,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -336170,7 +345631,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -336277,7 +345738,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -336375,7 +345836,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku",
"PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -336462,7 +345923,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
"GenericTypeArguments": [],
@@ -336480,7 +345941,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation",
"GenericTypeArguments": [],
@@ -336597,7 +346058,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -336726,7 +346187,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
"GenericTypeArguments": [],
@@ -336750,7 +346211,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation",
"GenericTypeArguments": [],
@@ -336964,7 +346425,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -337093,7 +346554,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
"GenericTypeArguments": [],
@@ -337117,7 +346578,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation",
"GenericTypeArguments": [],
@@ -337233,7 +346694,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -337328,7 +346789,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -337412,7 +346873,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku",
"PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -337511,7 +346972,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -337640,7 +347101,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
"GenericTypeArguments": [],
@@ -337664,7 +347125,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation",
"GenericTypeArguments": [],
@@ -337787,7 +347248,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -337937,7 +347398,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -338137,7 +347598,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -338311,7 +347772,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Actions": "System.Collections.Generic.List`1[System.String]",
"ProvisioningState": "System.String",
@@ -338387,7 +347848,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -338563,7 +348024,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -338733,7 +348194,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -338865,7 +348326,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -339021,7 +348482,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -339265,7 +348726,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -339433,7 +348894,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -339540,7 +349001,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -339638,7 +349099,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku",
"PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -339725,7 +349186,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
"GenericTypeArguments": [],
@@ -339743,7 +349204,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation",
"GenericTypeArguments": [],
@@ -339908,7 +349369,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
"GenericTypeArguments": [],
@@ -339932,7 +349393,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation",
"GenericTypeArguments": [],
@@ -340194,7 +349655,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
"GenericTypeArguments": [],
@@ -340218,7 +349679,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation",
"GenericTypeArguments": [],
@@ -340334,7 +349795,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -340429,7 +349890,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -340513,7 +349974,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku",
"PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -340660,7 +350121,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
"GenericTypeArguments": [],
@@ -340684,7 +350145,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation",
"GenericTypeArguments": [],
@@ -340807,7 +350268,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -340901,7 +350362,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -341039,7 +350500,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -341171,7 +350632,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -341265,7 +350726,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -341376,7 +350837,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -341483,7 +350944,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -341581,7 +351042,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku",
"PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -341668,7 +351129,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
"GenericTypeArguments": [],
@@ -341686,7 +351147,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation",
"GenericTypeArguments": [],
@@ -341803,7 +351264,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -341932,7 +351393,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
"GenericTypeArguments": [],
@@ -341956,7 +351417,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation",
"GenericTypeArguments": [],
@@ -342170,7 +351631,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -342299,7 +351760,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
"GenericTypeArguments": [],
@@ -342323,7 +351784,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation",
"GenericTypeArguments": [],
@@ -342439,7 +351900,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -342534,7 +351995,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -342618,7 +352079,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku",
"PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -342717,7 +352178,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -342846,7 +352307,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
"GenericTypeArguments": [],
@@ -342870,7 +352331,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation",
"GenericTypeArguments": [],
@@ -342993,7 +352454,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIPAddressAvailabilityResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPAddressAvailabilityResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPAddressAvailabilityResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Available": "System.Boolean",
"AvailableIPAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -343048,7 +352509,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -343216,7 +352677,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -343556,7 +353017,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"HostedGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]",
@@ -344202,7 +353663,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PeerIp": "System.String",
"ProvisioningState": "System.String",
@@ -344611,7 +354072,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"HostedGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]",
@@ -344735,7 +354196,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PeerIp": "System.String",
"ProvisioningState": "System.String",
@@ -345052,7 +354513,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PeerIp": "System.String",
"ProvisioningState": "System.String",
@@ -345423,7 +354884,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"HostedGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]",
@@ -345583,7 +355044,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PeerIp": "System.String",
"ProvisioningState": "System.String",
@@ -346088,7 +355549,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PeerIp": "System.String",
"ProvisioningState": "System.String",
@@ -346467,7 +355928,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"HostedGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]",
@@ -346625,7 +356086,997 @@
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceGroupName",
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RouterName",
+ "AliasList": [
+ "ResourceName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "VirtualRouterResourceIdParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "New",
+ "NounName": "AzVirtualRouter",
+ "Name": "New-AzVirtualRouter",
+ "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmVirtualRouter",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "HostedGatewayParameterSet",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Network.Models",
+ "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "HostedGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
+ "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]",
+ "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]",
+ "Tag": "System.Collections.Hashtable",
+ "ProvisioningState": "System.String",
+ "PeeringsText": "System.String",
+ "HostedGatewayText": "System.String",
+ "ResourceGroupName": "System.String",
+ "Location": "System.String",
+ "ResourceGuid": "System.String",
+ "Type": "System.String",
+ "TagsTable": "System.String",
+ "Name": "System.String",
+ "Etag": "System.String",
+ "Id": "System.String",
+ "VirtualRouterAsn": "System.UInt32"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Name",
+ "AliasList": [
+ "ResourceName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "HostedGateway",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Network.Models",
+ "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
+ "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
+ "GatewayDefaultSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
+ "Sku": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku",
+ "VpnClientConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration",
+ "EnableBgp": "System.Boolean",
+ "ActiveActive": "System.Boolean",
+ "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]",
+ "Tag": "System.Collections.Hashtable",
+ "Name": "System.String",
+ "TagsTable": "System.String",
+ "Type": "System.String",
+ "ResourceGuid": "System.String",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "CustomRoutesText": "System.String",
+ "GatewayDefaultSiteText": "System.String",
+ "VpnClientConfigurationText": "System.String",
+ "SkuText": "System.String",
+ "Etag": "System.String",
+ "IpConfigurationsText": "System.String",
+ "VpnGatewayGeneration": "System.String",
+ "ProvisioningState": "System.String",
+ "VpnType": "System.String",
+ "GatewayType": "System.String",
+ "BgpSettingsText": "System.String",
+ "Id": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "HostedGatewayId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Location",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Tag",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Force",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "ResourceName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Location",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Force",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "HostedGatewayParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "HostedGateway",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Network.Models",
+ "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
+ "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
+ "GatewayDefaultSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
+ "Sku": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku",
+ "VpnClientConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration",
+ "EnableBgp": "System.Boolean",
+ "ActiveActive": "System.Boolean",
+ "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]",
+ "Tag": "System.Collections.Hashtable",
+ "Name": "System.String",
+ "TagsTable": "System.String",
+ "Type": "System.String",
+ "ResourceGuid": "System.String",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "CustomRoutesText": "System.String",
+ "GatewayDefaultSiteText": "System.String",
+ "VpnClientConfigurationText": "System.String",
+ "SkuText": "System.String",
+ "Etag": "System.String",
+ "IpConfigurationsText": "System.String",
+ "VpnGatewayGeneration": "System.String",
+ "ProvisioningState": "System.String",
+ "VpnType": "System.String",
+ "GatewayType": "System.String",
+ "BgpSettingsText": "System.String",
+ "Id": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "ResourceName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Location",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Force",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "HostedGatewayIdParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "HostedGatewayId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -346640,7 +357091,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": true,
"Position": -2147483648,
@@ -346649,10 +357100,8 @@
},
{
"ParameterMetadata": {
- "Name": "RouterName",
- "AliasList": [
- "ResourceName"
- ],
+ "Name": "ResourceGroupName",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -346668,58 +357117,40 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
+ "Name": "Name",
"AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
+ "ResourceName"
],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
- "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
- },
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "VirtualRouterResourceIdParameterSet",
- "Parameters": [
+ "ValueFromPipelineByPropertyName": true
+ },
{
"ParameterMetadata": {
- "Name": "ResourceId",
+ "Name": "Location",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -346743,31 +357174,40 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "Tag",
+ "AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
- "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
- },
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Force",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -346779,12 +357219,31 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "__AllParameterSets",
- "Parameters": [
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -346830,74 +357289,25 @@
"AliasList": []
},
{
- "VerbName": "New",
+ "VerbName": "Remove",
"NounName": "AzVirtualRouter",
- "Name": "New-AzVirtualRouter",
- "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmVirtualRouter",
+ "Name": "Remove-AzVirtualRouter",
+ "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureVirtualRouterCommand",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "HostedGatewayParameterSet",
+ "DefaultParameterSetName": "VirtualRouterNameParameterSet",
"OutputTypes": [
{
"Type": {
- "Namespace": "Microsoft.Azure.Commands.Network.Models",
- "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
- "Properties": {
- "HostedGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
- "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]",
- "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]",
- "Tag": "System.Collections.Hashtable",
- "ProvisioningState": "System.String",
- "PeeringsText": "System.String",
- "HostedGatewayText": "System.String",
- "ResourceGroupName": "System.String",
- "Location": "System.String",
- "ResourceGuid": "System.String",
- "Type": "System.String",
- "TagsTable": "System.String",
- "Name": "System.String",
- "Etag": "System.String",
- "Id": "System.String",
- "VirtualRouterAsn": "System.UInt32"
- },
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
- },
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ParameterSets": [
"__AllParameterSets"
@@ -346924,7 +357334,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Name",
+ "Name": "RouterName",
"AliasList": [
"ResourceName"
],
@@ -346944,40 +357354,29 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "HostedGateway",
+ "Name": "InputObject",
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
- "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
- "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
- "GatewayDefaultSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
- "Sku": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku",
- "VpnClientConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration",
- "EnableBgp": "System.Boolean",
- "ActiveActive": "System.Boolean",
- "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]",
+ "HostedGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
+ "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]",
+ "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]",
"Tag": "System.Collections.Hashtable",
- "Name": "System.String",
- "TagsTable": "System.String",
- "Type": "System.String",
- "ResourceGuid": "System.String",
- "Location": "System.String",
+ "ProvisioningState": "System.String",
+ "PeeringsText": "System.String",
+ "HostedGatewayText": "System.String",
"ResourceGroupName": "System.String",
- "CustomRoutesText": "System.String",
- "GatewayDefaultSiteText": "System.String",
- "VpnClientConfigurationText": "System.String",
- "SkuText": "System.String",
+ "Location": "System.String",
+ "ResourceGuid": "System.String",
+ "Type": "System.String",
+ "TagsTable": "System.String",
+ "Name": "System.String",
"Etag": "System.String",
- "IpConfigurationsText": "System.String",
- "VpnGatewayGeneration": "System.String",
- "ProvisioningState": "System.String",
- "VpnType": "System.String",
- "GatewayType": "System.String",
- "BgpSettingsText": "System.String",
- "Id": "System.String"
+ "Id": "System.String",
+ "VirtualRouterAsn": "System.UInt32"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -347019,28 +357418,10 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "HostedGatewayId",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
{
- "Name": "Location",
+ "Name": "ResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -347058,12 +357439,12 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Tag",
+ "Name": "Force",
"AliasList": [],
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -347076,7 +357457,7 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "Force",
+ "Name": "AsJob",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -347094,7 +357475,7 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "AsJob",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -347147,7 +357528,7 @@
],
"ParameterSets": [
{
- "Name": "__AllParameterSets",
+ "Name": "VirtualRouterNameParameterSet",
"Parameters": [
{
"ParameterMetadata": {
@@ -347175,7 +357556,7 @@
},
{
"ParameterMetadata": {
- "Name": "Name",
+ "Name": "RouterName",
"AliasList": [
"ResourceName"
],
@@ -347201,36 +357582,12 @@
},
{
"ParameterMetadata": {
- "Name": "Location",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "Tag",
+ "Name": "Force",
"AliasList": [],
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -347245,11 +357602,11 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "AsJob",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -347273,7 +357630,7 @@
},
{
"ParameterMetadata": {
- "Name": "AsJob",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -347337,44 +357694,33 @@
]
},
{
- "Name": "HostedGatewayParameterSet",
+ "Name": "VirtualRouterInputObjectParameterSet",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "HostedGateway",
+ "Name": "InputObject",
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
- "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
- "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
- "GatewayDefaultSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
- "Sku": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku",
- "VpnClientConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration",
- "EnableBgp": "System.Boolean",
- "ActiveActive": "System.Boolean",
- "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]",
+ "HostedGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
+ "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]",
+ "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]",
"Tag": "System.Collections.Hashtable",
- "Name": "System.String",
- "TagsTable": "System.String",
- "Type": "System.String",
- "ResourceGuid": "System.String",
- "Location": "System.String",
+ "ProvisioningState": "System.String",
+ "PeeringsText": "System.String",
+ "HostedGatewayText": "System.String",
"ResourceGroupName": "System.String",
- "CustomRoutesText": "System.String",
- "GatewayDefaultSiteText": "System.String",
- "VpnClientConfigurationText": "System.String",
- "SkuText": "System.String",
+ "Location": "System.String",
+ "ResourceGuid": "System.String",
+ "Type": "System.String",
+ "TagsTable": "System.String",
+ "Name": "System.String",
"Etag": "System.String",
- "IpConfigurationsText": "System.String",
- "VpnGatewayGeneration": "System.String",
- "ProvisioningState": "System.String",
- "VpnType": "System.String",
- "GatewayType": "System.String",
- "BgpSettingsText": "System.String",
- "Id": "System.String"
+ "Id": "System.String",
+ "VirtualRouterAsn": "System.UInt32"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -347416,21 +357762,45 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": true,
"Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Force",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ResourceGroupName",
+ "Name": "AsJob",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -347440,19 +357810,85 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Name",
+ "Name": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
"AliasList": [
- "ResourceName"
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "VirtualRouterResourceIdParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceId",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -347475,12 +357911,12 @@
},
{
"ParameterMetadata": {
- "Name": "Location",
+ "Name": "Force",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -347490,21 +357926,21 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Tag",
+ "Name": "AsJob",
"AliasList": [],
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -347519,8 +357955,76 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
"Name": "Force",
@@ -347569,6 +358073,262 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "New",
+ "NounName": "AzDelegation",
+ "Name": "New-AzDelegation",
+ "ClassName": "Microsoft.Azure.Commands.Network.VirtualNetwork.Subnet.NewAzureDelegationCommand",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "SetByResource",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Network.Models",
+ "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Actions": "System.Collections.Generic.List`1[System.String]",
+ "ProvisioningState": "System.String",
+ "ServiceName": "System.String",
+ "Name": "System.String",
+ "Etag": "System.String",
+ "Id": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "Name",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ServiceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ServiceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -347603,93 +358363,314 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "HostedGatewayIdParameterSet",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "HostedGatewayId",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "SetByResource",
+ "Parameters": []
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Remove",
+ "NounName": "AzDelegation",
+ "Name": "Remove-AzDelegation",
+ "ClassName": "Microsoft.Azure.Commands.Network.VirtualNetwork.Subnet.RemoveAzureSubnetDelegation",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "__AllParameterSets",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Network.Models",
+ "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
+ "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
+ "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
+ "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]",
+ "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]",
+ "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]",
+ "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]",
+ "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]",
+ "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]",
+ "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]",
+ "AddressPrefix": "System.Collections.Generic.List`1[System.String]",
+ "Name": "System.String",
+ "DelegationsText": "System.String",
+ "PrivateEndpointsText": "System.String",
+ "ServiceEndpointPoliciesText": "System.String",
+ "ServiceEndpointText": "System.String",
+ "NatGatewayText": "System.String",
+ "RouteTableText": "System.String",
+ "PrivateLinkServiceNetworkPolicies": "System.String",
+ "ResourceNavigationLinksText": "System.String",
+ "ServiceAssociationLinksText": "System.String",
+ "IpConfigurationsText": "System.String",
+ "Etag": "System.String",
+ "PrivateEndpointNetworkPolicies": "System.String",
+ "ProvisioningState": "System.String",
+ "NetworkSecurityGroupText": "System.String",
+ "Id": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ShouldSerializeIpConfigurations",
+ "Parameters": [],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "ShouldSerializeServiceEndpointPolicies",
+ "Parameters": [],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "ShouldSerializeServiceEndpoints",
+ "Parameters": [],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "ShouldSerializeResourceNavigationLinks",
+ "Parameters": [],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "ShouldSerializePrivateEndpoints",
+ "Parameters": [],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "ShouldSerializeDelegations",
+ "Parameters": [],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "ShouldSerializeServiceAssociationLinks",
+ "Parameters": [],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "Name",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Subnet",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Network.Models",
+ "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
+ "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
+ "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
+ "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]",
+ "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]",
+ "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]",
+ "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]",
+ "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]",
+ "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]",
+ "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]",
+ "AddressPrefix": "System.Collections.Generic.List`1[System.String]",
+ "Name": "System.String",
+ "DelegationsText": "System.String",
+ "PrivateEndpointsText": "System.String",
+ "ServiceEndpointPoliciesText": "System.String",
+ "ServiceEndpointText": "System.String",
+ "NatGatewayText": "System.String",
+ "RouteTableText": "System.String",
+ "PrivateLinkServiceNetworkPolicies": "System.String",
+ "ResourceNavigationLinksText": "System.String",
+ "ServiceAssociationLinksText": "System.String",
+ "IpConfigurationsText": "System.String",
+ "Etag": "System.String",
+ "PrivateEndpointNetworkPolicies": "System.String",
+ "ProvisioningState": "System.String",
+ "NetworkSecurityGroupText": "System.String",
+ "Id": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ShouldSerializeIpConfigurations",
+ "Parameters": [],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "ShouldSerializeServiceEndpointPolicies",
+ "Parameters": [],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "ShouldSerializeServiceEndpoints",
+ "Parameters": [],
+ "ReturnType": "System.Boolean"
},
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "ResourceGroupName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ {
+ "Name": "ShouldSerializeResourceNavigationLinks",
+ "Parameters": [],
+ "ReturnType": "System.Boolean"
},
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "ResourceName"
+ {
+ "Name": "ShouldSerializePrivateEndpoints",
+ "Parameters": [],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "ShouldSerializeDelegations",
+ "Parameters": [],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "ShouldSerializeServiceAssociationLinks",
+ "Parameters": [],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ReturnType": "System.Boolean"
},
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "Location",
+ "Name": "Name",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -347713,74 +358694,121 @@
},
{
"ParameterMetadata": {
- "Name": "Tag",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "Force",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "AsJob",
+ "Name": "Subnet",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.Network.Models",
+ "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
+ "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
+ "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
+ "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]",
+ "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]",
+ "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]",
+ "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]",
+ "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]",
+ "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]",
+ "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]",
+ "AddressPrefix": "System.Collections.Generic.List`1[System.String]",
+ "Name": "System.String",
+ "DelegationsText": "System.String",
+ "PrivateEndpointsText": "System.String",
+ "ServiceEndpointPoliciesText": "System.String",
+ "ServiceEndpointText": "System.String",
+ "NatGatewayText": "System.String",
+ "RouteTableText": "System.String",
+ "PrivateLinkServiceNetworkPolicies": "System.String",
+ "ResourceNavigationLinksText": "System.String",
+ "ServiceAssociationLinksText": "System.String",
+ "IpConfigurationsText": "System.String",
+ "Etag": "System.String",
+ "PrivateEndpointNetworkPolicies": "System.String",
+ "ProvisioningState": "System.String",
+ "NetworkSecurityGroupText": "System.String",
+ "Id": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Methods": [
+ {
+ "Name": "ShouldSerializeIpConfigurations",
+ "Parameters": [],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "ShouldSerializeServiceEndpointPolicies",
+ "Parameters": [],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "ShouldSerializeServiceEndpoints",
+ "Parameters": [],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "ShouldSerializeResourceNavigationLinks",
+ "Parameters": [],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "ShouldSerializePrivateEndpoints",
+ "Parameters": [],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "ShouldSerializeDelegations",
+ "Parameters": [],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "ShouldSerializeServiceAssociationLinks",
+ "Parameters": [],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
@@ -347828,25 +358856,85 @@
"AliasList": []
},
{
- "VerbName": "Remove",
- "NounName": "AzVirtualRouter",
- "Name": "Remove-AzVirtualRouter",
- "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureVirtualRouterCommand",
+ "VerbName": "Disconnect",
+ "NounName": "AzVirtualNetworkGatewayVpnConnection",
+ "Name": "Disconnect-AzVirtualNetworkGatewayVpnConnection",
+ "ClassName": "Microsoft.Azure.Commands.Network.VirtualNetworkGateway.DisconnectVirtualNetworkGatewayVpnConnectionCommand",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "VirtualRouterNameParameterSet",
+ "DefaultParameterSetName": "ByFactoryName",
"OutputTypes": [
{
"Type": {
- "Namespace": "System",
- "Name": "System.Boolean",
- "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.Network.Models",
+ "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
+ "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
+ "GatewayDefaultSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
+ "Sku": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku",
+ "VpnClientConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration",
+ "EnableBgp": "System.Boolean",
+ "ActiveActive": "System.Boolean",
+ "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]",
+ "Tag": "System.Collections.Hashtable",
+ "Name": "System.String",
+ "TagsTable": "System.String",
+ "Type": "System.String",
+ "ResourceGuid": "System.String",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "CustomRoutesText": "System.String",
+ "GatewayDefaultSiteText": "System.String",
+ "VpnClientConfigurationText": "System.String",
+ "SkuText": "System.String",
+ "Etag": "System.String",
+ "IpConfigurationsText": "System.String",
+ "VpnGatewayGeneration": "System.String",
+ "ProvisioningState": "System.String",
+ "VpnType": "System.String",
+ "GatewayType": "System.String",
+ "BgpSettingsText": "System.String",
+ "Id": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
},
"ParameterSets": [
"__AllParameterSets"
@@ -347855,8 +358943,10 @@
],
"Parameters": [
{
- "Name": "ResourceGroupName",
- "AliasList": [],
+ "Name": "VirtualNetworkGatewayName",
+ "AliasList": [
+ "ResourceName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -347873,9 +358963,9 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "RouterName",
+ "Name": "ResourceId",
"AliasList": [
- "ResourceName"
+ "VirtualNetworkGatewayId"
],
"Type": {
"Namespace": "System",
@@ -347894,28 +358984,41 @@
},
{
"Name": "InputObject",
- "AliasList": [],
+ "AliasList": [
+ "VirtualNetworkGateway"
+ ],
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
- "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "HostedGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
- "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]",
- "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]",
+ "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
+ "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
+ "GatewayDefaultSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
+ "Sku": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku",
+ "VpnClientConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration",
+ "EnableBgp": "System.Boolean",
+ "ActiveActive": "System.Boolean",
+ "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]",
"Tag": "System.Collections.Hashtable",
- "ProvisioningState": "System.String",
- "PeeringsText": "System.String",
- "HostedGatewayText": "System.String",
- "ResourceGroupName": "System.String",
- "Location": "System.String",
- "ResourceGuid": "System.String",
- "Type": "System.String",
- "TagsTable": "System.String",
"Name": "System.String",
+ "TagsTable": "System.String",
+ "Type": "System.String",
+ "ResourceGuid": "System.String",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "CustomRoutesText": "System.String",
+ "GatewayDefaultSiteText": "System.String",
+ "VpnClientConfigurationText": "System.String",
+ "SkuText": "System.String",
"Etag": "System.String",
- "Id": "System.String",
- "VirtualRouterAsn": "System.UInt32"
+ "IpConfigurationsText": "System.String",
+ "VpnGatewayGeneration": "System.String",
+ "ProvisioningState": "System.String",
+ "VpnType": "System.String",
+ "GatewayType": "System.String",
+ "BgpSettingsText": "System.String",
+ "Id": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -347960,7 +359063,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "ResourceId",
+ "Name": "ResourceGroupName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -347978,14 +359081,14 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Force",
+ "Name": "VpnConnectionId",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
- "ElementType": null,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -347993,7 +359096,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
{
"Name": "AsJob",
@@ -348067,12 +359170,14 @@
],
"ParameterSets": [
{
- "Name": "VirtualRouterNameParameterSet",
+ "Name": "ByFactoryName",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceGroupName",
- "AliasList": [],
+ "Name": "VirtualNetworkGatewayName",
+ "AliasList": [
+ "ResourceName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -348095,10 +359200,8 @@
},
{
"ParameterMetadata": {
- "Name": "RouterName",
- "AliasList": [
- "ResourceName"
- ],
+ "Name": "ResourceGroupName",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -348121,14 +359224,14 @@
},
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "VpnConnectionId",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
- "ElementType": null,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -348136,9 +359239,9 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -348233,70 +359336,23 @@
]
},
{
- "Name": "VirtualRouterInputObjectParameterSet",
+ "Name": "ByResourceId",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
- "AliasList": [],
+ "Name": "ResourceId",
+ "AliasList": [
+ "VirtualNetworkGatewayId"
+ ],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.Network.Models",
- "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
- "Properties": {
- "HostedGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
- "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]",
- "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]",
- "Tag": "System.Collections.Hashtable",
- "ProvisioningState": "System.String",
- "PeeringsText": "System.String",
- "HostedGatewayText": "System.String",
- "ResourceGroupName": "System.String",
- "Location": "System.String",
- "ResourceGuid": "System.String",
- "Type": "System.String",
- "TagsTable": "System.String",
- "Name": "System.String",
- "Etag": "System.String",
- "Id": "System.String",
- "VirtualRouterAsn": "System.UInt32"
- },
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
- },
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
@@ -348305,19 +359361,19 @@
},
"Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "VpnConnectionId",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
- "ElementType": null,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -348325,9 +359381,9 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -348422,158 +359478,104 @@
]
},
{
- "Name": "VirtualRouterResourceIdParameterSet",
+ "Name": "ByFactoryObject",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceId",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "Force",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "AsJob",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "PassThru",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DefaultProfile",
+ "Name": "InputObject",
"AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
+ "VirtualNetworkGateway"
],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "Microsoft.Azure.Commands.Network.Models",
+ "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
- "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
+ "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
+ "GatewayDefaultSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
+ "Sku": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku",
+ "VpnClientConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration",
+ "EnableBgp": "System.Boolean",
+ "ActiveActive": "System.Boolean",
+ "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]",
+ "Tag": "System.Collections.Hashtable",
+ "Name": "System.String",
+ "TagsTable": "System.String",
+ "Type": "System.String",
+ "ResourceGuid": "System.String",
+ "Location": "System.String",
+ "ResourceGroupName": "System.String",
+ "CustomRoutesText": "System.String",
+ "GatewayDefaultSiteText": "System.String",
+ "VpnClientConfigurationText": "System.String",
+ "SkuText": "System.String",
+ "Etag": "System.String",
+ "IpConfigurationsText": "System.String",
+ "VpnGatewayGeneration": "System.String",
+ "ProvisioningState": "System.String",
+ "VpnType": "System.String",
+ "GatewayType": "System.String",
+ "BgpSettingsText": "System.String",
+ "Id": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
"Methods": [
{
- "Name": "Clear",
+ "Name": "ToString",
"Parameters": [],
- "ReturnType": "System.Void"
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
}
],
- "Constructors": []
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
"Position": -2147483648,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "__AllParameterSets",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "VpnConnectionId",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
- "ElementType": null,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -348581,9 +359583,9 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -348676,547 +359678,20 @@
"ValueFromPipelineByPropertyName": false
}
]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "New",
- "NounName": "AzDelegation",
- "Name": "New-AzDelegation",
- "ClassName": "Microsoft.Azure.Commands.Network.VirtualNetwork.Subnet.NewAzureDelegationCommand",
- "SupportsShouldProcess": false,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "SetByResource",
- "OutputTypes": [
- {
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Network.Models",
- "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
- "Properties": {
- "Actions": "System.Collections.Generic.List`1[System.String]",
- "ProvisioningState": "System.String",
- "ServiceName": "System.String",
- "Name": "System.String",
- "Etag": "System.String",
- "Id": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
- },
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
- },
- "ParameterSets": [
- "__AllParameterSets"
- ]
- }
- ],
- "Parameters": [
- {
- "Name": "Name",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "ServiceName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
- "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- }
- ],
- "ParameterSets": [
- {
- "Name": "__AllParameterSets",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "Name",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "ServiceName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
- "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- }
- ]
},
- {
- "Name": "SetByResource",
- "Parameters": []
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "Remove",
- "NounName": "AzDelegation",
- "Name": "Remove-AzDelegation",
- "ClassName": "Microsoft.Azure.Commands.Network.VirtualNetwork.Subnet.RemoveAzureSubnetDelegation",
- "SupportsShouldProcess": false,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "__AllParameterSets",
- "OutputTypes": [
- {
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Network.Models",
- "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
- "Properties": {
- "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
- "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]",
- "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]",
- "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]",
- "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]",
- "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]",
- "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]",
- "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]",
- "AddressPrefix": "System.Collections.Generic.List`1[System.String]",
- "Name": "System.String",
- "DelegationsText": "System.String",
- "PrivateEndpointsText": "System.String",
- "ServiceEndpointPoliciesText": "System.String",
- "ServiceEndpointText": "System.String",
- "NatGatewayText": "System.String",
- "RouteTableText": "System.String",
- "PrivateLinkServiceNetworkPolicies": "System.String",
- "ResourceNavigationLinksText": "System.String",
- "ServiceAssociationLinksText": "System.String",
- "IpConfigurationsText": "System.String",
- "Etag": "System.String",
- "PrivateEndpointNetworkPolicies": "System.String",
- "ProvisioningState": "System.String",
- "NetworkSecurityGroupText": "System.String",
- "Id": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ShouldSerializeIpConfigurations",
- "Parameters": [],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "ShouldSerializeServiceEndpointPolicies",
- "Parameters": [],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "ShouldSerializeServiceEndpoints",
- "Parameters": [],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "ShouldSerializeResourceNavigationLinks",
- "Parameters": [],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "ShouldSerializePrivateEndpoints",
- "Parameters": [],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "ShouldSerializeDelegations",
- "Parameters": [],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "ShouldSerializeServiceAssociationLinks",
- "Parameters": [],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
- },
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
- },
- "ParameterSets": [
- "__AllParameterSets"
- ]
- }
- ],
- "Parameters": [
- {
- "Name": "Name",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "Subnet",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Network.Models",
- "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
- "Properties": {
- "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
- "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]",
- "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]",
- "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]",
- "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]",
- "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]",
- "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]",
- "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]",
- "AddressPrefix": "System.Collections.Generic.List`1[System.String]",
- "Name": "System.String",
- "DelegationsText": "System.String",
- "PrivateEndpointsText": "System.String",
- "ServiceEndpointPoliciesText": "System.String",
- "ServiceEndpointText": "System.String",
- "NatGatewayText": "System.String",
- "RouteTableText": "System.String",
- "PrivateLinkServiceNetworkPolicies": "System.String",
- "ResourceNavigationLinksText": "System.String",
- "ServiceAssociationLinksText": "System.String",
- "IpConfigurationsText": "System.String",
- "Etag": "System.String",
- "PrivateEndpointNetworkPolicies": "System.String",
- "ProvisioningState": "System.String",
- "NetworkSecurityGroupText": "System.String",
- "Id": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ShouldSerializeIpConfigurations",
- "Parameters": [],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "ShouldSerializeServiceEndpointPolicies",
- "Parameters": [],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "ShouldSerializeServiceEndpoints",
- "Parameters": [],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "ShouldSerializeResourceNavigationLinks",
- "Parameters": [],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "ShouldSerializePrivateEndpoints",
- "Parameters": [],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "ShouldSerializeDelegations",
- "Parameters": [],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "ShouldSerializeServiceAssociationLinks",
- "Parameters": [],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
- },
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
- "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- }
- ],
- "ParameterSets": [
{
"Name": "__AllParameterSets",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Name",
+ "Name": "VpnConnectionId",
"AliasList": [],
"Type": {
"Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
- "ElementType": null,
+ "ElementType": "System.String",
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -349229,125 +359704,54 @@
"Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Subnet",
+ "Name": "AsJob",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.Network.Models",
- "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
- "Properties": {
- "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
- "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]",
- "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]",
- "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]",
- "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]",
- "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]",
- "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]",
- "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]",
- "AddressPrefix": "System.Collections.Generic.List`1[System.String]",
- "Name": "System.String",
- "DelegationsText": "System.String",
- "PrivateEndpointsText": "System.String",
- "ServiceEndpointPoliciesText": "System.String",
- "ServiceEndpointText": "System.String",
- "NatGatewayText": "System.String",
- "RouteTableText": "System.String",
- "PrivateLinkServiceNetworkPolicies": "System.String",
- "ResourceNavigationLinksText": "System.String",
- "ServiceAssociationLinksText": "System.String",
- "IpConfigurationsText": "System.String",
- "Etag": "System.String",
- "PrivateEndpointNetworkPolicies": "System.String",
- "ProvisioningState": "System.String",
- "NetworkSecurityGroupText": "System.String",
- "Id": "System.String"
- },
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ShouldSerializeIpConfigurations",
- "Parameters": [],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "ShouldSerializeServiceEndpointPolicies",
- "Parameters": [],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "ShouldSerializeServiceEndpoints",
- "Parameters": [],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "ShouldSerializeResourceNavigationLinks",
- "Parameters": [],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "ShouldSerializePrivateEndpoints",
- "Parameters": [],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "ShouldSerializeDelegations",
- "Parameters": [],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "ShouldSerializeServiceAssociationLinks",
- "Parameters": [],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
- },
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
- "ValueFromPipeline": true,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
@@ -349408,7 +359812,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VpnProfileSASUrl": "System.String"
},
@@ -349639,7 +360043,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SaLifeTimeSeconds": "System.Int32",
"SaDataSizeKilobytes": "System.Int32",
@@ -349877,7 +360281,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealthDetail",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealthDetail, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealthDetail, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VpnConnectionDuration": "System.Nullable`1[System.Int64]",
"MaxBandwidth": "System.Nullable`1[System.Int64]",
@@ -349983,7 +360387,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -350350,7 +360754,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -350577,7 +360981,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"EndTime": "System.DateTime",
@@ -350684,7 +361088,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -351001,7 +361405,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -351392,7 +361796,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"EndTime": "System.DateTime",
@@ -351499,7 +361903,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -351816,7 +362220,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -352207,7 +362611,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTcpConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTcpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTcpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableTraceRoute": "System.Nullable`1[System.Boolean]",
"Port": "System.Nullable`1[System.Int32]"
@@ -352257,7 +362661,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorHttpConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorHttpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorHttpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RequestHeaders": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHTTPHeader]",
"ValidStatusCodeRanges": "System.Collections.Generic.List`1[System.String]",
@@ -352313,7 +362717,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorIcmpConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorIcmpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorIcmpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableTraceRoute": "System.Nullable`1[System.Boolean]"
},
@@ -353062,7 +363466,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Header": "System.Collections.IDictionary",
"ValidStatusCode": "System.Int32[]",
@@ -353376,7 +363780,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"EnableInternetSecurity": "System.Boolean",
@@ -353487,7 +363891,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -353758,7 +364162,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -354076,7 +364480,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"EnableInternetSecurity": "System.Boolean",
@@ -354227,7 +364631,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"EnableInternetSecurity": "System.Boolean",
@@ -354331,7 +364735,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -354450,7 +364854,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection",
"GenericTypeArguments": [],
@@ -354671,7 +365075,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -354814,7 +365218,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection",
"GenericTypeArguments": [],
@@ -355006,7 +365410,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -355149,7 +365553,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection",
"GenericTypeArguments": [],
@@ -355269,7 +365673,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"EnableInternetSecurity": "System.Boolean",
@@ -355391,7 +365795,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -355534,7 +365938,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection",
"GenericTypeArguments": [],
@@ -355700,7 +366104,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -355843,7 +366247,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection",
"GenericTypeArguments": [],
@@ -355968,7 +366372,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId",
"EnableInternetSecurity": "System.Boolean",
@@ -356067,7 +366471,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId",
@@ -356335,7 +366739,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration",
"VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId",
@@ -356654,7 +367058,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId",
"EnableInternetSecurity": "System.Boolean",
@@ -356794,7 +367198,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId",
"EnableInternetSecurity": "System.Boolean",
@@ -357354,7 +367758,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId",
"EnableInternetSecurity": "System.Boolean",
@@ -357711,7 +368115,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBastion",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]",
"Tag": "System.Collections.Hashtable",
@@ -357791,7 +368195,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Network.Models.PSBastion]",
- "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -358194,7 +368598,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBastion",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]",
"Tag": "System.Collections.Hashtable",
@@ -358319,7 +368723,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -358455,7 +368859,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -358808,7 +369212,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -358892,7 +369296,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -359118,7 +369522,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -359395,7 +369799,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -359674,7 +370078,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -360364,7 +370768,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
@@ -361118,7 +371522,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBastion",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]",
"Tag": "System.Collections.Hashtable",
@@ -361442,7 +371846,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBastion",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]",
"Tag": "System.Collections.Hashtable",
@@ -361840,7 +372244,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PsAvailableServiceAlias",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PsAvailableServiceAlias, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PsAvailableServiceAlias, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Id": "System.String",
@@ -362028,7 +372432,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAvailableDelegation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Actions": "System.Collections.Generic.List`1[System.String]",
"Name": "System.String",
@@ -362217,7 +372621,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSDdosProtectionPlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDdosProtectionPlan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDdosProtectionPlan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualNetworks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"Tag": "System.Collections.Hashtable",
@@ -362503,7 +372907,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSEndpointServiceResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEndpointServiceResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEndpointServiceResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Id": "System.String",
@@ -362690,7 +373094,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTag",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Values": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation]",
"Name": "System.String",
@@ -362880,7 +373284,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersList",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersList, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersList, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Countries": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry]",
"CountriesText": "System.String"
@@ -362934,7 +373338,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -363199,7 +373603,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -364192,7 +374596,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReport",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReport, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReport, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ProviderLocation": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLocation",
"ReachabilityReport": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem]",
@@ -364249,7 +374653,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -364568,7 +374972,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -365921,7 +376325,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkUsage",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkUsage, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkUsage, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "Microsoft.Azure.Commands.Network.Models.PSUsageName",
"CurrentValue": "System.Double",
@@ -366284,7 +376688,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MinCapacity": "System.Int32",
"MaxCapacity": "System.Nullable`1[System.Int32]"
@@ -366351,7 +376755,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Capacity": "System.Nullable`1[System.Int32]",
"Tier": "System.String",
@@ -366397,7 +376801,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]",
"CipherSuites": "System.Collections.Generic.List`1[System.String]",
@@ -366459,7 +376863,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enabled": "System.Boolean",
"DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]",
@@ -366513,7 +376917,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -366525,7 +376929,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Rules": "System.Collections.Generic.List`1[System.Int32]",
"RuleGroupName": "System.String",
@@ -366583,7 +376987,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -366595,7 +376999,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MatchVariable": "System.String",
"SelectorMatchOperator": "System.String",
@@ -366653,7 +377057,7 @@
"Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]",
"Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]",
@@ -366700,7 +377104,7 @@
"System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]",
- "AssemblyQualifiedName": "System.Collections.Generic.Dictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.Dictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -366713,7 +377117,7 @@
"Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PrincipalId": "System.String",
"ClientId": "System.String"
@@ -366875,7 +377279,7 @@
"Microsoft.Azure.Commands.Network.Models.PSResourceId": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Id": "System.String"
},
@@ -366919,7 +377323,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -366931,7 +377335,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Data": "System.String",
"ProvisioningState": "System.String",
@@ -366980,7 +377384,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -366992,7 +377396,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -367054,7 +377458,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -367066,7 +377470,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Fqdn": "System.String",
"IpAddress": "System.String"
@@ -367111,7 +377515,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -367123,7 +377527,7 @@
"Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PrivateLinkConnectionProperties": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation",
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
@@ -367210,7 +377614,7 @@
"Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Fqdns": "System.Collections.Generic.List`1[System.String]",
"RequiredMemberName": "System.String",
@@ -367256,7 +377660,7 @@
"Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
@@ -367324,7 +377728,7 @@
"Microsoft.Azure.Commands.Network.Models.PSIPConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
@@ -367377,7 +377781,7 @@
"Microsoft.Azure.Commands.Network.Models.PSSubnet": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
"NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -367482,7 +377886,7 @@
"Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
"SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -367563,7 +377967,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -367575,7 +377979,7 @@
"Microsoft.Azure.Commands.Network.Models.PSNetworkInterface": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
"NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup",
@@ -367660,7 +378064,7 @@
"Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsServers": "System.Collections.Generic.List`1[System.String]",
"AppliedDnsServers": "System.Collections.Generic.List`1[System.String]",
@@ -367710,7 +378114,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -367722,7 +378126,7 @@
"Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualNetworkTap": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap",
"ResourceGroupName": "System.String",
@@ -367772,7 +378176,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
"DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
@@ -367831,7 +378235,7 @@
"Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -367922,7 +378326,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -367944,7 +378348,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -367956,7 +378360,7 @@
"Microsoft.Azure.Commands.Network.Models.PSSecurityRule": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SourcePortRange": "System.Collections.Generic.IList`1[System.String]",
"DestinationPortRange": "System.Collections.Generic.IList`1[System.String]",
@@ -368028,7 +378432,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -368040,7 +378444,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"ProvisioningState": "System.String",
@@ -368093,7 +378497,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -368105,7 +378509,7 @@
"Microsoft.Azure.Commands.Network.Models.PSRouteTable": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisableBgpRoutePropagation": "System.Boolean",
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
@@ -368173,7 +378577,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -368185,7 +378589,7 @@
"Microsoft.Azure.Commands.Network.Models.PSRoute": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRoute",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressPrefix": "System.String",
"NextHopType": "System.String",
@@ -368235,7 +378639,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -368247,7 +378651,7 @@
"Microsoft.Azure.Commands.Network.Models.PSDelegation": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Actions": "System.Collections.Generic.List`1[System.String]",
"ProvisioningState": "System.String",
@@ -368296,7 +378700,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -368308,7 +378712,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -368320,7 +378724,7 @@
"Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
"NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]",
@@ -368396,7 +378800,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -368408,7 +378812,7 @@
"Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState",
"GroupIds": "System.Collections.Generic.List`1[System.String]",
@@ -368461,7 +378865,7 @@
"Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Status": "System.String",
"Description": "System.String",
@@ -368507,7 +378911,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -368519,7 +378923,7 @@
"Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LinkedResourceType": "System.String",
"Link": "System.String",
@@ -368568,7 +378972,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -368580,7 +378984,7 @@
"Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LinkedResourceType": "System.String",
"Link": "System.String",
@@ -368629,7 +379033,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -368641,7 +379045,7 @@
"Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Locations": "System.Collections.Generic.List`1[System.String]",
"Service": "System.String",
@@ -368687,7 +379091,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -368699,7 +379103,7 @@
"Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
"Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]",
@@ -368766,7 +379170,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -368778,7 +379182,7 @@
"Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"serviceResources": "System.Collections.Generic.List`1[System.String]",
"Description": "System.String",
@@ -368828,7 +379232,7 @@
"Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DomainNameLabel": "System.String",
"Fqdn": "System.String",
@@ -368874,7 +379278,7 @@
"Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String"
},
@@ -368918,7 +379322,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -368930,7 +379334,7 @@
"Microsoft.Azure.Commands.Network.Models.PSPublicIpTag": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpTagType": "System.String",
"Tag": "System.String"
@@ -368975,7 +379379,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -368987,7 +379391,7 @@
"Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]",
@@ -369050,7 +379454,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -369062,7 +379466,7 @@
"Microsoft.Azure.Commands.Network.Models.PSInboundNatRule": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
"FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -369129,7 +379533,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -369141,7 +379545,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -369153,7 +379557,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
"Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -369231,7 +379635,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enabled": "System.Boolean",
"DrainTimeoutInSec": "System.Int32"
@@ -369276,7 +379680,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -369288,7 +379692,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StatusCode": "System.String",
"CustomErrorPageUrl": "System.String"
@@ -369333,7 +379737,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -369345,7 +379749,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -369399,7 +379803,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -369411,7 +379815,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Port": "System.Int32",
"ProvisioningState": "System.String",
@@ -369460,7 +379864,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -369472,7 +379876,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -369533,7 +379937,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -369545,7 +379949,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"ProvisioningState": "System.String",
@@ -369595,7 +379999,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -369607,7 +380011,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch",
"PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]",
@@ -369666,7 +380070,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StatusCodes": "System.Collections.Generic.List`1[System.String]",
"Body": "System.String",
@@ -369712,7 +380116,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -369724,7 +380128,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -369783,7 +380187,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -369795,7 +380199,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"BackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -369856,7 +380260,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -369868,7 +380272,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
"ProvisioningState": "System.String",
@@ -369923,7 +380327,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -369935,7 +380339,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ActionSet": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet",
"Conditions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition]",
@@ -369985,7 +380389,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"UrlConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration",
"RequestHeaderConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]",
@@ -370034,7 +380438,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Reroute": "System.Boolean",
"ModifiedQueryString": "System.String",
@@ -370080,7 +380484,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -370092,7 +380496,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"HeaderName": "System.String",
"HeaderValue": "System.String"
@@ -370137,7 +380541,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -370149,7 +380553,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IgnoreCase": "System.Nullable`1[System.Boolean]",
"Negate": "System.Nullable`1[System.Boolean]",
@@ -370196,7 +380600,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -370208,7 +380612,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Password": "System.Security.SecureString",
"Data": "System.String",
@@ -370270,7 +380674,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -370282,7 +380686,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Data": "System.String",
"ProvisioningState": "System.String",
@@ -370331,7 +380735,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -370343,7 +380747,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -370400,7 +380804,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -370412,7 +380816,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"BackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -370649,7 +381053,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -370661,7 +381065,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup]",
"Tag": "System.Collections.Hashtable",
@@ -370718,7 +381122,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -370730,7 +381134,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule]",
"RuleGroupName": "System.String",
@@ -370777,7 +381181,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -370789,7 +381193,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RuleId": "System.Int32",
"Description": "System.String"
@@ -370834,7 +381238,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -370846,7 +381250,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool",
"BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings]",
@@ -370893,7 +381297,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -370905,7 +381309,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings",
"Servers": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer]",
@@ -370952,7 +381356,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -370964,7 +381368,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration",
"Address": "System.String",
@@ -371011,7 +381415,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]",
"ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]"
@@ -371056,7 +381460,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -371068,7 +381472,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MatchVariable": "System.String",
"SelectorMatchOperator": "System.String",
@@ -371114,7 +381518,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -371126,7 +381530,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RuleGroupOverrides": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride]",
"RuleSetVersion": "System.String",
@@ -371172,7 +381576,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -371184,7 +381588,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride]",
"RuleGroupName": "System.String"
@@ -371229,7 +381633,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -371241,7 +381645,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RuleId": "System.String",
"State": "System.String"
@@ -371286,7 +381690,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RequestBodyCheck": "System.Boolean",
"MaxRequestBodySizeInKb": "System.Int32",
@@ -371334,7 +381738,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -371346,7 +381750,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MatchConditions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition]",
"Priority": "System.Int32",
@@ -371395,7 +381799,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -371407,7 +381811,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MatchVariables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable]",
"MatchValues": "System.Collections.Generic.List`1[System.String]",
@@ -371458,7 +381862,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -371470,7 +381874,7 @@
"Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VariableName": "System.String",
"Selector": "System.String"
@@ -371515,7 +381919,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tag": "System.Collections.Hashtable",
"FqdnTagName": "System.String",
@@ -371568,7 +381972,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -371580,7 +381984,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ProtocolType": "System.String",
"Port": "System.UInt32"
@@ -371635,7 +382039,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -371647,7 +382051,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"RuleCollectionType": "System.String",
@@ -371693,7 +382097,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"RuleType": "System.String"
@@ -371804,7 +382208,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "System.String"
},
@@ -371848,7 +382252,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -371860,7 +382264,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Protocols": "System.Collections.Generic.List`1[System.String]",
"SourceAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -371929,7 +382333,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RuleCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection]",
"Name": "System.String",
@@ -371987,7 +382391,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -371999,7 +382403,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Protocols": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol]",
"SourceAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -372068,7 +382472,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -372080,7 +382484,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ProtocolType": "System.String",
"Port": "System.UInt32"
@@ -372140,7 +382544,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -372191,7 +382595,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Tier": "System.String"
@@ -372236,7 +382640,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FQDNs": "System.String[]",
"IpAddresses": "System.String[]"
@@ -372291,7 +382695,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -372303,7 +382707,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Action": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule]",
@@ -372384,7 +382788,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -372396,7 +382800,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -372408,7 +382812,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Action": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRCAction",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule]",
@@ -372489,7 +382893,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRCAction": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRCAction",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRCAction, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRCAction, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "System.String"
},
@@ -372533,7 +382937,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -372545,7 +382949,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Protocols": "System.Collections.Generic.List`1[System.String]",
"SourceAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -372613,7 +383017,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -372625,7 +383029,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Action": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule]",
@@ -372706,7 +383110,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureFirewall": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration",
"Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku",
@@ -372774,20 +383178,6 @@
],
"ReturnType": "System.Void"
},
- {
- "Name": "SetManagementIpConfiguration",
- "Parameters": [
- {
- "Name": "virtualNetwork",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "publicIpAddress",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Void"
- },
{
"Name": "RemovePublicIpAddress",
"Parameters": [
@@ -372985,7 +383375,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAddressSpace": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressPrefixes": "System.Collections.Generic.List`1[System.String]",
"AddressPrefixesText": "System.String"
@@ -373030,7 +383420,7 @@
"Microsoft.Azure.Commands.Network.Models.PSDhcpOptions": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DnsServers": "System.Collections.Generic.List`1[System.String]",
"DnsServersText": "System.String"
@@ -373075,7 +383465,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VirtualNetworkCommunity": "System.String",
"RegionalCommunity": "System.String"
@@ -373125,7 +383515,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -373137,7 +383527,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -373197,7 +383587,7 @@
"Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Id": "System.String"
},
@@ -373241,7 +383631,7 @@
"Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Bounds": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayPropertiesAutoScaleConfigurationBounds",
"BoundsText": "System.String"
@@ -373286,7 +383676,7 @@
"Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayPropertiesAutoScaleConfigurationBounds": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayPropertiesAutoScaleConfigurationBounds",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayPropertiesAutoScaleConfigurationBounds, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayPropertiesAutoScaleConfigurationBounds, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Min": "System.Int32",
"Max": "System.Int32"
@@ -373331,7 +383721,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVirtualHubId": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Id": "System.String"
},
@@ -373375,7 +383765,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -373387,7 +383777,7 @@
"Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId",
"EnableInternetSecurity": "System.Boolean",
@@ -373439,7 +383829,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]",
"Connections": "System.Collections.Generic.List`1[System.String]",
@@ -373488,7 +383878,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -373500,7 +383890,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressPrefixes": "System.Collections.Generic.List`1[System.String]",
"Destinations": "System.Collections.Generic.List`1[System.String]",
@@ -373549,7 +383939,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -373561,7 +383951,7 @@
"Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"EnableInternetSecurity": "System.Boolean",
@@ -373610,7 +384000,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -373622,7 +384012,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllocatedIpAddresses": "System.Collections.Generic.List`1[System.String]",
"VpnClientConnectionsCount": "System.Int32",
@@ -373670,7 +384060,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -373682,7 +384072,7 @@
"Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VpnClientAddressPool": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"ProvisioningState": "System.String",
@@ -373731,7 +384121,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AadTenant": "System.String",
"AadAudience": "System.String",
@@ -373777,7 +384167,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSClientCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSClientCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -373789,7 +384179,7 @@
"Microsoft.Azure.Commands.Network.Models.PSClientCertificate": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSClientCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Thumbprint": "System.String"
@@ -373834,7 +384224,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -373846,7 +384236,7 @@
"Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"PublicCertData": "System.String"
@@ -373891,7 +384281,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -373903,7 +384293,7 @@
"Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SALifeTimeSeconds": "System.Int32",
"SADataSizeKilobytes": "System.Int32",
@@ -373954,7 +384344,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVpnSite": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -374013,7 +384403,7 @@
"Microsoft.Azure.Commands.Network.Models.PSBgpSettings": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PeerWeight": "System.Nullable`1[System.Int32]",
"Asn": "System.Nullable`1[System.Int64]",
@@ -374071,7 +384461,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVpnSiteDeviceProperties": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteDeviceProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteDeviceProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteDeviceProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LinkSpeedInMbps": "System.Int32",
"DeviceVendor": "System.String",
@@ -374117,7 +384507,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -374129,7 +384519,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BgpProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings",
"LinkProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties",
@@ -374180,7 +384570,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Asn": "System.Nullable`1[System.Int64]",
"BgpPeeringAddress": "System.String"
@@ -374225,7 +384615,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LinkSpeedInMbps": "System.Int32",
"LinkProviderName": "System.String"
@@ -374270,7 +384660,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -374282,7 +384672,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VpnSiteLink": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"EnableBgp": "System.Boolean",
@@ -374341,7 +384731,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnConnection]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnConnection]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -374353,7 +384743,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVpnConnection": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"EnableInternetSecurity": "System.Boolean",
@@ -374413,7 +384803,7 @@
"Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Tier": "System.String",
@@ -374459,7 +384849,7 @@
"Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BandwidthInMbps": "System.Int32",
"PeeringLocation": "System.String",
@@ -374505,7 +384895,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -374517,7 +384907,7 @@
"Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AuthorizationKey": "System.String",
"AuthorizationUseStatus": "System.String",
@@ -374566,7 +384956,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -374578,7 +384968,7 @@
"Microsoft.Azure.Commands.Network.Models.PSPeering": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPeering",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig",
"MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig",
@@ -374647,7 +385037,7 @@
"Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig",
"RouteFilter": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
@@ -374700,7 +385090,7 @@
"Microsoft.Azure.Commands.Network.Models.PSPeeringConfig": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AdvertisedPublicPrefixes": "System.Collections.Generic.List`1[System.String]",
"AdvertisedCommunities": "System.Collections.Generic.List`1[System.String]",
@@ -374751,7 +385141,7 @@
"Microsoft.Azure.Commands.Network.Models.PSRouteFilter": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]",
"Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
@@ -374818,7 +385208,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -374830,7 +385220,7 @@
"Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Communities": "System.Collections.Generic.List`1[System.String]",
"Access": "System.String",
@@ -374879,7 +385269,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -374891,7 +385281,7 @@
"Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PeerExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -374945,7 +385335,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -374957,7 +385347,7 @@
"Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PeerExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -375024,7 +385414,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -375036,7 +385426,7 @@
"Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MacSecConfig": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLinkMacSecConfig",
"RouterName": "System.String",
@@ -375091,7 +385481,7 @@
"Microsoft.Azure.Commands.Network.Models.PSExpressRouteLinkMacSecConfig": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLinkMacSecConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLinkMacSecConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLinkMacSecConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CknSecretIdentifier": "System.String",
"CakSecretIdentifier": "System.String",
@@ -375137,7 +385527,7 @@
"Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Id": "System.String"
},
@@ -375181,7 +385571,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -375193,7 +385583,7 @@
"Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig",
"MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig",
@@ -375256,7 +385646,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -375268,7 +385658,7 @@
"Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ValueInGbps": "System.Nullable`1[System.Int32]",
"OfferName": "System.String"
@@ -375313,7 +385703,7 @@
"Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String"
},
@@ -375357,7 +385747,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -375369,7 +385759,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -375381,7 +385771,7 @@
"Microsoft.Azure.Commands.Network.Models.PSInboundNatPool": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendPortRangeStart": "System.Int32",
@@ -375452,7 +385842,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -375464,7 +385854,7 @@
"Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -375535,7 +385925,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -375547,7 +385937,7 @@
"Microsoft.Azure.Commands.Network.Models.PSOutboundRule": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
@@ -375607,7 +385997,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -375619,7 +386009,7 @@
"Microsoft.Azure.Commands.Network.Models.PSProbe": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSProbe",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]",
"Port": "System.Int32",
@@ -375693,7 +386083,7 @@
"Microsoft.Azure.Commands.Network.Models.PSIpGroup": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]",
"IpAddresses": "System.Collections.Generic.List`1[System.String]",
@@ -375748,7 +386138,7 @@
"Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String"
},
@@ -375792,7 +386182,7 @@
"Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroupAssociation": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroupAssociation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroupAssociation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroupAssociation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkInterface": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -375852,7 +386242,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -375864,7 +386254,7 @@
"Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SourcePortRange": "System.Collections.Generic.IList`1[System.String]",
"DestinationPortRange": "System.Collections.Generic.IList`1[System.String]",
@@ -375918,7 +386308,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -375930,7 +386320,7 @@
"Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Container": "Microsoft.Azure.Commands.Network.Models.PSContainer",
"ContainerNetworkInterfaceConfiguration": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration",
@@ -375983,7 +386373,7 @@
"Microsoft.Azure.Commands.Network.Models.PSContainer": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Id": "System.String"
},
@@ -376027,7 +386417,7 @@
"Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]",
"IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile]",
@@ -376078,7 +386468,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -376090,7 +386480,7 @@
"Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
"ProvisioningState": "System.String",
@@ -376139,7 +386529,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceIPConfiguration]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceIPConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -376151,7 +386541,7 @@
"Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceIPConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
@@ -376204,7 +386594,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -376216,7 +386606,7 @@
"Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorDestination": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorDestination",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorDestination, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorDestination, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Port": "System.Int32",
"Address": "System.String",
@@ -376262,7 +386652,7 @@
"Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorSource": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorSource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorSource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorSource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Port": "System.Nullable`1[System.Int32]",
"ResourceId": "System.String"
@@ -376342,7 +386732,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -376354,7 +386744,7 @@
"Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"WorkspaceSettings": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorWorkspaceSettings",
"Type": "System.String",
@@ -376400,7 +386790,7 @@
"Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorWorkspaceSettings": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorWorkspaceSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorWorkspaceSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorWorkspaceSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"WorkspaceResourceId": "System.String"
},
@@ -376444,7 +386834,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -376456,7 +386846,7 @@
"Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sources": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]",
"Destinations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]",
@@ -376507,7 +386897,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -376519,7 +386909,7 @@
"Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Filter": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilter",
"Name": "System.String",
@@ -376567,7 +386957,7 @@
"Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilter": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Items": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem]",
"Type": "System.String",
@@ -376613,7 +387003,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -376625,7 +387015,7 @@
"Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointFilterItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "System.String",
"Address": "System.String"
@@ -376670,7 +387060,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -376682,7 +387072,7 @@
"Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ProtocolConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration",
"SuccessThreshold": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorSuccessThreshold",
@@ -376732,7 +387122,7 @@
"Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -376774,7 +387164,7 @@
"Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorSuccessThreshold": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorSuccessThreshold",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorSuccessThreshold, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorSuccessThreshold, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ChecksFailedPercent": "System.Nullable`1[System.Int32]",
"RoundTripTimeMs": "System.Nullable`1[System.Int32]"
@@ -376819,7 +387209,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -376831,7 +387221,7 @@
"Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Hops": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -376880,7 +387270,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -376892,7 +387282,7 @@
"Microsoft.Azure.Commands.Network.Models.PSConnectivityHop": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectivityHop",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectivityHop, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectivityHop, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Issues": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue]",
"NextHopIds": "System.Collections.Generic.List`1[System.String]",
@@ -376942,7 +387332,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -376954,7 +387344,7 @@
"Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Context": "System.Collections.Generic.List`1[System.Collections.Generic.Dictionary`2[System.String,System.String]]",
"Origin": "System.String",
@@ -377013,7 +387403,7 @@
"Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Version": "System.Nullable`1[System.Int32]",
"Type": "System.String"
@@ -377058,7 +387448,7 @@
"Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enabled": "System.Nullable`1[System.Boolean]",
"Days": "System.Nullable`1[System.Int32]"
@@ -377103,7 +387493,7 @@
"Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsProperties": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"NetworkWatcherFlowAnalyticsConfiguration": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsConfigurationProperties"
},
@@ -377152,7 +387542,7 @@
"Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsConfigurationProperties": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsConfigurationProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsConfigurationProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsConfigurationProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enabled": "System.Boolean",
"TrafficAnalyticsInterval": "System.Nullable`1[System.Int32]",
@@ -377205,7 +387595,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -377217,7 +387607,7 @@
"Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"EffectiveSecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule]",
"NetworkInterfaceSecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]",
@@ -377269,7 +387659,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTopologyResource]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTopologyResource]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTopologyResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTopologyResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -377281,7 +387671,7 @@
"Microsoft.Azure.Commands.Network.Models.PSTopologyResource": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTopologyResource",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopologyResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopologyResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Associations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation]",
"Name": "System.String",
@@ -377329,7 +387719,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -377341,7 +387731,7 @@
"Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AssociationType": "System.String",
"Name": "System.String",
@@ -377387,7 +387777,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -377399,7 +387789,7 @@
"Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RecommendedActions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions]",
"Id": "System.String",
@@ -377448,7 +387838,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -377460,7 +387850,7 @@
"Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ActionId": "System.String",
"ActionText": "System.String",
@@ -377507,7 +387897,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -377519,7 +387909,7 @@
"Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Profile": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile",
"NetworkSecurityGroupResult": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroupResult"
@@ -377564,7 +387954,7 @@
"Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Direction": "System.String",
"Protocol": "System.String",
@@ -377612,7 +388002,7 @@
"Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroupResult": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroupResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroupResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroupResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"EvaluatedNetworkSecurityGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup]",
"SecurityRuleAccessResult": "System.String",
@@ -377658,7 +388048,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -377670,7 +388060,7 @@
"Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MatchedRule": "Microsoft.Azure.Commands.Network.Models.PSMatchedRule",
"RulesEvaluationResult": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult]",
@@ -377718,7 +388108,7 @@
"Microsoft.Azure.Commands.Network.Models.PSMatchedRule": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSMatchedRule",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSMatchedRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSMatchedRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RuleName": "System.String",
"Action": "System.String"
@@ -377763,7 +388153,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -377775,7 +388165,7 @@
"Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ProtocolMatched": "System.Boolean",
"SourceMatched": "System.Boolean",
@@ -377824,7 +388214,7 @@
"Microsoft.Azure.Commands.Network.Models.PSStorageLocation": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSStorageLocation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSStorageLocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSStorageLocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StorageId": "System.String",
"StoragePath": "System.String",
@@ -377870,7 +388260,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -377882,7 +388272,7 @@
"Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Protocol": "System.String",
"RemoteIPAddress": "System.String",
@@ -377952,7 +388342,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -377984,7 +388374,7 @@
"Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Subscriptions": "System.Collections.Generic.List`1[System.String]",
"SubscriptionsText": "System.String"
@@ -378029,7 +388419,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -378041,7 +388431,7 @@
"Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint",
"PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState",
@@ -378093,7 +388483,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -378105,7 +388495,7 @@
"Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress",
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet",
@@ -378160,7 +388550,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpCommunity]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpCommunity]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSBgpCommunity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSBgpCommunity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -378172,7 +388562,7 @@
"Microsoft.Azure.Commands.Network.Models.PSBgpCommunity": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBgpCommunity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpCommunity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpCommunity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsAuthorizedToUse": "System.Boolean",
"CommunityPrefixes": "System.Collections.Generic.List`1[System.String]",
@@ -378222,7 +388612,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -378234,7 +388624,7 @@
"Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ValueInMbps": "System.Int32",
"OfferName": "System.String"
@@ -378279,7 +388669,7 @@
"Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String"
},
@@ -378323,7 +388713,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -378335,7 +388725,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -378347,7 +388737,7 @@
"Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpTagType": "System.String",
"Tag": "System.String"
@@ -378392,7 +388782,7 @@
"Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -378450,7 +388840,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings",
@@ -378520,7 +388910,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Capacity": "System.Int32",
"Name": "System.String",
@@ -378566,7 +388956,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"VpnClientAddressPool": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace",
"VpnClientIpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]",
@@ -378624,7 +389014,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -378636,7 +389026,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Thumbprint": "System.String",
"ProvisioningState": "System.String",
@@ -378684,7 +389074,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -378696,7 +389086,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PublicCertData": "System.String",
"ProvisioningState": "System.String",
@@ -378744,7 +389134,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -378756,7 +389146,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -378808,7 +389198,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -378820,7 +389210,7 @@
"Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LocalAddressRanges": "System.String[]",
"RemoteAddressRanges": "System.String[]"
@@ -378865,7 +389255,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -378877,7 +389267,7 @@
"Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IngressBytesTransferred": "System.Nullable`1[System.Int64]",
"EgressBytesTransferred": "System.Nullable`1[System.Int64]",
@@ -378925,7 +389315,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -378937,7 +389327,7 @@
"Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PeerIp": "System.String",
"ProvisioningState": "System.String",
@@ -378987,7 +389377,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHTTPHeader]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHTTPHeader]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSHTTPHeader, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSHTTPHeader, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -378999,7 +389389,7 @@
"Microsoft.Azure.Commands.Network.Models.PSHTTPHeader": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSHTTPHeader",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHTTPHeader, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHTTPHeader, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Name": "System.String",
"Value": "System.String"
@@ -379044,7 +389434,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -379056,7 +389446,7 @@
"Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
"PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId",
@@ -379106,7 +389496,7 @@
"Microsoft.Azure.Commands.Network.Models.PSBastion": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSBastion",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]",
"Tag": "System.Collections.Hashtable",
@@ -379181,7 +389571,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -379193,7 +389583,7 @@
"Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformationProperties",
"Id": "System.String",
@@ -379239,7 +389629,7 @@
"Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformationProperties": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformationProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformationProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformationProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AddressPrefixes": "System.Collections.Generic.List`1[System.String]",
"Region": "System.String",
@@ -379286,7 +389676,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -379298,7 +389688,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Providers": "System.Collections.Generic.IList`1[System.String]",
"States": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState]",
@@ -379345,7 +389735,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -379357,7 +389747,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Providers": "System.Collections.Generic.IList`1[System.String]",
"Cities": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity]",
@@ -379404,7 +389794,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -379416,7 +389806,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Providers": "System.Collections.Generic.IList`1[System.String]",
"CityName": "System.String"
@@ -379461,7 +389851,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLocation": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLocation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Country": "System.String",
"State": "System.String",
@@ -379507,7 +389897,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -379519,7 +389909,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Latencies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo]",
"Provider": "System.String",
@@ -379566,7 +389956,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -379578,7 +389968,7 @@
"Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TimeStamp": "System.Nullable`1[System.DateTime]",
"Score": "System.Nullable`1[System.Int32]"
@@ -379623,7 +390013,7 @@
"Microsoft.Azure.Commands.Network.Models.PSUsageName": {
"Namespace": "Microsoft.Azure.Commands.Network.Models",
"Name": "Microsoft.Azure.Commands.Network.Models.PSUsageName",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSUsageName, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.3.2.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSUsageName, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Value": "System.String",
"LocalizedValue": "System.String"
diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights.dll.json
index 7a1729405824..a51a46c928a5 100644
--- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights.dll.json
+++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights.dll.json
@@ -14,7 +14,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.PolicyInsights.Models",
"Name": "Microsoft.Azure.Commands.PolicyInsights.Models.PSPolicyMetadata",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.PSPolicyMetadata, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.PSPolicyMetadata, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Metadata": "System.Object",
"MetadataId": "System.String",
@@ -334,7 +334,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.PolicyInsights.Models",
"Name": "Microsoft.Azure.Commands.PolicyInsights.Models.PolicyEvent",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.PolicyEvent, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.PolicyEvent, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]",
"IsCompliant": "System.Nullable`1[System.Boolean]",
@@ -2793,7 +2793,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.PolicyInsights.Models",
"Name": "Microsoft.Azure.Commands.PolicyInsights.Models.PolicyState",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.PolicyState, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.PolicyState, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"PolicyEvaluationDetails": "Microsoft.Azure.Commands.PolicyInsights.Models.PolicyEvaluationDetails",
"AdditionalProperties": "System.Collections.Generic.IDictionary`2[System.String,System.Object]",
@@ -5505,7 +5505,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.PolicyInsights.Models",
"Name": "Microsoft.Azure.Commands.PolicyInsights.Models.PolicyStateSummary",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.PolicyStateSummary, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.PolicyStateSummary, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Results": "Microsoft.Azure.Commands.PolicyInsights.Models.SummaryResults",
"PolicyAssignments": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.PolicyInsights.Models.PolicyAssignmentSummary]"
@@ -7308,7 +7308,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation",
"Name": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediation, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediation, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Deployments": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediationDeployment[]",
"DeploymentSummary": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediationDeploymentSummary",
@@ -8474,7 +8474,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation",
"Name": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediation, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediation, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Deployments": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediationDeployment[]",
"DeploymentSummary": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediationDeploymentSummary",
@@ -8993,7 +8993,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation",
"Name": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediation, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediation, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Deployments": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediationDeployment[]",
"DeploymentSummary": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediationDeploymentSummary",
@@ -9310,7 +9310,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation",
"Name": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediation, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediation, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Deployments": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediationDeployment[]",
"DeploymentSummary": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediationDeploymentSummary",
@@ -10348,7 +10348,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation",
"Name": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediation, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediation, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Deployments": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediationDeployment[]",
"DeploymentSummary": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediationDeploymentSummary",
@@ -10801,7 +10801,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation",
"Name": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediation, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediation, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Deployments": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediationDeployment[]",
"DeploymentSummary": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediationDeploymentSummary",
@@ -11458,7 +11458,7 @@
"Microsoft.Azure.Commands.PolicyInsights.Models.PolicyEvaluationDetails": {
"Namespace": "Microsoft.Azure.Commands.PolicyInsights.Models",
"Name": "Microsoft.Azure.Commands.PolicyInsights.Models.PolicyEvaluationDetails",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.PolicyEvaluationDetails, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.PolicyEvaluationDetails, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IfNotExistsDetails": "Microsoft.Azure.Commands.PolicyInsights.Models.IfNotExistsEvaluationDetails",
"EvaluatedExpressions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.PolicyInsights.Models.ExpressionEvaluationDetails]"
@@ -11508,7 +11508,7 @@
"Microsoft.Azure.Commands.PolicyInsights.Models.IfNotExistsEvaluationDetails": {
"Namespace": "Microsoft.Azure.Commands.PolicyInsights.Models",
"Name": "Microsoft.Azure.Commands.PolicyInsights.Models.IfNotExistsEvaluationDetails",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.IfNotExistsEvaluationDetails, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.IfNotExistsEvaluationDetails, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TotalResources": "System.Nullable`1[System.Int32]",
"ResourceId": "System.String"
@@ -11570,7 +11570,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.PolicyInsights.Models.ExpressionEvaluationDetails]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.PolicyInsights.Models.ExpressionEvaluationDetails]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.PolicyInsights.Models.ExpressionEvaluationDetails, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.PolicyInsights.Models.ExpressionEvaluationDetails, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -11582,7 +11582,7 @@
"Microsoft.Azure.Commands.PolicyInsights.Models.ExpressionEvaluationDetails": {
"Namespace": "Microsoft.Azure.Commands.PolicyInsights.Models",
"Name": "Microsoft.Azure.Commands.PolicyInsights.Models.ExpressionEvaluationDetails",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.ExpressionEvaluationDetails, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.ExpressionEvaluationDetails, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Result": "System.String",
"Expression": "System.String",
@@ -11636,7 +11636,7 @@
"Microsoft.Azure.Commands.PolicyInsights.Models.SummaryResults": {
"Namespace": "Microsoft.Azure.Commands.PolicyInsights.Models",
"Name": "Microsoft.Azure.Commands.PolicyInsights.Models.SummaryResults",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.SummaryResults, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.SummaryResults, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.PolicyInsights.Models.ComplianceDetail]",
"PolicyDetails": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.PolicyInsights.Models.ComplianceDetail]",
@@ -11689,7 +11689,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.PolicyInsights.Models.ComplianceDetail]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.PolicyInsights.Models.ComplianceDetail]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.PolicyInsights.Models.ComplianceDetail, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.PolicyInsights.Models.ComplianceDetail, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -11701,7 +11701,7 @@
"Microsoft.Azure.Commands.PolicyInsights.Models.ComplianceDetail": {
"Namespace": "Microsoft.Azure.Commands.PolicyInsights.Models",
"Name": "Microsoft.Azure.Commands.PolicyInsights.Models.ComplianceDetail",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.ComplianceDetail, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.ComplianceDetail, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Count": "System.Nullable`1[System.Int32]",
"ComplianceState": "System.String"
@@ -11751,7 +11751,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.PolicyInsights.Models.PolicyAssignmentSummary]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.PolicyInsights.Models.PolicyAssignmentSummary]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.PolicyInsights.Models.PolicyAssignmentSummary, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.PolicyInsights.Models.PolicyAssignmentSummary, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -11763,7 +11763,7 @@
"Microsoft.Azure.Commands.PolicyInsights.Models.PolicyAssignmentSummary": {
"Namespace": "Microsoft.Azure.Commands.PolicyInsights.Models",
"Name": "Microsoft.Azure.Commands.PolicyInsights.Models.PolicyAssignmentSummary",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.PolicyAssignmentSummary, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.PolicyAssignmentSummary, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Results": "Microsoft.Azure.Commands.PolicyInsights.Models.SummaryResults",
"PolicyDefinitions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.PolicyInsights.Models.PolicyDefinitionSummary]",
@@ -11816,7 +11816,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.PolicyInsights.Models.PolicyDefinitionSummary]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.PolicyInsights.Models.PolicyDefinitionSummary]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.PolicyInsights.Models.PolicyDefinitionSummary, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.PolicyInsights.Models.PolicyDefinitionSummary, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -11828,7 +11828,7 @@
"Microsoft.Azure.Commands.PolicyInsights.Models.PolicyDefinitionSummary": {
"Namespace": "Microsoft.Azure.Commands.PolicyInsights.Models",
"Name": "Microsoft.Azure.Commands.PolicyInsights.Models.PolicyDefinitionSummary",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.PolicyDefinitionSummary, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.PolicyDefinitionSummary, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Results": "Microsoft.Azure.Commands.PolicyInsights.Models.SummaryResults",
"PolicyDefinitionGroupNames": "System.Collections.Generic.IList`1[System.String]",
@@ -11881,7 +11881,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.PolicyInsights.Models.PolicyGroupSummary]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.PolicyInsights.Models.PolicyGroupSummary]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.PolicyInsights.Models.PolicyGroupSummary, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.PolicyInsights.Models.PolicyGroupSummary, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -11893,7 +11893,7 @@
"Microsoft.Azure.Commands.PolicyInsights.Models.PolicyGroupSummary": {
"Namespace": "Microsoft.Azure.Commands.PolicyInsights.Models",
"Name": "Microsoft.Azure.Commands.PolicyInsights.Models.PolicyGroupSummary",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.PolicyGroupSummary, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.PolicyGroupSummary, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Results": "Microsoft.Azure.Commands.PolicyInsights.Models.SummaryResults",
"PolicyGroupName": "System.String"
@@ -11943,7 +11943,7 @@
"Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediationDeployment[]": {
"Namespace": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation",
"Name": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediationDeployment[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediationDeployment[], Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediationDeployment[], Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediationDeployment",
"GenericTypeArguments": [],
@@ -11953,7 +11953,7 @@
"Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediationDeployment": {
"Namespace": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation",
"Name": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediationDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediationDeployment, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediationDeployment, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Error": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSErrorDefinition",
"CreatedOn": "System.Nullable`1[System.DateTime]",
@@ -12008,7 +12008,7 @@
"Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSErrorDefinition": {
"Namespace": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation",
"Name": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSErrorDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSErrorDefinition, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSErrorDefinition, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Details": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSErrorDefinition]",
"AdditionalInfo": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSTypedErrorInfo]",
@@ -12061,7 +12061,7 @@
"System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSErrorDefinition]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSErrorDefinition]",
- "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSErrorDefinition, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSErrorDefinition, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -12073,7 +12073,7 @@
"System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSTypedErrorInfo]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSTypedErrorInfo]",
- "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSTypedErrorInfo, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSTypedErrorInfo, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -12085,7 +12085,7 @@
"Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSTypedErrorInfo": {
"Namespace": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation",
"Name": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSTypedErrorInfo",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSTypedErrorInfo, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSTypedErrorInfo, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Info": "System.Object",
"Type": "System.String"
@@ -12135,7 +12135,7 @@
"Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediationDeploymentSummary": {
"Namespace": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation",
"Name": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediationDeploymentSummary",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediationDeploymentSummary, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediationDeploymentSummary, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TotalDeployments": "System.Int32",
"SuccessfulDeployments": "System.Int32",
@@ -12186,7 +12186,7 @@
"Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediationFilter": {
"Namespace": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation",
"Name": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediationFilter",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediationFilter, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.PolicyInsights.Models.Remediation.PSRemediationFilter, Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights, Version=1.2.1.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Locations": "System.Collections.Generic.IEnumerable`1[System.String]"
},
diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.dll.json
index d71281658281..58c693e6e9c6 100644
--- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.dll.json
+++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.dll.json
@@ -6518,6 +6518,78 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
+ {
+ "Name": "InclusionDisksList",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": "System.String",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ExclusionDisksList",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": "System.String",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ResetExclusionSettings",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ExcludeAllDataDisks",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
{
"Name": "VaultId",
"AliasList": [],
@@ -6635,7 +6707,7 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -6756,6 +6828,78 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
+ {
+ "ParameterMetadata": {
+ "Name": "InclusionDisksList",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": "System.String",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ExclusionDisksList",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": "System.String",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ExcludeAllDataDisks",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "Policy",
@@ -6817,7 +6961,7 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -6938,6 +7082,78 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
+ {
+ "ParameterMetadata": {
+ "Name": "InclusionDisksList",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": "System.String",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ExclusionDisksList",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": "System.String",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ExcludeAllDataDisks",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "Policy",
@@ -6999,7 +7215,7 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -7181,7 +7397,7 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -7396,7 +7612,7 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -7554,67 +7770,163 @@
},
{
"ParameterMetadata": {
- "Name": "Policy",
+ "Name": "InclusionDisksList",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
- "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=1.0.1.0, Culture=neutral, PublicKeyToken=null",
- "Properties": {
- "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
- "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
- "Name": "System.String",
- "Id": "System.String"
- },
- "ElementType": null,
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": "System.String",
"GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Validate",
- "Parameters": [],
- "ReturnType": "System.Void"
- },
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
- },
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 1,
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ExclusionDisksList",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": "System.String",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResetExclusionSettings",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ExcludeAllDataDisks",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Policy",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
+ "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=1.0.1.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
+ "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
+ "Name": "System.String",
+ "Id": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Validate",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
@@ -18088,6 +18400,24 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
+ {
+ "Name": "FixForInconsistentItems",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
{
"Name": "VaultId",
"AliasList": [],
@@ -18187,99 +18517,391 @@
"ReturnType": "System.Int32"
},
{
- "Name": "GetType",
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 1,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "VaultId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "ModifyPolicyParamSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "RetentionPolicy",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
+ "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=1.0.1.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Validate",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": 2,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SchedulePolicy",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
+ "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=1.0.1.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Validate",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": 3,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Policy",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
+ "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=1.0.1.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
+ "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
+ "Name": "System.String",
+ "Id": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Validate",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 1,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "VaultId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
"Parameters": [],
- "ReturnType": "System.Type"
+ "ReturnType": "System.Void"
}
],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 1,
- "ValueFromPipeline": true,
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "FixPolicyParamSet",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "RetentionPolicy",
+ "Name": "FixForInconsistentItems",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
- "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.RetentionPolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=1.0.1.0, Culture=neutral, PublicKeyToken=null",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Validate",
- "Parameters": [],
- "ReturnType": "System.Void"
- },
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
- },
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
- "Position": 2,
+ "Mandatory": true,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "SchedulePolicy",
+ "Name": "Policy",
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models",
- "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.SchedulePolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=1.0.1.0, Culture=neutral, PublicKeyToken=null",
- "Properties": {},
+ "Name": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.PolicyBase, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models, Version=1.0.1.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "BackupManagementType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.BackupManagementType",
+ "WorkloadType": "Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.Models.WorkloadType",
+ "Name": "System.String",
+ "Id": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
"Methods": [
@@ -18327,9 +18949,9 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": 3,
- "ValueFromPipeline": false,
+ "Mandatory": true,
+ "Position": 1,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
@@ -23227,6 +23849,24 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
+ {
+ "Name": "MultipleSourceFilePath",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": "System.String",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
{
"Name": "UseOriginalStorageAccount",
"AliasList": [],
@@ -23245,6 +23885,60 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
+ {
+ "Name": "RestoreOnlyOSDisk",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "RestoreDiskList",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": "System.String",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "RestoreAsUnmanagedDisks",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
{
"Name": "VaultId",
"AliasList": [],
@@ -23558,6 +24252,78 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "RestoreOnlyOSDisk",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RestoreDiskList",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": "System.String",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RestoreAsUnmanagedDisks",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "VaultLocation",
@@ -23950,6 +24716,30 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "MultipleSourceFilePath",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": "System.String",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "VaultLocation",
diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery.dll.json
index 453c38d232ef..28182383fde2 100644
--- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery.dll.json
+++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery.dll.json
@@ -4421,27 +4421,35 @@
"AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=1.0.1.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Updates": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]",
+ "PSStatsRefreshTime": "System.Nullable`1[System.DateTime]",
"LastHeartbeat": "System.Nullable`1[System.DateTime]",
"AvailableMemoryInBytes": "System.Nullable`1[System.Int64]",
"AvailableSpaceInBytes": "System.Nullable`1[System.Int64]",
+ "ThroughputInBytes": "System.Nullable`1[System.Int64]",
+ "ThroughputInMBps": "System.Nullable`1[System.Int64]",
+ "ThroughputUploadPendingDataInBytes": "System.Nullable`1[System.Int64]",
"TotalSpaceInBytes": "System.Nullable`1[System.Int64]",
"TotalMemoryInBytes": "System.Nullable`1[System.Int64]",
"AgentVersion": "System.String",
+ "ThroughputStatus": "System.String",
+ "Health": "System.String",
+ "VersionStatus": "System.String",
"SystemLoadStatus": "System.String",
"SystemLoad": "System.String",
- "SpaceUsageStatus": "System.String",
"ServerCount": "System.String",
+ "MarsCommunicationStatus": "System.String",
"ReplicationPairCount": "System.String",
- "MemoryUsageStatus": "System.String",
+ "PsServiceStatus": "System.String",
"OsType": "System.String",
+ "MemoryUsageStatus": "System.String",
"IpAddress": "System.String",
"Id": "System.String",
"HostId": "System.String",
"FriendlyName": "System.String",
"CpuLoadStatus": "System.String",
"CpuLoad": "System.String",
- "PsServiceStatus": "System.String",
- "VersionStatus": "System.String"
+ "SpaceUsageStatus": "System.String",
+ "MarsRegistrationStatus": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4499,27 +4507,35 @@
"AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=1.0.1.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Updates": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]",
+ "PSStatsRefreshTime": "System.Nullable`1[System.DateTime]",
"LastHeartbeat": "System.Nullable`1[System.DateTime]",
"AvailableMemoryInBytes": "System.Nullable`1[System.Int64]",
"AvailableSpaceInBytes": "System.Nullable`1[System.Int64]",
+ "ThroughputInBytes": "System.Nullable`1[System.Int64]",
+ "ThroughputInMBps": "System.Nullable`1[System.Int64]",
+ "ThroughputUploadPendingDataInBytes": "System.Nullable`1[System.Int64]",
"TotalSpaceInBytes": "System.Nullable`1[System.Int64]",
"TotalMemoryInBytes": "System.Nullable`1[System.Int64]",
"AgentVersion": "System.String",
+ "ThroughputStatus": "System.String",
+ "Health": "System.String",
+ "VersionStatus": "System.String",
"SystemLoadStatus": "System.String",
"SystemLoad": "System.String",
- "SpaceUsageStatus": "System.String",
"ServerCount": "System.String",
+ "MarsCommunicationStatus": "System.String",
"ReplicationPairCount": "System.String",
- "MemoryUsageStatus": "System.String",
+ "PsServiceStatus": "System.String",
"OsType": "System.String",
+ "MemoryUsageStatus": "System.String",
"IpAddress": "System.String",
"Id": "System.String",
"HostId": "System.String",
"FriendlyName": "System.String",
"CpuLoadStatus": "System.String",
"CpuLoad": "System.String",
- "PsServiceStatus": "System.String",
- "VersionStatus": "System.String"
+ "SpaceUsageStatus": "System.String",
+ "MarsRegistrationStatus": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4712,27 +4728,35 @@
"AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=1.0.1.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Updates": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]",
+ "PSStatsRefreshTime": "System.Nullable`1[System.DateTime]",
"LastHeartbeat": "System.Nullable`1[System.DateTime]",
"AvailableMemoryInBytes": "System.Nullable`1[System.Int64]",
"AvailableSpaceInBytes": "System.Nullable`1[System.Int64]",
+ "ThroughputInBytes": "System.Nullable`1[System.Int64]",
+ "ThroughputInMBps": "System.Nullable`1[System.Int64]",
+ "ThroughputUploadPendingDataInBytes": "System.Nullable`1[System.Int64]",
"TotalSpaceInBytes": "System.Nullable`1[System.Int64]",
"TotalMemoryInBytes": "System.Nullable`1[System.Int64]",
"AgentVersion": "System.String",
+ "ThroughputStatus": "System.String",
+ "Health": "System.String",
+ "VersionStatus": "System.String",
"SystemLoadStatus": "System.String",
"SystemLoad": "System.String",
- "SpaceUsageStatus": "System.String",
"ServerCount": "System.String",
+ "MarsCommunicationStatus": "System.String",
"ReplicationPairCount": "System.String",
- "MemoryUsageStatus": "System.String",
+ "PsServiceStatus": "System.String",
"OsType": "System.String",
+ "MemoryUsageStatus": "System.String",
"IpAddress": "System.String",
"Id": "System.String",
"HostId": "System.String",
"FriendlyName": "System.String",
"CpuLoadStatus": "System.String",
"CpuLoad": "System.String",
- "PsServiceStatus": "System.String",
- "VersionStatus": "System.String"
+ "SpaceUsageStatus": "System.String",
+ "MarsRegistrationStatus": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4796,27 +4820,35 @@
"AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=1.0.1.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Updates": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]",
+ "PSStatsRefreshTime": "System.Nullable`1[System.DateTime]",
"LastHeartbeat": "System.Nullable`1[System.DateTime]",
"AvailableMemoryInBytes": "System.Nullable`1[System.Int64]",
"AvailableSpaceInBytes": "System.Nullable`1[System.Int64]",
+ "ThroughputInBytes": "System.Nullable`1[System.Int64]",
+ "ThroughputInMBps": "System.Nullable`1[System.Int64]",
+ "ThroughputUploadPendingDataInBytes": "System.Nullable`1[System.Int64]",
"TotalSpaceInBytes": "System.Nullable`1[System.Int64]",
"TotalMemoryInBytes": "System.Nullable`1[System.Int64]",
"AgentVersion": "System.String",
+ "ThroughputStatus": "System.String",
+ "Health": "System.String",
+ "VersionStatus": "System.String",
"SystemLoadStatus": "System.String",
"SystemLoad": "System.String",
- "SpaceUsageStatus": "System.String",
"ServerCount": "System.String",
+ "MarsCommunicationStatus": "System.String",
"ReplicationPairCount": "System.String",
- "MemoryUsageStatus": "System.String",
+ "PsServiceStatus": "System.String",
"OsType": "System.String",
+ "MemoryUsageStatus": "System.String",
"IpAddress": "System.String",
"Id": "System.String",
"HostId": "System.String",
"FriendlyName": "System.String",
"CpuLoadStatus": "System.String",
"CpuLoad": "System.String",
- "PsServiceStatus": "System.String",
- "VersionStatus": "System.String"
+ "SpaceUsageStatus": "System.String",
+ "MarsRegistrationStatus": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -29528,27 +29560,35 @@
"AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=1.0.1.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Updates": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]",
+ "PSStatsRefreshTime": "System.Nullable`1[System.DateTime]",
"LastHeartbeat": "System.Nullable`1[System.DateTime]",
"AvailableMemoryInBytes": "System.Nullable`1[System.Int64]",
"AvailableSpaceInBytes": "System.Nullable`1[System.Int64]",
+ "ThroughputInBytes": "System.Nullable`1[System.Int64]",
+ "ThroughputInMBps": "System.Nullable`1[System.Int64]",
+ "ThroughputUploadPendingDataInBytes": "System.Nullable`1[System.Int64]",
"TotalSpaceInBytes": "System.Nullable`1[System.Int64]",
"TotalMemoryInBytes": "System.Nullable`1[System.Int64]",
"AgentVersion": "System.String",
+ "ThroughputStatus": "System.String",
+ "Health": "System.String",
+ "VersionStatus": "System.String",
"SystemLoadStatus": "System.String",
"SystemLoad": "System.String",
- "SpaceUsageStatus": "System.String",
"ServerCount": "System.String",
+ "MarsCommunicationStatus": "System.String",
"ReplicationPairCount": "System.String",
- "MemoryUsageStatus": "System.String",
+ "PsServiceStatus": "System.String",
"OsType": "System.String",
+ "MemoryUsageStatus": "System.String",
"IpAddress": "System.String",
"Id": "System.String",
"HostId": "System.String",
"FriendlyName": "System.String",
"CpuLoadStatus": "System.String",
"CpuLoad": "System.String",
- "PsServiceStatus": "System.String",
- "VersionStatus": "System.String"
+ "SpaceUsageStatus": "System.String",
+ "MarsRegistrationStatus": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -30132,27 +30172,35 @@
"AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=1.0.1.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Updates": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]",
+ "PSStatsRefreshTime": "System.Nullable`1[System.DateTime]",
"LastHeartbeat": "System.Nullable`1[System.DateTime]",
"AvailableMemoryInBytes": "System.Nullable`1[System.Int64]",
"AvailableSpaceInBytes": "System.Nullable`1[System.Int64]",
+ "ThroughputInBytes": "System.Nullable`1[System.Int64]",
+ "ThroughputInMBps": "System.Nullable`1[System.Int64]",
+ "ThroughputUploadPendingDataInBytes": "System.Nullable`1[System.Int64]",
"TotalSpaceInBytes": "System.Nullable`1[System.Int64]",
"TotalMemoryInBytes": "System.Nullable`1[System.Int64]",
"AgentVersion": "System.String",
+ "ThroughputStatus": "System.String",
+ "Health": "System.String",
+ "VersionStatus": "System.String",
"SystemLoadStatus": "System.String",
"SystemLoad": "System.String",
- "SpaceUsageStatus": "System.String",
"ServerCount": "System.String",
+ "MarsCommunicationStatus": "System.String",
"ReplicationPairCount": "System.String",
- "MemoryUsageStatus": "System.String",
+ "PsServiceStatus": "System.String",
"OsType": "System.String",
+ "MemoryUsageStatus": "System.String",
"IpAddress": "System.String",
"Id": "System.String",
"HostId": "System.String",
"FriendlyName": "System.String",
"CpuLoadStatus": "System.String",
"CpuLoad": "System.String",
- "PsServiceStatus": "System.String",
- "VersionStatus": "System.String"
+ "SpaceUsageStatus": "System.String",
+ "MarsRegistrationStatus": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -30773,27 +30821,35 @@
"AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=1.0.1.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Updates": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]",
+ "PSStatsRefreshTime": "System.Nullable`1[System.DateTime]",
"LastHeartbeat": "System.Nullable`1[System.DateTime]",
"AvailableMemoryInBytes": "System.Nullable`1[System.Int64]",
"AvailableSpaceInBytes": "System.Nullable`1[System.Int64]",
+ "ThroughputInBytes": "System.Nullable`1[System.Int64]",
+ "ThroughputInMBps": "System.Nullable`1[System.Int64]",
+ "ThroughputUploadPendingDataInBytes": "System.Nullable`1[System.Int64]",
"TotalSpaceInBytes": "System.Nullable`1[System.Int64]",
"TotalMemoryInBytes": "System.Nullable`1[System.Int64]",
"AgentVersion": "System.String",
+ "ThroughputStatus": "System.String",
+ "Health": "System.String",
+ "VersionStatus": "System.String",
"SystemLoadStatus": "System.String",
"SystemLoad": "System.String",
- "SpaceUsageStatus": "System.String",
"ServerCount": "System.String",
+ "MarsCommunicationStatus": "System.String",
"ReplicationPairCount": "System.String",
- "MemoryUsageStatus": "System.String",
+ "PsServiceStatus": "System.String",
"OsType": "System.String",
+ "MemoryUsageStatus": "System.String",
"IpAddress": "System.String",
"Id": "System.String",
"HostId": "System.String",
"FriendlyName": "System.String",
"CpuLoadStatus": "System.String",
"CpuLoad": "System.String",
- "PsServiceStatus": "System.String",
- "VersionStatus": "System.String"
+ "SpaceUsageStatus": "System.String",
+ "MarsRegistrationStatus": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -45150,27 +45206,35 @@
"AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=1.0.1.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Updates": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]",
+ "PSStatsRefreshTime": "System.Nullable`1[System.DateTime]",
"LastHeartbeat": "System.Nullable`1[System.DateTime]",
"AvailableMemoryInBytes": "System.Nullable`1[System.Int64]",
"AvailableSpaceInBytes": "System.Nullable`1[System.Int64]",
+ "ThroughputInBytes": "System.Nullable`1[System.Int64]",
+ "ThroughputInMBps": "System.Nullable`1[System.Int64]",
+ "ThroughputUploadPendingDataInBytes": "System.Nullable`1[System.Int64]",
"TotalSpaceInBytes": "System.Nullable`1[System.Int64]",
"TotalMemoryInBytes": "System.Nullable`1[System.Int64]",
"AgentVersion": "System.String",
+ "ThroughputStatus": "System.String",
+ "Health": "System.String",
+ "VersionStatus": "System.String",
"SystemLoadStatus": "System.String",
"SystemLoad": "System.String",
- "SpaceUsageStatus": "System.String",
"ServerCount": "System.String",
+ "MarsCommunicationStatus": "System.String",
"ReplicationPairCount": "System.String",
- "MemoryUsageStatus": "System.String",
+ "PsServiceStatus": "System.String",
"OsType": "System.String",
+ "MemoryUsageStatus": "System.String",
"IpAddress": "System.String",
"Id": "System.String",
"HostId": "System.String",
"FriendlyName": "System.String",
"CpuLoadStatus": "System.String",
"CpuLoad": "System.String",
- "PsServiceStatus": "System.String",
- "VersionStatus": "System.String"
+ "SpaceUsageStatus": "System.String",
+ "MarsRegistrationStatus": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -46021,27 +46085,35 @@
"AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=1.0.1.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Updates": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]",
+ "PSStatsRefreshTime": "System.Nullable`1[System.DateTime]",
"LastHeartbeat": "System.Nullable`1[System.DateTime]",
"AvailableMemoryInBytes": "System.Nullable`1[System.Int64]",
"AvailableSpaceInBytes": "System.Nullable`1[System.Int64]",
+ "ThroughputInBytes": "System.Nullable`1[System.Int64]",
+ "ThroughputInMBps": "System.Nullable`1[System.Int64]",
+ "ThroughputUploadPendingDataInBytes": "System.Nullable`1[System.Int64]",
"TotalSpaceInBytes": "System.Nullable`1[System.Int64]",
"TotalMemoryInBytes": "System.Nullable`1[System.Int64]",
"AgentVersion": "System.String",
+ "ThroughputStatus": "System.String",
+ "Health": "System.String",
+ "VersionStatus": "System.String",
"SystemLoadStatus": "System.String",
"SystemLoad": "System.String",
- "SpaceUsageStatus": "System.String",
"ServerCount": "System.String",
+ "MarsCommunicationStatus": "System.String",
"ReplicationPairCount": "System.String",
- "MemoryUsageStatus": "System.String",
+ "PsServiceStatus": "System.String",
"OsType": "System.String",
+ "MemoryUsageStatus": "System.String",
"IpAddress": "System.String",
"Id": "System.String",
"HostId": "System.String",
"FriendlyName": "System.String",
"CpuLoadStatus": "System.String",
"CpuLoad": "System.String",
- "PsServiceStatus": "System.String",
- "VersionStatus": "System.String"
+ "SpaceUsageStatus": "System.String",
+ "MarsRegistrationStatus": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -46585,27 +46657,35 @@
"AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProcessServer, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery, Version=1.0.1.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Updates": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRMobilityServiceUpdate]",
+ "PSStatsRefreshTime": "System.Nullable`1[System.DateTime]",
"LastHeartbeat": "System.Nullable`1[System.DateTime]",
"AvailableMemoryInBytes": "System.Nullable`1[System.Int64]",
"AvailableSpaceInBytes": "System.Nullable`1[System.Int64]",
+ "ThroughputInBytes": "System.Nullable`1[System.Int64]",
+ "ThroughputInMBps": "System.Nullable`1[System.Int64]",
+ "ThroughputUploadPendingDataInBytes": "System.Nullable`1[System.Int64]",
"TotalSpaceInBytes": "System.Nullable`1[System.Int64]",
"TotalMemoryInBytes": "System.Nullable`1[System.Int64]",
"AgentVersion": "System.String",
+ "ThroughputStatus": "System.String",
+ "Health": "System.String",
+ "VersionStatus": "System.String",
"SystemLoadStatus": "System.String",
"SystemLoad": "System.String",
- "SpaceUsageStatus": "System.String",
"ServerCount": "System.String",
+ "MarsCommunicationStatus": "System.String",
"ReplicationPairCount": "System.String",
- "MemoryUsageStatus": "System.String",
+ "PsServiceStatus": "System.String",
"OsType": "System.String",
+ "MemoryUsageStatus": "System.String",
"IpAddress": "System.String",
"Id": "System.String",
"HostId": "System.String",
"FriendlyName": "System.String",
"CpuLoadStatus": "System.String",
"CpuLoad": "System.String",
- "PsServiceStatus": "System.String",
- "VersionStatus": "System.String"
+ "SpaceUsageStatus": "System.String",
+ "MarsRegistrationStatus": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -51178,7 +51258,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
"Name": "System.String",
@@ -51285,7 +51365,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
"Name": "System.String",
@@ -54984,7 +55064,7 @@
"Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails": {
"Namespace": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models",
"Name": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails, Microsoft.Azure.Management.RecoveryServices.SiteRecovery, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.CurrentScenarioDetails, Microsoft.Azure.Management.RecoveryServices.SiteRecovery, Version=2.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"StartTime": "System.Nullable`1[System.DateTime]",
"JobId": "System.String",
@@ -55134,7 +55214,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.IPConfig]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.IPConfig]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.IPConfig, Microsoft.Azure.Management.RecoveryServices.SiteRecovery, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.IPConfig, Microsoft.Azure.Management.RecoveryServices.SiteRecovery, Version=2.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -55146,7 +55226,7 @@
"Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.IPConfig": {
"Namespace": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models",
"Name": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.IPConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.IPConfig, Microsoft.Azure.Management.RecoveryServices.SiteRecovery, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.IPConfig, Microsoft.Azure.Management.RecoveryServices.SiteRecovery, Version=2.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"LBBackendAddressPoolIds": "System.Collections.Generic.IList`1[System.String]",
"PublicIpAddressId": "System.String",
@@ -55222,7 +55302,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet, Microsoft.Azure.Management.RecoveryServices.SiteRecovery, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet, Microsoft.Azure.Management.RecoveryServices.SiteRecovery, Version=2.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -55234,7 +55314,7 @@
"Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet": {
"Namespace": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models",
"Name": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet, Microsoft.Azure.Management.RecoveryServices.SiteRecovery, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.Subnet, Microsoft.Azure.Management.RecoveryServices.SiteRecovery, Version=2.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"AddressList": "System.Collections.Generic.IList`1[System.String]",
"FriendlyName": "System.String",
@@ -55953,7 +56033,7 @@
"Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RecoveryPlanAction": {
"Namespace": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models",
"Name": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RecoveryPlanAction",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RecoveryPlanAction, Microsoft.Azure.Management.RecoveryServices.SiteRecovery, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RecoveryPlanAction, Microsoft.Azure.Management.RecoveryServices.SiteRecovery, Version=2.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {
"CustomDetails": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RecoveryPlanActionDetails",
"FailoverTypes": "System.Collections.Generic.IList`1[System.String]",
@@ -56027,7 +56107,7 @@
"Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RecoveryPlanActionDetails": {
"Namespace": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models",
"Name": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RecoveryPlanActionDetails",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RecoveryPlanActionDetails, Microsoft.Azure.Management.RecoveryServices.SiteRecovery, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models.RecoveryPlanActionDetails, Microsoft.Azure.Management.RecoveryServices.SiteRecovery, Version=2.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -56445,7 +56525,7 @@
"Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.6.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.7.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ProvisioningState": "System.String"
},
diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.dll.json
index 0064b105aa5f..f20b36caaeaa 100644
--- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.dll.json
+++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.dll.json
@@ -14,7 +14,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ASRVaultBackupProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ASRVaultBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ASRVaultBackupProperties, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackupStorageRedundancy": "System.String"
},
@@ -67,7 +67,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
"Name": "System.String",
@@ -174,7 +174,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
"Name": "System.String",
@@ -301,7 +301,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
"Name": "System.String",
@@ -854,7 +854,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.VaultSettingsFilePath",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.VaultSettingsFilePath, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.VaultSettingsFilePath, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FilePath": "System.String"
},
@@ -907,7 +907,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
"Name": "System.String",
@@ -1122,7 +1122,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
"Name": "System.String",
@@ -1360,7 +1360,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
"Name": "System.String",
@@ -1550,7 +1550,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
"Name": "System.String",
@@ -1740,7 +1740,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
"Name": "System.String",
@@ -1889,7 +1889,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
"Name": "System.String",
@@ -2216,7 +2216,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.VaultOperationOutput",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.VaultOperationOutput, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.VaultOperationOutput, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Response": "System.String"
},
@@ -2269,7 +2269,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
"Name": "System.String",
@@ -2376,7 +2376,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
"Name": "System.String",
@@ -2520,7 +2520,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
"Name": "System.String",
@@ -2588,7 +2588,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.AzureRmRecoveryServicesBackupStorageRedundancyType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.AzureRmRecoveryServicesBackupStorageRedundancyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.7.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.AzureRmRecoveryServicesBackupStorageRedundancyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.8.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -2647,7 +2647,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
"Name": "System.String",
@@ -2721,7 +2721,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.RecoveryServices.AzureRmRecoveryServicesBackupStorageRedundancyType]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.AzureRmRecoveryServicesBackupStorageRedundancyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.7.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.RecoveryServices.AzureRmRecoveryServicesBackupStorageRedundancyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.8.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -2819,7 +2819,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
"Name": "System.String",
@@ -2926,7 +2926,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVault",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVault, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
"Name": "System.String",
@@ -3192,7 +3192,7 @@
"Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.ARSVaultProperties, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ProvisioningState": "System.String"
},
@@ -3426,7 +3426,7 @@
"Microsoft.Azure.Commands.RecoveryServices.AzureRmRecoveryServicesBackupStorageRedundancyType": {
"Namespace": "Microsoft.Azure.Commands.RecoveryServices",
"Name": "Microsoft.Azure.Commands.RecoveryServices.AzureRmRecoveryServicesBackupStorageRedundancyType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.AzureRmRecoveryServicesBackupStorageRedundancyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.RecoveryServices.AzureRmRecoveryServicesBackupStorageRedundancyType, Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices, Version=2.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll.json
index fdc7a91d2004..4d980e86d1b0 100644
--- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll.json
+++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll.json
@@ -653,37 +653,41 @@
},
{
"VerbName": "Get",
- "NounName": "AzManagementGroupDeployment",
- "Name": "Get-AzManagementGroupDeployment",
- "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureManagementGroupDeploymentCmdlet",
+ "NounName": "AzDeploymentScript",
+ "Name": "Get-AzDeploymentScript",
+ "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzDeploymentScript",
"SupportsShouldProcess": false,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "GetByDeploymentName",
+ "DefaultParameterSetName": "ListDeploymentScript",
"OutputTypes": [
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
- "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
- "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
- "TemplateLink": "Microsoft.Azure.Management.ResourceManager.Models.TemplateLink",
- "Parameters": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
- "Outputs": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
- "Timestamp": "System.DateTime",
- "ParametersString": "System.String",
- "DeploymentDebugLogLevel": "System.String",
- "TemplateLinkString": "System.String",
+ "Identity": "Microsoft.Azure.Management.ResourceManager.Models.ManagedServiceIdentity",
+ "Status": "Microsoft.Azure.Management.ResourceManager.Models.ScriptStatus",
+ "Outputs": "System.Collections.Generic.IDictionary`2[System.String,System.Object]",
+ "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "EnvironmentVariables": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ResourceManager.Models.EnvironmentVariable]",
+ "SupportingScriptUris": "System.Collections.Generic.IList`1[System.String]",
"Id": "System.String",
- "CorrelationId": "System.String",
- "DeploymentName": "System.String",
+ "SubscriptionId": "System.String",
"ResourceGroupName": "System.String",
- "ManagementGroupId": "System.String",
- "Location": "System.String",
+ "Timeout": "System.String",
+ "RetentionInterval": "System.String",
+ "ForceUpdateTag": "System.String",
+ "ScriptContent": "System.String",
+ "Type": "System.String",
+ "PrimaryScriptUri": "System.String",
"ProvisioningState": "System.String",
- "OutputsString": "System.String"
+ "CleanupPreference": "System.String",
+ "ScriptKind": "System.String",
+ "Location": "System.String",
+ "Arguments": "System.String",
+ "Name": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -729,7 +733,7 @@
],
"Parameters": [
{
- "Name": "ManagementGroupId",
+ "Name": "ResourceGroupName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -748,9 +752,7 @@
},
{
"Name": "Name",
- "AliasList": [
- "DeploymentName"
- ],
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -769,7 +771,6 @@
{
"Name": "Id",
"AliasList": [
- "DeploymentId",
"ResourceId"
],
"Type": {
@@ -787,42 +788,6 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- {
- "Name": "ApiVersion",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "Pre",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
{
"Name": "DefaultProfile",
"AliasList": [
@@ -859,11 +824,11 @@
],
"ParameterSets": [
{
- "Name": "GetByDeploymentName",
+ "Name": "ListDeploymentScript",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ManagementGroupId",
+ "Name": "ResourceGroupName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -880,40 +845,58 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "Name",
+ "Name": "DefaultProfile",
"AliasList": [
- "DeploymentName"
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
- "Position": 1,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "GetDeploymentScriptByName",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "ApiVersion",
+ "Name": "ResourceGroupName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -930,19 +913,19 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "Pre",
+ "Name": "Name",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -952,12 +935,12 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 1,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
@@ -1001,13 +984,12 @@
]
},
{
- "Name": "GetByDeploymentId",
+ "Name": "GetDeploymentScriptByResourceId",
"Parameters": [
{
"ParameterMetadata": {
"Name": "Id",
"AliasList": [
- "DeploymentId",
"ResourceId"
],
"Type": {
@@ -1026,57 +1008,9 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "ApiVersion",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Pre",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
+ "Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
@@ -1122,54 +1056,6 @@
{
"Name": "__AllParameterSets",
"Parameters": [
- {
- "ParameterMetadata": {
- "Name": "ApiVersion",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Pre",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -1216,26 +1102,25 @@
},
{
"VerbName": "Get",
- "NounName": "AzManagementGroupDeploymentOperation",
- "Name": "Get-AzManagementGroupDeploymentOperation",
- "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureManagementGroupDeploymentOperationCmdlet",
+ "NounName": "AzDeploymentScriptLog",
+ "Name": "Get-AzDeploymentScriptLog",
+ "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzDeploymentScriptLog",
"SupportsShouldProcess": false,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "GetByDeploymentName",
+ "DefaultParameterSetName": "GetDeploymentScriptLogByName",
"OutputTypes": [
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
- "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeploymentOperation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeploymentOperation, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScriptLog",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScriptLog, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "StatusMessage": "System.Object",
+ "Log": "System.String",
+ "DeploymentScriptName": "System.String",
"Id": "System.String",
- "OperationId": "System.String",
- "ProvisioningState": "System.String",
- "StatusCode": "System.String",
- "TargetResource": "System.String"
+ "Type": "System.String",
+ "Name": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1281,7 +1166,7 @@
],
"Parameters": [
{
- "Name": "ManagementGroupId",
+ "Name": "ResourceGroupName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -1299,7 +1184,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "DeploymentName",
+ "Name": "Name",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -1317,7 +1202,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "OperationId",
+ "Name": "DeploymentScriptResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -1332,33 +1217,37 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
{
- "Name": "DeploymentObject",
+ "Name": "DeploymentScriptInputObject",
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
- "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
- "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
- "TemplateLink": "Microsoft.Azure.Management.ResourceManager.Models.TemplateLink",
- "Parameters": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
- "Outputs": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
- "Timestamp": "System.DateTime",
- "ParametersString": "System.String",
- "DeploymentDebugLogLevel": "System.String",
- "TemplateLinkString": "System.String",
+ "Identity": "Microsoft.Azure.Management.ResourceManager.Models.ManagedServiceIdentity",
+ "Status": "Microsoft.Azure.Management.ResourceManager.Models.ScriptStatus",
+ "Outputs": "System.Collections.Generic.IDictionary`2[System.String,System.Object]",
+ "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "EnvironmentVariables": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ResourceManager.Models.EnvironmentVariable]",
+ "SupportingScriptUris": "System.Collections.Generic.IList`1[System.String]",
"Id": "System.String",
- "CorrelationId": "System.String",
- "DeploymentName": "System.String",
+ "SubscriptionId": "System.String",
"ResourceGroupName": "System.String",
- "ManagementGroupId": "System.String",
- "Location": "System.String",
+ "Timeout": "System.String",
+ "RetentionInterval": "System.String",
+ "ForceUpdateTag": "System.String",
+ "ScriptContent": "System.String",
+ "Type": "System.String",
+ "PrimaryScriptUri": "System.String",
"ProvisioningState": "System.String",
- "OutputsString": "System.String"
+ "CleanupPreference": "System.String",
+ "ScriptKind": "System.String",
+ "Location": "System.String",
+ "Arguments": "System.String",
+ "Name": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1400,44 +1289,8 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "ApiVersion",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- {
- "Name": "Pre",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
{
"Name": "DefaultProfile",
"AliasList": [
@@ -1474,11 +1327,11 @@
],
"ParameterSets": [
{
- "Name": "GetByDeploymentName",
+ "Name": "GetDeploymentScriptLogByName",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ManagementGroupId",
+ "Name": "ResourceGroupName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -1496,13 +1349,13 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": -2147483648,
+ "Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "DeploymentName",
+ "Name": "Name",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -1520,22 +1373,37 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": -2147483648,
+ "Position": 1,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "OperationId",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
@@ -1547,10 +1415,15 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "GetDeploymentScriptLogByResourceId",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "ApiVersion",
+ "Name": "DeploymentScriptResourceId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -1567,32 +1440,8 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Pre",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 0,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
@@ -1638,34 +1487,38 @@
]
},
{
- "Name": "GetByDeploymentObject",
+ "Name": "GetDeploymentScriptLogByInputObject",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "DeploymentObject",
+ "Name": "DeploymentScriptInputObject",
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
- "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
- "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
- "TemplateLink": "Microsoft.Azure.Management.ResourceManager.Models.TemplateLink",
- "Parameters": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
- "Outputs": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
- "Timestamp": "System.DateTime",
- "ParametersString": "System.String",
- "DeploymentDebugLogLevel": "System.String",
- "TemplateLinkString": "System.String",
+ "Identity": "Microsoft.Azure.Management.ResourceManager.Models.ManagedServiceIdentity",
+ "Status": "Microsoft.Azure.Management.ResourceManager.Models.ScriptStatus",
+ "Outputs": "System.Collections.Generic.IDictionary`2[System.String,System.Object]",
+ "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "EnvironmentVariables": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ResourceManager.Models.EnvironmentVariable]",
+ "SupportingScriptUris": "System.Collections.Generic.IList`1[System.String]",
"Id": "System.String",
- "CorrelationId": "System.String",
- "DeploymentName": "System.String",
+ "SubscriptionId": "System.String",
"ResourceGroupName": "System.String",
- "ManagementGroupId": "System.String",
- "Location": "System.String",
+ "Timeout": "System.String",
+ "RetentionInterval": "System.String",
+ "ForceUpdateTag": "System.String",
+ "ScriptContent": "System.String",
+ "Type": "System.String",
+ "PrimaryScriptUri": "System.String",
"ProvisioningState": "System.String",
- "OutputsString": "System.String"
+ "CleanupPreference": "System.String",
+ "ScriptKind": "System.String",
+ "Location": "System.String",
+ "Arguments": "System.String",
+ "Name": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1707,61 +1560,13 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": -2147483648,
+ "Position": 0,
"ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
- {
- "ParameterMetadata": {
- "Name": "ApiVersion",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Pre",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -1806,54 +1611,6 @@
{
"Name": "__AllParameterSets",
"Parameters": [
- {
- "ParameterMetadata": {
- "Name": "ApiVersion",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Pre",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -1899,38 +1656,22 @@
"AliasList": []
},
{
- "VerbName": "Get",
- "NounName": "AzDeployment",
- "Name": "Get-AzDeployment",
- "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentCmdlet",
- "SupportsShouldProcess": false,
+ "VerbName": "Save",
+ "NounName": "AzDeploymentScriptLog",
+ "Name": "Save-AzDeploymentScriptLog",
+ "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.SaveAzDeploymentScriptLog",
+ "SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "GetByDeploymentName",
+ "DefaultParameterSetName": "SaveDeploymentScriptLogByName",
"OutputTypes": [
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
- "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScriptLogPath",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScriptLogPath, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
- "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
- "TemplateLink": "Microsoft.Azure.Management.ResourceManager.Models.TemplateLink",
- "Parameters": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
- "Outputs": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
- "Timestamp": "System.DateTime",
- "ParametersString": "System.String",
- "DeploymentDebugLogLevel": "System.String",
- "TemplateLinkString": "System.String",
- "Id": "System.String",
- "CorrelationId": "System.String",
- "DeploymentName": "System.String",
- "ResourceGroupName": "System.String",
- "ManagementGroupId": "System.String",
- "Location": "System.String",
- "ProvisioningState": "System.String",
- "OutputsString": "System.String"
+ "Path": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1975,11 +1716,27 @@
}
],
"Parameters": [
+ {
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
{
"Name": "Name",
- "AliasList": [
- "DeploymentName"
- ],
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -1996,11 +1753,8 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Id",
- "AliasList": [
- "DeploymentId",
- "ResourceId"
- ],
+ "Name": "DeploymentScriptResourceId",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -2017,7 +1771,79 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "ApiVersion",
+ "Name": "DeploymentScriptInputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
+ "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Identity": "Microsoft.Azure.Management.ResourceManager.Models.ManagedServiceIdentity",
+ "Status": "Microsoft.Azure.Management.ResourceManager.Models.ScriptStatus",
+ "Outputs": "System.Collections.Generic.IDictionary`2[System.String,System.Object]",
+ "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "EnvironmentVariables": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ResourceManager.Models.EnvironmentVariable]",
+ "SupportingScriptUris": "System.Collections.Generic.IList`1[System.String]",
+ "Id": "System.String",
+ "SubscriptionId": "System.String",
+ "ResourceGroupName": "System.String",
+ "Timeout": "System.String",
+ "RetentionInterval": "System.String",
+ "ForceUpdateTag": "System.String",
+ "ScriptContent": "System.String",
+ "Type": "System.String",
+ "PrimaryScriptUri": "System.String",
+ "ProvisioningState": "System.String",
+ "CleanupPreference": "System.String",
+ "ScriptKind": "System.String",
+ "Location": "System.String",
+ "Arguments": "System.String",
+ "Name": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "OutputPath",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -2035,7 +1861,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Pre",
+ "Name": "Force",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -2088,14 +1914,12 @@
],
"ParameterSets": [
{
- "Name": "GetByDeploymentName",
+ "Name": "SaveDeploymentScriptLogByName",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "DeploymentName"
- ],
+ "Name": "ResourceGroupName",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -2111,14 +1935,14 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "ApiVersion",
+ "Name": "Name",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -2135,14 +1959,38 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 1,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "OutputPath",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 2,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Pre",
+ "Name": "Force",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -2206,15 +2054,12 @@
]
},
{
- "Name": "GetByDeploymentId",
+ "Name": "SaveDeploymentScriptLogByResourceId",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Id",
- "AliasList": [
- "DeploymentId",
- "ResourceId"
- ],
+ "Name": "DeploymentScriptResourceId",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -2231,13 +2076,13 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": -2147483648,
+ "Position": 0,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "ApiVersion",
+ "Name": "OutputPath",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -2254,14 +2099,14 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Pre",
+ "Name": "Force",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -2325,11 +2170,89 @@
]
},
{
- "Name": "__AllParameterSets",
+ "Name": "SaveDeploymentScriptLogByInputObject",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ApiVersion",
+ "Name": "DeploymentScriptInputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
+ "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Identity": "Microsoft.Azure.Management.ResourceManager.Models.ManagedServiceIdentity",
+ "Status": "Microsoft.Azure.Management.ResourceManager.Models.ScriptStatus",
+ "Outputs": "System.Collections.Generic.IDictionary`2[System.String,System.Object]",
+ "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "EnvironmentVariables": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ResourceManager.Models.EnvironmentVariable]",
+ "SupportingScriptUris": "System.Collections.Generic.IList`1[System.String]",
+ "Id": "System.String",
+ "SubscriptionId": "System.String",
+ "ResourceGroupName": "System.String",
+ "Timeout": "System.String",
+ "RetentionInterval": "System.String",
+ "ForceUpdateTag": "System.String",
+ "ScriptContent": "System.String",
+ "Type": "System.String",
+ "PrimaryScriptUri": "System.String",
+ "ProvisioningState": "System.String",
+ "CleanupPreference": "System.String",
+ "ScriptKind": "System.String",
+ "Location": "System.String",
+ "Arguments": "System.String",
+ "Name": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "OutputPath",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -2346,6 +2269,30 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
+ "Mandatory": true,
+ "Position": 1,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Force",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
@@ -2353,7 +2300,51 @@
},
{
"ParameterMetadata": {
- "Name": "Pre",
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Force",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -2417,15 +2408,13 @@
]
}
],
- "AliasList": [
- "Get-AzSubscriptionDeployment"
- ]
+ "AliasList": []
},
{
"VerbName": "Get",
- "NounName": "AzDeploymentOperation",
- "Name": "Get-AzDeploymentOperation",
- "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentOperationCmdlet",
+ "NounName": "AzManagementGroupDeployment",
+ "Name": "Get-AzManagementGroupDeployment",
+ "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureManagementGroupDeploymentCmdlet",
"SupportsShouldProcess": false,
"ConfirmImpact": 2,
"SupportsPaging": false,
@@ -2434,15 +2423,26 @@
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
- "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeploymentOperation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeploymentOperation, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "StatusMessage": "System.Object",
+ "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
+ "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
+ "TemplateLink": "Microsoft.Azure.Management.ResourceManager.Models.TemplateLink",
+ "Parameters": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
+ "Outputs": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
+ "Timestamp": "System.DateTime",
+ "ParametersString": "System.String",
+ "DeploymentDebugLogLevel": "System.String",
+ "TemplateLinkString": "System.String",
"Id": "System.String",
- "OperationId": "System.String",
+ "CorrelationId": "System.String",
+ "DeploymentName": "System.String",
+ "ResourceGroupName": "System.String",
+ "ManagementGroupId": "System.String",
+ "Location": "System.String",
"ProvisioningState": "System.String",
- "StatusCode": "System.String",
- "TargetResource": "System.String"
+ "OutputsString": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2488,7 +2488,7 @@
],
"Parameters": [
{
- "Name": "DeploymentName",
+ "Name": "ManagementGroupId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -2506,8 +2506,10 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "OperationId",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "DeploymentName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -2521,75 +2523,28 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
{
- "Name": "DeploymentObject",
- "AliasList": [],
+ "Name": "Id",
+ "AliasList": [
+ "DeploymentId",
+ "ResourceId"
+ ],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
- "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
- "Properties": {
- "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
- "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
- "TemplateLink": "Microsoft.Azure.Management.ResourceManager.Models.TemplateLink",
- "Parameters": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
- "Outputs": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
- "Timestamp": "System.DateTime",
- "ParametersString": "System.String",
- "DeploymentDebugLogLevel": "System.String",
- "TemplateLinkString": "System.String",
- "Id": "System.String",
- "CorrelationId": "System.String",
- "DeploymentName": "System.String",
- "ResourceGroupName": "System.String",
- "ManagementGroupId": "System.String",
- "Location": "System.String",
- "ProvisioningState": "System.String",
- "OutputsString": "System.String"
- },
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
- },
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
{
"Name": "ApiVersion",
@@ -2667,7 +2622,7 @@
"Parameters": [
{
"ParameterMetadata": {
- "Name": "DeploymentName",
+ "Name": "ManagementGroupId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -2685,14 +2640,16 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": -2147483648,
+ "Position": 0,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "OperationId",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "DeploymentName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -2706,10 +2663,10 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
- "Position": -2147483648,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
@@ -2803,80 +2760,33 @@
]
},
{
- "Name": "GetByDeploymentObject",
+ "Name": "GetByDeploymentId",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "DeploymentObject",
- "AliasList": [],
+ "Name": "Id",
+ "AliasList": [
+ "DeploymentId",
+ "ResourceId"
+ ],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
- "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
- "Properties": {
- "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
- "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
- "TemplateLink": "Microsoft.Azure.Management.ResourceManager.Models.TemplateLink",
- "Parameters": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
- "Outputs": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
- "Timestamp": "System.DateTime",
- "ParametersString": "System.String",
- "DeploymentDebugLogLevel": "System.String",
- "TemplateLinkString": "System.String",
- "Id": "System.String",
- "CorrelationId": "System.String",
- "DeploymentName": "System.String",
- "ResourceGroupName": "System.String",
- "ManagementGroupId": "System.String",
- "Location": "System.String",
- "ProvisioningState": "System.String",
- "OutputsString": "System.String"
- },
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
- },
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": true,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
@@ -3061,15 +2971,13 @@
]
}
],
- "AliasList": [
- "Get-AzSubscriptionDeploymentOperation"
- ]
+ "AliasList": []
},
{
"VerbName": "Get",
- "NounName": "AzTenantDeployment",
- "Name": "Get-AzTenantDeployment",
- "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureTenantDeploymentCmdlet",
+ "NounName": "AzManagementGroupDeploymentOperation",
+ "Name": "Get-AzManagementGroupDeploymentOperation",
+ "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureManagementGroupDeploymentOperationCmdlet",
"SupportsShouldProcess": false,
"ConfirmImpact": 2,
"SupportsPaging": false,
@@ -3078,26 +2986,15 @@
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
- "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeploymentOperation",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeploymentOperation, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
- "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
- "TemplateLink": "Microsoft.Azure.Management.ResourceManager.Models.TemplateLink",
- "Parameters": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
- "Outputs": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
- "Timestamp": "System.DateTime",
- "ParametersString": "System.String",
- "DeploymentDebugLogLevel": "System.String",
- "TemplateLinkString": "System.String",
+ "StatusMessage": "System.Object",
"Id": "System.String",
- "CorrelationId": "System.String",
- "DeploymentName": "System.String",
- "ResourceGroupName": "System.String",
- "ManagementGroupId": "System.String",
- "Location": "System.String",
+ "OperationId": "System.String",
"ProvisioningState": "System.String",
- "OutputsString": "System.String"
+ "StatusCode": "System.String",
+ "TargetResource": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3143,10 +3040,8 @@
],
"Parameters": [
{
- "Name": "Name",
- "AliasList": [
- "DeploymentName"
- ],
+ "Name": "ManagementGroupId",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -3163,11 +3058,8 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "Id",
- "AliasList": [
- "DeploymentId",
- "ResourceId"
- ],
+ "Name": "DeploymentName",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -3183,6 +3075,92 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
+ {
+ "Name": "OperationId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DeploymentObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
+ "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
+ "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
+ "TemplateLink": "Microsoft.Azure.Management.ResourceManager.Models.TemplateLink",
+ "Parameters": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
+ "Outputs": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
+ "Timestamp": "System.DateTime",
+ "ParametersString": "System.String",
+ "DeploymentDebugLogLevel": "System.String",
+ "TemplateLinkString": "System.String",
+ "Id": "System.String",
+ "CorrelationId": "System.String",
+ "DeploymentName": "System.String",
+ "ResourceGroupName": "System.String",
+ "ManagementGroupId": "System.String",
+ "Location": "System.String",
+ "ProvisioningState": "System.String",
+ "OutputsString": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
{
"Name": "ApiVersion",
"AliasList": [],
@@ -3259,10 +3237,8 @@
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "DeploymentName"
- ],
+ "Name": "ManagementGroupId",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -3278,8 +3254,56 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DeploymentName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "OperationId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
"Mandatory": false,
- "Position": 0,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
@@ -3373,33 +3397,80 @@
]
},
{
- "Name": "GetByDeploymentId",
+ "Name": "GetByDeploymentObject",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Id",
- "AliasList": [
- "DeploymentId",
- "ResourceId"
- ],
+ "Name": "DeploymentObject",
+ "AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
+ "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
+ "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
+ "TemplateLink": "Microsoft.Azure.Management.ResourceManager.Models.TemplateLink",
+ "Parameters": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
+ "Outputs": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
+ "Timestamp": "System.DateTime",
+ "ParametersString": "System.String",
+ "DeploymentDebugLogLevel": "System.String",
+ "TemplateLinkString": "System.String",
+ "Id": "System.String",
+ "CorrelationId": "System.String",
+ "DeploymentName": "System.String",
+ "ResourceGroupName": "System.String",
+ "ManagementGroupId": "System.String",
+ "Location": "System.String",
+ "ProvisioningState": "System.String",
+ "OutputsString": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
@@ -3588,9 +3659,9 @@
},
{
"VerbName": "Get",
- "NounName": "AzTenantDeploymentOperation",
- "Name": "Get-AzTenantDeploymentOperation",
- "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureTenantDeploymentOperationCmdlet",
+ "NounName": "AzDeployment",
+ "Name": "Get-AzDeployment",
+ "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentCmdlet",
"SupportsShouldProcess": false,
"ConfirmImpact": 2,
"SupportsPaging": false,
@@ -3599,15 +3670,26 @@
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
- "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeploymentOperation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeploymentOperation, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "StatusMessage": "System.Object",
+ "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
+ "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
+ "TemplateLink": "Microsoft.Azure.Management.ResourceManager.Models.TemplateLink",
+ "Parameters": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
+ "Outputs": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
+ "Timestamp": "System.DateTime",
+ "ParametersString": "System.String",
+ "DeploymentDebugLogLevel": "System.String",
+ "TemplateLinkString": "System.String",
"Id": "System.String",
- "OperationId": "System.String",
+ "CorrelationId": "System.String",
+ "DeploymentName": "System.String",
+ "ResourceGroupName": "System.String",
+ "ManagementGroupId": "System.String",
+ "Location": "System.String",
"ProvisioningState": "System.String",
- "StatusCode": "System.String",
- "TargetResource": "System.String"
+ "OutputsString": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -3653,8 +3735,10 @@
],
"Parameters": [
{
- "Name": "DeploymentName",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "DeploymentName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -3671,8 +3755,11 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "OperationId",
- "AliasList": [],
+ "Name": "Id",
+ "AliasList": [
+ "DeploymentId",
+ "ResourceId"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -3686,75 +3773,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "DeploymentObject",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
- "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
- "Properties": {
- "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
- "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
- "TemplateLink": "Microsoft.Azure.Management.ResourceManager.Models.TemplateLink",
- "Parameters": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
- "Outputs": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
- "Timestamp": "System.DateTime",
- "ParametersString": "System.String",
- "DeploymentDebugLogLevel": "System.String",
- "TemplateLinkString": "System.String",
- "Id": "System.String",
- "CorrelationId": "System.String",
- "DeploymentName": "System.String",
- "ResourceGroupName": "System.String",
- "ManagementGroupId": "System.String",
- "Location": "System.String",
- "ProvisioningState": "System.String",
- "OutputsString": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
- },
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
{
"Name": "ApiVersion",
@@ -3832,8 +3851,10 @@
"Parameters": [
{
"ParameterMetadata": {
- "Name": "DeploymentName",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "DeploymentName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -3849,32 +3870,8 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "OperationId",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
"Mandatory": false,
- "Position": -2147483648,
+ "Position": 0,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
@@ -3968,80 +3965,33 @@
]
},
{
- "Name": "GetByDeploymentObject",
+ "Name": "GetByDeploymentId",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "DeploymentObject",
- "AliasList": [],
+ "Name": "Id",
+ "AliasList": [
+ "DeploymentId",
+ "ResourceId"
+ ],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
- "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
- "Properties": {
- "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
- "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
- "TemplateLink": "Microsoft.Azure.Management.ResourceManager.Models.TemplateLink",
- "Parameters": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
- "Outputs": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
- "Timestamp": "System.DateTime",
- "ParametersString": "System.String",
- "DeploymentDebugLogLevel": "System.String",
- "TemplateLinkString": "System.String",
- "Id": "System.String",
- "CorrelationId": "System.String",
- "DeploymentName": "System.String",
- "ResourceGroupName": "System.String",
- "ManagementGroupId": "System.String",
- "Location": "System.String",
- "ProvisioningState": "System.String",
- "OutputsString": "System.String"
- },
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
- },
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": true,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
@@ -4226,41 +4176,32 @@
]
}
],
- "AliasList": []
+ "AliasList": [
+ "Get-AzSubscriptionDeployment"
+ ]
},
{
- "VerbName": "New",
- "NounName": "AzManagementGroupDeployment",
- "Name": "New-AzManagementGroupDeployment",
- "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureManagementGroupDeploymentCmdlet",
- "SupportsShouldProcess": true,
+ "VerbName": "Get",
+ "NounName": "AzDeploymentOperation",
+ "Name": "Get-AzDeploymentOperation",
+ "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentOperationCmdlet",
+ "SupportsShouldProcess": false,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "ByTemplateFileWithNoParameters",
+ "DefaultParameterSetName": "GetByDeploymentName",
"OutputTypes": [
{
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
- "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeploymentOperation",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeploymentOperation, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
- "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
- "TemplateLink": "Microsoft.Azure.Management.ResourceManager.Models.TemplateLink",
- "Parameters": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
- "Outputs": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
- "Timestamp": "System.DateTime",
- "ParametersString": "System.String",
- "DeploymentDebugLogLevel": "System.String",
- "TemplateLinkString": "System.String",
+ "StatusMessage": "System.Object",
"Id": "System.String",
- "CorrelationId": "System.String",
- "DeploymentName": "System.String",
- "ResourceGroupName": "System.String",
- "ManagementGroupId": "System.String",
- "Location": "System.String",
+ "OperationId": "System.String",
"ProvisioningState": "System.String",
- "OutputsString": "System.String"
+ "StatusCode": "System.String",
+ "TargetResource": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4306,117 +4247,7 @@
],
"Parameters": [
{
- "Name": "Name",
- "AliasList": [
- "DeploymentName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "ManagementGroupId",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "Location",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "DeploymentDebugLogLevel",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "AsJob",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "TemplateParameterObject",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "TemplateParameterFile",
+ "Name": "DeploymentName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -4434,7 +4265,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "TemplateParameterUri",
+ "Name": "OperationId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -4449,74 +4280,70 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "TemplateObject",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
{
- "Name": "TemplateFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "TemplateUri",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "SkipTemplateParameterPrompt",
+ "Name": "DeploymentObject",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
+ "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
+ "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
+ "TemplateLink": "Microsoft.Azure.Management.ResourceManager.Models.TemplateLink",
+ "Parameters": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
+ "Outputs": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
+ "Timestamp": "System.DateTime",
+ "ParametersString": "System.String",
+ "DeploymentDebugLogLevel": "System.String",
+ "TemplateLinkString": "System.String",
+ "Id": "System.String",
+ "CorrelationId": "System.String",
+ "DeploymentName": "System.String",
+ "ResourceGroupName": "System.String",
+ "ManagementGroupId": "System.String",
+ "Location": "System.String",
+ "ProvisioningState": "System.String",
+ "OutputsString": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
@@ -4595,14 +4422,12 @@
],
"ParameterSets": [
{
- "Name": "__AllParameterSets",
+ "Name": "GetByDeploymentName",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "DeploymentName"
- ],
+ "Name": "DeploymentName",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -4618,14 +4443,14 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ManagementGroupId",
+ "Name": "OperationId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -4640,16 +4465,16 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Location",
+ "Name": "ApiVersion",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -4666,19 +4491,19 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DeploymentDebugLogLevel",
+ "Name": "Pre",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4697,16 +4522,31 @@
},
{
"ParameterMetadata": {
- "Name": "AsJob",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
@@ -4718,29 +4558,84 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "GetByDeploymentObject",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "SkipTemplateParameterPrompt",
+ "Name": "DeploymentObject",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
+ "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
+ "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
+ "TemplateLink": "Microsoft.Azure.Management.ResourceManager.Models.TemplateLink",
+ "Parameters": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
+ "Outputs": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
+ "Timestamp": "System.DateTime",
+ "ParametersString": "System.String",
+ "DeploymentDebugLogLevel": "System.String",
+ "TemplateLinkString": "System.String",
+ "Id": "System.String",
+ "CorrelationId": "System.String",
+ "DeploymentName": "System.String",
+ "ResourceGroupName": "System.String",
+ "ManagementGroupId": "System.String",
+ "Location": "System.String",
+ "ProvisioningState": "System.String",
+ "OutputsString": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
@@ -4833,62 +4728,12 @@
]
},
{
- "Name": "ByTemplateObjectAndParameterObject",
+ "Name": "__AllParameterSets",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateParameterObject",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "TemplateObject",
+ "Name": "ApiVersion",
"AliasList": [],
- "Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "DeploymentName"
- ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -4911,60 +4756,12 @@
},
{
"ParameterMetadata": {
- "Name": "ManagementGroupId",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Location",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DeploymentDebugLogLevel",
+ "Name": "Pre",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4983,16 +4780,31 @@
},
{
"ParameterMetadata": {
- "Name": "AsJob",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
@@ -5004,15 +4816,216 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "SkipTemplateParameterPrompt",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ }
+ ]
+ }
+ ],
+ "AliasList": [
+ "Get-AzSubscriptionDeploymentOperation"
+ ]
+ },
+ {
+ "VerbName": "Get",
+ "NounName": "AzTenantDeployment",
+ "Name": "Get-AzTenantDeployment",
+ "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureTenantDeploymentCmdlet",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "GetByDeploymentName",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
+ "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
+ "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
+ "TemplateLink": "Microsoft.Azure.Management.ResourceManager.Models.TemplateLink",
+ "Parameters": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
+ "Outputs": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
+ "Timestamp": "System.DateTime",
+ "ParametersString": "System.String",
+ "DeploymentDebugLogLevel": "System.String",
+ "TemplateLinkString": "System.String",
+ "Id": "System.String",
+ "CorrelationId": "System.String",
+ "DeploymentName": "System.String",
+ "ResourceGroupName": "System.String",
+ "ManagementGroupId": "System.String",
+ "Location": "System.String",
+ "ProvisioningState": "System.String",
+ "OutputsString": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "Name",
+ "AliasList": [
+ "DeploymentName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Id",
+ "AliasList": [
+ "DeploymentId",
+ "ResourceId"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ApiVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Pre",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "GetByDeploymentName",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "DeploymentName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -5022,10 +5035,10 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": false,
- "Position": -2147483648,
+ "Position": 0,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
@@ -5119,61 +5132,14 @@
]
},
{
- "Name": "ByTemplateFileAndParameterObject",
+ "Name": "GetByDeploymentId",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateParameterObject",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "TemplateFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "Name",
+ "Name": "Id",
"AliasList": [
- "DeploymentName"
+ "DeploymentId",
+ "ResourceId"
],
"Type": {
"Namespace": "System",
@@ -5190,30 +5156,6 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "ManagementGroupId",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
"Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
@@ -5221,7 +5163,7 @@
},
{
"ParameterMetadata": {
- "Name": "Location",
+ "Name": "ApiVersion",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -5238,30 +5180,6 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DeploymentDebugLogLevel",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
@@ -5269,7 +5187,7 @@
},
{
"ParameterMetadata": {
- "Name": "AsJob",
+ "Name": "Pre",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -5293,16 +5211,31 @@
},
{
"ParameterMetadata": {
- "Name": "SkipTemplateParameterPrompt",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
@@ -5314,7 +5247,12 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
"Name": "ApiVersion",
@@ -5403,135 +5341,257 @@
"ValueFromPipelineByPropertyName": false
}
]
- },
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Get",
+ "NounName": "AzTenantDeploymentOperation",
+ "Name": "Get-AzTenantDeploymentOperation",
+ "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureTenantDeploymentOperationCmdlet",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "GetByDeploymentName",
+ "OutputTypes": [
{
- "Name": "ByTemplateUriAndParameterObject",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "TemplateParameterObject",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
+ "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeploymentOperation",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeploymentOperation, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "StatusMessage": "System.Object",
+ "Id": "System.String",
+ "OperationId": "System.String",
+ "ProvisioningState": "System.String",
+ "StatusCode": "System.String",
+ "TargetResource": "System.String"
},
- {
- "ParameterMetadata": {
- "Name": "TemplateUri",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
},
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "DeploymentName"
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ReturnType": "System.Boolean"
},
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "ManagementGroupId",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
},
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Location",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "DeploymentName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "OperationId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DeploymentObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
+ "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
+ "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
+ "TemplateLink": "Microsoft.Azure.Management.ResourceManager.Models.TemplateLink",
+ "Parameters": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
+ "Outputs": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
+ "Timestamp": "System.DateTime",
+ "ParametersString": "System.String",
+ "DeploymentDebugLogLevel": "System.String",
+ "TemplateLinkString": "System.String",
+ "Id": "System.String",
+ "CorrelationId": "System.String",
+ "DeploymentName": "System.String",
+ "ResourceGroupName": "System.String",
+ "ManagementGroupId": "System.String",
+ "Location": "System.String",
+ "ProvisioningState": "System.String",
+ "OutputsString": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
},
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ApiVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Pre",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "GetByDeploymentName",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "DeploymentDebugLogLevel",
+ "Name": "DeploymentName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -5546,45 +5606,21 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "AsJob",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "SkipTemplateParameterPrompt",
+ "Name": "OperationId",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -5691,45 +5727,71 @@
]
},
{
- "Name": "ByTemplateObjectAndParameterFile",
+ "Name": "GetByDeploymentObject",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateParameterFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "TemplateObject",
+ "Name": "DeploymentObject",
"AliasList": [],
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
+ "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
+ "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
+ "TemplateLink": "Microsoft.Azure.Management.ResourceManager.Models.TemplateLink",
+ "Parameters": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
+ "Outputs": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
+ "Timestamp": "System.DateTime",
+ "ParametersString": "System.String",
+ "DeploymentDebugLogLevel": "System.String",
+ "TemplateLinkString": "System.String",
+ "Id": "System.String",
+ "CorrelationId": "System.String",
+ "DeploymentName": "System.String",
+ "ResourceGroupName": "System.String",
+ "ManagementGroupId": "System.String",
+ "Location": "System.String",
+ "ProvisioningState": "System.String",
+ "OutputsString": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
@@ -5738,62 +5800,12 @@
},
"Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "DeploymentName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "ManagementGroupId",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Location",
+ "Name": "ApiVersion",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -5810,30 +5822,6 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DeploymentDebugLogLevel",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
@@ -5841,7 +5829,7 @@
},
{
"ParameterMetadata": {
- "Name": "AsJob",
+ "Name": "Pre",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -5865,16 +5853,31 @@
},
{
"ParameterMetadata": {
- "Name": "SkipTemplateParameterPrompt",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
@@ -5886,7 +5889,12 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
"Name": "ApiVersion",
@@ -5975,58 +5983,379 @@
"ValueFromPipelineByPropertyName": false
}
]
- },
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "New",
+ "NounName": "AzManagementGroupDeployment",
+ "Name": "New-AzManagementGroupDeployment",
+ "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureManagementGroupDeploymentCmdlet",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ByTemplateFileWithNoParameters",
+ "OutputTypes": [
{
- "Name": "ByTemplateFileAndParameterFile",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "TemplateParameterFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
+ "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
+ "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
+ "TemplateLink": "Microsoft.Azure.Management.ResourceManager.Models.TemplateLink",
+ "Parameters": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
+ "Outputs": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
+ "Timestamp": "System.DateTime",
+ "ParametersString": "System.String",
+ "DeploymentDebugLogLevel": "System.String",
+ "TemplateLinkString": "System.String",
+ "Id": "System.String",
+ "CorrelationId": "System.String",
+ "DeploymentName": "System.String",
+ "ResourceGroupName": "System.String",
+ "ManagementGroupId": "System.String",
+ "Location": "System.String",
+ "ProvisioningState": "System.String",
+ "OutputsString": "System.String"
},
- {
- "ParameterMetadata": {
- "Name": "TemplateFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
},
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "Name",
+ "AliasList": [
+ "DeploymentName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ManagementGroupId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Location",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "DeploymentDebugLogLevel",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "TemplateParameterObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "TemplateParameterFile",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "TemplateParameterUri",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "TemplateObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "TemplateFile",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "TemplateUri",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "SkipTemplateParameterPrompt",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ApiVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Pre",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
"Name": "Name",
@@ -6263,16 +6592,16 @@
]
},
{
- "Name": "ByTemplateUriAndParameterFile",
+ "Name": "ByTemplateObjectAndParameterObject",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateParameterFile",
+ "Name": "TemplateParameterObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -6282,7 +6611,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": true,
"Position": -2147483648,
@@ -6291,12 +6620,12 @@
},
{
"ParameterMetadata": {
- "Name": "TemplateUri",
+ "Name": "TemplateObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -6306,7 +6635,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": true,
"Position": -2147483648,
@@ -6549,16 +6878,16 @@
]
},
{
- "Name": "ByTemplateObjectAndParameterUri",
+ "Name": "ByTemplateFileAndParameterObject",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateParameterUri",
+ "Name": "TemplateParameterObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -6568,7 +6897,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": true,
"Position": -2147483648,
@@ -6577,12 +6906,12 @@
},
{
"ParameterMetadata": {
- "Name": "TemplateObject",
+ "Name": "TemplateFile",
"AliasList": [],
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -6592,7 +6921,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": true,
"Position": -2147483648,
@@ -6835,16 +7164,16 @@
]
},
{
- "Name": "ByTemplateFileAndParameterUri",
+ "Name": "ByTemplateUriAndParameterObject",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateParameterUri",
+ "Name": "TemplateParameterObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -6854,7 +7183,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": true,
"Position": -2147483648,
@@ -6863,7 +7192,7 @@
},
{
"ParameterMetadata": {
- "Name": "TemplateFile",
+ "Name": "TemplateUri",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -7121,11 +7450,11 @@
]
},
{
- "Name": "ByTemplateUriAndParameterUri",
+ "Name": "ByTemplateObjectAndParameterFile",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateParameterUri",
+ "Name": "TemplateParameterFile",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -7149,12 +7478,12 @@
},
{
"ParameterMetadata": {
- "Name": "TemplateUri",
+ "Name": "TemplateObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -7164,7 +7493,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": true,
"Position": -2147483648,
@@ -7407,61 +7736,11 @@
]
},
{
- "Name": "ByTemplateObjectWithNoParameters",
+ "Name": "ByTemplateFileAndParameterFile",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateObject",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "DeploymentName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "ManagementGroupId",
+ "Name": "TemplateParameterFile",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -7481,11 +7760,11 @@
"Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "Location",
+ "Name": "TemplateFile",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -7505,84 +7784,14 @@
"Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DeploymentDebugLogLevel",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "AsJob",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "SkipTemplateParameterPrompt",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "ApiVersion",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "DeploymentName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -7605,75 +7814,7 @@
},
{
"ParameterMetadata": {
- "Name": "Pre",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
- "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "ByTemplateFileWithNoParameters",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "TemplateFile",
+ "Name": "ManagementGroupId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -7693,61 +7834,11 @@
"Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "DeploymentName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ManagementGroupId",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Location",
+ "Name": "Location",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -7931,8 +8022,32 @@
]
},
{
- "Name": "ByTemplateUriWithNoParameters",
+ "Name": "ByTemplateUriAndParameterFile",
"Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "TemplateParameterFile",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
{
"ParameterMetadata": {
"Name": "TemplateUri",
@@ -8191,361 +8306,58 @@
"ValueFromPipelineByPropertyName": false
}
]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "New",
- "NounName": "AzDeployment",
- "Name": "New-AzDeployment",
- "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureSubscriptionDeploymentCmdlet",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "ByTemplateFileWithNoParameters",
- "OutputTypes": [
+ },
{
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
- "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
- "Properties": {
- "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
- "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
- "TemplateLink": "Microsoft.Azure.Management.ResourceManager.Models.TemplateLink",
- "Parameters": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
- "Outputs": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
- "Timestamp": "System.DateTime",
- "ParametersString": "System.String",
- "DeploymentDebugLogLevel": "System.String",
- "TemplateLinkString": "System.String",
- "Id": "System.String",
- "CorrelationId": "System.String",
- "DeploymentName": "System.String",
- "ResourceGroupName": "System.String",
- "ManagementGroupId": "System.String",
- "Location": "System.String",
- "ProvisioningState": "System.String",
- "OutputsString": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Boolean"
+ "Name": "ByTemplateObjectAndParameterUri",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "TemplateParameterUri",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
},
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TemplateObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
},
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
- },
- "ParameterSets": [
- "__AllParameterSets"
- ]
- }
- ],
- "Parameters": [
- {
- "Name": "Name",
- "AliasList": [
- "DeploymentName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "Location",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "DeploymentDebugLogLevel",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "AsJob",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "TemplateParameterObject",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "TemplateParameterFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "TemplateParameterUri",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "TemplateObject",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "TemplateFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "TemplateUri",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "SkipTemplateParameterPrompt",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "ApiVersion",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "Pre",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
- "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- }
- ],
- "ParameterSets": [
- {
- "Name": "__AllParameterSets",
- "Parameters": [
{
"ParameterMetadata": {
"Name": "Name",
@@ -8572,6 +8384,30 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "ManagementGroupId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "Location",
@@ -8758,16 +8594,16 @@
]
},
{
- "Name": "ByTemplateObjectAndParameterObject",
+ "Name": "ByTemplateFileAndParameterUri",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateParameterObject",
+ "Name": "TemplateParameterUri",
"AliasList": [],
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8777,7 +8613,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": true,
"Position": -2147483648,
@@ -8786,12 +8622,12 @@
},
{
"ParameterMetadata": {
- "Name": "TemplateObject",
+ "Name": "TemplateFile",
"AliasList": [],
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8801,7 +8637,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": true,
"Position": -2147483648,
@@ -8836,7 +8672,7 @@
},
{
"ParameterMetadata": {
- "Name": "Location",
+ "Name": "ManagementGroupId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -8860,7 +8696,7 @@
},
{
"ParameterMetadata": {
- "Name": "DeploymentDebugLogLevel",
+ "Name": "Location",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -8875,21 +8711,21 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "AsJob",
+ "Name": "DeploymentDebugLogLevel",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8908,7 +8744,31 @@
},
{
"ParameterMetadata": {
- "Name": "SkipTemplateParameterPrompt",
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SkipTemplateParameterPrompt",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -9020,16 +8880,16 @@
]
},
{
- "Name": "ByTemplateFileAndParameterObject",
+ "Name": "ByTemplateUriAndParameterUri",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateParameterObject",
+ "Name": "TemplateParameterUri",
"AliasList": [],
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9039,7 +8899,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": true,
"Position": -2147483648,
@@ -9048,7 +8908,7 @@
},
{
"ParameterMetadata": {
- "Name": "TemplateFile",
+ "Name": "TemplateUri",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -9096,6 +8956,30 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "ManagementGroupId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "Location",
@@ -9282,11 +9166,11 @@
]
},
{
- "Name": "ByTemplateUriAndParameterObject",
+ "Name": "ByTemplateObjectWithNoParameters",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateParameterObject",
+ "Name": "TemplateObject",
"AliasList": [],
"Type": {
"Namespace": "System.Collections",
@@ -9310,8 +9194,10 @@
},
{
"ParameterMetadata": {
- "Name": "TemplateUri",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "DeploymentName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -9327,17 +9213,15 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "DeploymentName"
- ],
+ "Name": "ManagementGroupId",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -9353,7 +9237,7 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -9544,11 +9428,11 @@
]
},
{
- "Name": "ByTemplateObjectAndParameterFile",
+ "Name": "ByTemplateFileWithNoParameters",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateParameterFile",
+ "Name": "TemplateFile",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -9570,30 +9454,6 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
- {
- "ParameterMetadata": {
- "Name": "TemplateObject",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
{
"ParameterMetadata": {
"Name": "Name",
@@ -9622,7 +9482,7 @@
},
{
"ParameterMetadata": {
- "Name": "Location",
+ "Name": "ManagementGroupId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -9646,7 +9506,7 @@
},
{
"ParameterMetadata": {
- "Name": "DeploymentDebugLogLevel",
+ "Name": "Location",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -9661,21 +9521,21 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "AsJob",
+ "Name": "DeploymentDebugLogLevel",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9694,7 +9554,7 @@
},
{
"ParameterMetadata": {
- "Name": "SkipTemplateParameterPrompt",
+ "Name": "AsJob",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -9718,31 +9578,7 @@
},
{
"ParameterMetadata": {
- "Name": "ApiVersion",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Pre",
+ "Name": "SkipTemplateParameterPrompt",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -9766,125 +9602,7 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
- "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "ByTemplateFileAndParameterFile",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "TemplateParameterFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "TemplateFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "DeploymentName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Location",
+ "Name": "ApiVersion",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -9901,30 +9619,6 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DeploymentDebugLogLevel",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
@@ -9932,79 +9626,7 @@
},
{
"ParameterMetadata": {
- "Name": "AsJob",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "SkipTemplateParameterPrompt",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "ApiVersion",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Pre",
+ "Name": "Pre",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -10068,11 +9690,11 @@
]
},
{
- "Name": "ByTemplateUriAndParameterFile",
+ "Name": "ByTemplateUriWithNoParameters",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateParameterFile",
+ "Name": "TemplateUri",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -10096,8 +9718,10 @@
},
{
"ParameterMetadata": {
- "Name": "TemplateUri",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "DeploymentName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -10113,17 +9737,15 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "DeploymentName"
- ],
+ "Name": "ManagementGroupId",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -10139,7 +9761,7 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -10328,58 +9950,361 @@
"ValueFromPipelineByPropertyName": false
}
]
- },
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "New",
+ "NounName": "AzDeployment",
+ "Name": "New-AzDeployment",
+ "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureSubscriptionDeploymentCmdlet",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ByTemplateFileWithNoParameters",
+ "OutputTypes": [
{
- "Name": "ByTemplateObjectAndParameterUri",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "TemplateParameterUri",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
+ "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
+ "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
+ "TemplateLink": "Microsoft.Azure.Management.ResourceManager.Models.TemplateLink",
+ "Parameters": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
+ "Outputs": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
+ "Timestamp": "System.DateTime",
+ "ParametersString": "System.String",
+ "DeploymentDebugLogLevel": "System.String",
+ "TemplateLinkString": "System.String",
+ "Id": "System.String",
+ "CorrelationId": "System.String",
+ "DeploymentName": "System.String",
+ "ResourceGroupName": "System.String",
+ "ManagementGroupId": "System.String",
+ "Location": "System.String",
+ "ProvisioningState": "System.String",
+ "OutputsString": "System.String"
},
- {
- "ParameterMetadata": {
- "Name": "TemplateObject",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
},
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "Name",
+ "AliasList": [
+ "DeploymentName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Location",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "DeploymentDebugLogLevel",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "TemplateParameterObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "TemplateParameterFile",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "TemplateParameterUri",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "TemplateObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "TemplateFile",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "TemplateUri",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "SkipTemplateParameterPrompt",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ApiVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Pre",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
"Name": "Name",
@@ -10592,16 +10517,16 @@
]
},
{
- "Name": "ByTemplateFileAndParameterUri",
+ "Name": "ByTemplateObjectAndParameterObject",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateParameterUri",
+ "Name": "TemplateParameterObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10611,7 +10536,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": true,
"Position": -2147483648,
@@ -10620,14 +10545,14 @@
},
{
"ParameterMetadata": {
- "Name": "TemplateFile",
+ "Name": "TemplateObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
@@ -10635,7 +10560,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": true,
"Position": -2147483648,
@@ -10854,16 +10779,16 @@
]
},
{
- "Name": "ByTemplateUriAndParameterUri",
+ "Name": "ByTemplateFileAndParameterObject",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateParameterUri",
+ "Name": "TemplateParameterObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10873,7 +10798,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": true,
"Position": -2147483648,
@@ -10882,7 +10807,7 @@
},
{
"ParameterMetadata": {
- "Name": "TemplateUri",
+ "Name": "TemplateFile",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -11116,11 +11041,11 @@
]
},
{
- "Name": "ByTemplateObjectWithNoParameters",
+ "Name": "ByTemplateUriAndParameterObject",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateObject",
+ "Name": "TemplateParameterObject",
"AliasList": [],
"Type": {
"Namespace": "System.Collections",
@@ -11144,221 +11069,7 @@
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "DeploymentName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Location",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DeploymentDebugLogLevel",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "AsJob",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "SkipTemplateParameterPrompt",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "ApiVersion",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Pre",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
- "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "ByTemplateFileWithNoParameters",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "TemplateFile",
+ "Name": "TemplateUri",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -11592,11 +11303,11 @@
]
},
{
- "Name": "ByTemplateUriWithNoParameters",
+ "Name": "ByTemplateObjectAndParameterFile",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateUri",
+ "Name": "TemplateParameterFile",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -11618,6 +11329,30 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
+ {
+ "ParameterMetadata": {
+ "Name": "TemplateObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
{
"ParameterMetadata": {
"Name": "Name",
@@ -11828,363 +11563,58 @@
"ValueFromPipelineByPropertyName": false
}
]
- }
- ],
- "AliasList": [
- "New-AzSubscriptionDeployment"
- ]
- },
- {
- "VerbName": "New",
- "NounName": "AzTenantDeployment",
- "Name": "New-AzTenantDeployment",
- "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureTenantDeploymentCmdlet",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "ByTemplateFileWithNoParameters",
- "OutputTypes": [
+ },
{
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
- "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
- "Properties": {
- "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
- "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
- "TemplateLink": "Microsoft.Azure.Management.ResourceManager.Models.TemplateLink",
- "Parameters": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
- "Outputs": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
- "Timestamp": "System.DateTime",
- "ParametersString": "System.String",
- "DeploymentDebugLogLevel": "System.String",
- "TemplateLinkString": "System.String",
- "Id": "System.String",
- "CorrelationId": "System.String",
- "DeploymentName": "System.String",
- "ResourceGroupName": "System.String",
- "ManagementGroupId": "System.String",
- "Location": "System.String",
- "ProvisioningState": "System.String",
- "OutputsString": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Boolean"
+ "Name": "ByTemplateFileAndParameterFile",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "TemplateParameterFile",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
},
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TemplateFile",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
},
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
- },
- "ParameterSets": [
- "__AllParameterSets"
- ]
- }
- ],
- "Parameters": [
- {
- "Name": "Name",
- "AliasList": [
- "DeploymentName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "Location",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "DeploymentDebugLogLevel",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "AsJob",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "TemplateParameterObject",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "TemplateParameterFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "TemplateParameterUri",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "TemplateObject",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "TemplateFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "TemplateUri",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "SkipTemplateParameterPrompt",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "ApiVersion",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "Pre",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
- "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- }
- ],
- "ParameterSets": [
- {
- "Name": "__AllParameterSets",
- "Parameters": [
{
"ParameterMetadata": {
"Name": "Name",
@@ -12397,16 +11827,16 @@
]
},
{
- "Name": "ByTemplateObjectAndParameterObject",
+ "Name": "ByTemplateUriAndParameterFile",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateParameterObject",
+ "Name": "TemplateParameterFile",
"AliasList": [],
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -12416,7 +11846,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": true,
"Position": -2147483648,
@@ -12425,12 +11855,12 @@
},
{
"ParameterMetadata": {
- "Name": "TemplateObject",
+ "Name": "TemplateUri",
"AliasList": [],
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -12440,7 +11870,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": true,
"Position": -2147483648,
@@ -12659,16 +12089,16 @@
]
},
{
- "Name": "ByTemplateFileAndParameterObject",
+ "Name": "ByTemplateObjectAndParameterUri",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateParameterObject",
+ "Name": "TemplateParameterUri",
"AliasList": [],
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -12678,7 +12108,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": true,
"Position": -2147483648,
@@ -12687,12 +12117,12 @@
},
{
"ParameterMetadata": {
- "Name": "TemplateFile",
+ "Name": "TemplateObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -12702,7 +12132,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": true,
"Position": -2147483648,
@@ -12921,16 +12351,16 @@
]
},
{
- "Name": "ByTemplateUriAndParameterObject",
+ "Name": "ByTemplateFileAndParameterUri",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateParameterObject",
+ "Name": "TemplateParameterUri",
"AliasList": [],
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -12940,7 +12370,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": true,
"Position": -2147483648,
@@ -12949,7 +12379,7 @@
},
{
"ParameterMetadata": {
- "Name": "TemplateUri",
+ "Name": "TemplateFile",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -13183,11 +12613,11 @@
]
},
{
- "Name": "ByTemplateObjectAndParameterFile",
+ "Name": "ByTemplateUriAndParameterUri",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateParameterFile",
+ "Name": "TemplateParameterUri",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -13211,12 +12641,12 @@
},
{
"ParameterMetadata": {
- "Name": "TemplateObject",
+ "Name": "TemplateUri",
"AliasList": [],
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -13226,7 +12656,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": true,
"Position": -2147483648,
@@ -13445,11 +12875,61 @@
]
},
{
- "Name": "ByTemplateFileAndParameterFile",
+ "Name": "ByTemplateObjectWithNoParameters",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateParameterFile",
+ "Name": "TemplateObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "DeploymentName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Location",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -13469,8 +12949,172 @@
"Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DeploymentDebugLogLevel",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SkipTemplateParameterPrompt",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
},
+ {
+ "ParameterMetadata": {
+ "Name": "ApiVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Pre",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "ByTemplateFileWithNoParameters",
+ "Parameters": [
{
"ParameterMetadata": {
"Name": "TemplateFile",
@@ -13707,32 +13351,8 @@
]
},
{
- "Name": "ByTemplateUriAndParameterFile",
+ "Name": "ByTemplateUriWithNoParameters",
"Parameters": [
- {
- "ParameterMetadata": {
- "Name": "TemplateParameterFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
{
"ParameterMetadata": {
"Name": "TemplateUri",
@@ -13967,58 +13587,363 @@
"ValueFromPipelineByPropertyName": false
}
]
- },
+ }
+ ],
+ "AliasList": [
+ "New-AzSubscriptionDeployment"
+ ]
+ },
+ {
+ "VerbName": "New",
+ "NounName": "AzTenantDeployment",
+ "Name": "New-AzTenantDeployment",
+ "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureTenantDeploymentCmdlet",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ByTemplateFileWithNoParameters",
+ "OutputTypes": [
{
- "Name": "ByTemplateObjectAndParameterUri",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "TemplateParameterUri",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
+ "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
+ "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
+ "TemplateLink": "Microsoft.Azure.Management.ResourceManager.Models.TemplateLink",
+ "Parameters": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
+ "Outputs": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
+ "Timestamp": "System.DateTime",
+ "ParametersString": "System.String",
+ "DeploymentDebugLogLevel": "System.String",
+ "TemplateLinkString": "System.String",
+ "Id": "System.String",
+ "CorrelationId": "System.String",
+ "DeploymentName": "System.String",
+ "ResourceGroupName": "System.String",
+ "ManagementGroupId": "System.String",
+ "Location": "System.String",
+ "ProvisioningState": "System.String",
+ "OutputsString": "System.String"
},
- {
- "ParameterMetadata": {
- "Name": "TemplateObject",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
},
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "Name",
+ "AliasList": [
+ "DeploymentName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Location",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "DeploymentDebugLogLevel",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "TemplateParameterObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "TemplateParameterFile",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "TemplateParameterUri",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "TemplateObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "TemplateFile",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "TemplateUri",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "SkipTemplateParameterPrompt",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ApiVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Pre",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
"Name": "Name",
@@ -14231,16 +14156,16 @@
]
},
{
- "Name": "ByTemplateFileAndParameterUri",
+ "Name": "ByTemplateObjectAndParameterObject",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateParameterUri",
+ "Name": "TemplateParameterObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -14250,7 +14175,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": true,
"Position": -2147483648,
@@ -14259,12 +14184,12 @@
},
{
"ParameterMetadata": {
- "Name": "TemplateFile",
+ "Name": "TemplateObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -14274,7 +14199,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": true,
"Position": -2147483648,
@@ -14493,16 +14418,16 @@
]
},
{
- "Name": "ByTemplateUriAndParameterUri",
+ "Name": "ByTemplateFileAndParameterObject",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateParameterUri",
+ "Name": "TemplateParameterObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -14512,7 +14437,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": true,
"Position": -2147483648,
@@ -14521,7 +14446,7 @@
},
{
"ParameterMetadata": {
- "Name": "TemplateUri",
+ "Name": "TemplateFile",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -14755,11 +14680,11 @@
]
},
{
- "Name": "ByTemplateObjectWithNoParameters",
+ "Name": "ByTemplateUriAndParameterObject",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateObject",
+ "Name": "TemplateParameterObject",
"AliasList": [],
"Type": {
"Namespace": "System.Collections",
@@ -14781,6 +14706,30 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
+ {
+ "ParameterMetadata": {
+ "Name": "TemplateUri",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
{
"ParameterMetadata": {
"Name": "Name",
@@ -14993,11 +14942,11 @@
]
},
{
- "Name": "ByTemplateFileWithNoParameters",
+ "Name": "ByTemplateObjectAndParameterFile",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateFile",
+ "Name": "TemplateParameterFile",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -15019,6 +14968,30 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
+ {
+ "ParameterMetadata": {
+ "Name": "TemplateObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
{
"ParameterMetadata": {
"Name": "Name",
@@ -15231,11 +15204,35 @@
]
},
{
- "Name": "ByTemplateUriWithNoParameters",
+ "Name": "ByTemplateFileAndParameterFile",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateUri",
+ "Name": "TemplateParameterFile",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TemplateFile",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -15467,277 +15464,37 @@
"ValueFromPipelineByPropertyName": false
}
]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "Remove",
- "NounName": "AzManagementGroupDeployment",
- "Name": "Remove-AzManagementGroupDeployment",
- "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureManagementGroupDeploymentCmdlet",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "RemoveByDeploymentName",
- "OutputTypes": [
- {
- "Type": {
- "Namespace": "System",
- "Name": "System.Boolean",
- "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ParameterSets": [
- "__AllParameterSets"
- ]
- }
- ],
- "Parameters": [
- {
- "Name": "ManagementGroupId",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
},
{
- "Name": "Name",
- "AliasList": [
- "DeploymentName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "Id",
- "AliasList": [
- "DeploymentId",
- "ResourceId"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "InputObject",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
- "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
- "Properties": {
- "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
- "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
- "TemplateLink": "Microsoft.Azure.Management.ResourceManager.Models.TemplateLink",
- "Parameters": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
- "Outputs": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
- "Timestamp": "System.DateTime",
- "ParametersString": "System.String",
- "DeploymentDebugLogLevel": "System.String",
- "TemplateLinkString": "System.String",
- "Id": "System.String",
- "CorrelationId": "System.String",
- "DeploymentName": "System.String",
- "ResourceGroupName": "System.String",
- "ManagementGroupId": "System.String",
- "Location": "System.String",
- "ProvisioningState": "System.String",
- "OutputsString": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
+ "Name": "ByTemplateUriAndParameterFile",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "TemplateParameterFile",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
},
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "AsJob",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "PassThru",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "ApiVersion",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "Pre",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
- "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- }
- ],
- "ParameterSets": [
- {
- "Name": "RemoveByDeploymentName",
- "Parameters": [
{
"ParameterMetadata": {
- "Name": "ManagementGroupId",
+ "Name": "TemplateUri",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -15755,9 +15512,9 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": 0,
+ "Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
@@ -15780,8 +15537,56 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Location",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
"Mandatory": true,
- "Position": 1,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DeploymentDebugLogLevel",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
@@ -15811,7 +15616,7 @@
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "SkipTemplateParameterPrompt",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -15923,15 +15728,12 @@
]
},
{
- "Name": "RemoveByDeploymentId",
+ "Name": "ByTemplateObjectAndParameterUri",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Id",
- "AliasList": [
- "DeploymentId",
- "ResourceId"
- ],
+ "Name": "TemplateParameterUri",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -15950,16 +15752,16 @@
"Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "AsJob",
+ "Name": "TemplateObject",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -15971,6 +15773,32 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "DeploymentName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
@@ -15978,12 +15806,12 @@
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "Location",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -15993,16 +15821,16 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ApiVersion",
+ "Name": "DeploymentDebugLogLevel",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -16017,7 +15845,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
@@ -16026,7 +15854,7 @@
},
{
"ParameterMetadata": {
- "Name": "Pre",
+ "Name": "AsJob",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -16050,149 +15878,7 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
- "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "RemoveByInputObject",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "InputObject",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
- "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
- "Properties": {
- "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
- "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
- "TemplateLink": "Microsoft.Azure.Management.ResourceManager.Models.TemplateLink",
- "Parameters": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
- "Outputs": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
- "Timestamp": "System.DateTime",
- "ParametersString": "System.String",
- "DeploymentDebugLogLevel": "System.String",
- "TemplateLinkString": "System.String",
- "Id": "System.String",
- "CorrelationId": "System.String",
- "DeploymentName": "System.String",
- "ResourceGroupName": "System.String",
- "ManagementGroupId": "System.String",
- "Location": "System.String",
- "ProvisioningState": "System.String",
- "OutputsString": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
- },
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "AsJob",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "SkipTemplateParameterPrompt",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -16304,16 +15990,16 @@
]
},
{
- "Name": "__AllParameterSets",
+ "Name": "ByTemplateFileAndParameterUri",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "AsJob",
+ "Name": "TemplateParameterUri",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -16323,21 +16009,21 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "TemplateFile",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -16347,17 +16033,19 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "ApiVersion",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "DeploymentName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -16380,12 +16068,12 @@
},
{
"ParameterMetadata": {
- "Name": "Pre",
+ "Name": "Location",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -16395,309 +16083,17 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
- "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "Remove",
- "NounName": "AzDeployment",
- "Name": "Remove-AzDeployment",
- "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureSubscriptionDeploymentCmdlet",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "RemoveByDeploymentName",
- "OutputTypes": [
- {
- "Type": {
- "Namespace": "System",
- "Name": "System.Boolean",
- "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ParameterSets": [
- "__AllParameterSets"
- ]
- }
- ],
- "Parameters": [
- {
- "Name": "Name",
- "AliasList": [
- "DeploymentName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "Id",
- "AliasList": [
- "DeploymentId",
- "ResourceId"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "InputObject",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
- "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
- "Properties": {
- "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
- "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
- "TemplateLink": "Microsoft.Azure.Management.ResourceManager.Models.TemplateLink",
- "Parameters": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
- "Outputs": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
- "Timestamp": "System.DateTime",
- "ParametersString": "System.String",
- "DeploymentDebugLogLevel": "System.String",
- "TemplateLinkString": "System.String",
- "Id": "System.String",
- "CorrelationId": "System.String",
- "DeploymentName": "System.String",
- "ResourceGroupName": "System.String",
- "ManagementGroupId": "System.String",
- "Location": "System.String",
- "ProvisioningState": "System.String",
- "OutputsString": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
- },
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "AsJob",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "PassThru",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "ApiVersion",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "Pre",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
- "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- }
- ],
- "ParameterSets": [
- {
- "Name": "RemoveByDeploymentName",
- "Parameters": [
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "DeploymentName"
- ],
+ "Name": "DeploymentDebugLogLevel",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -16711,10 +16107,10 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
- "Position": 0,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
@@ -16744,7 +16140,7 @@
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "SkipTemplateParameterPrompt",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -16856,15 +16252,12 @@
]
},
{
- "Name": "RemoveByDeploymentId",
+ "Name": "ByTemplateUriAndParameterUri",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Id",
- "AliasList": [
- "DeploymentId",
- "ResourceId"
- ],
+ "Name": "TemplateParameterUri",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -16883,16 +16276,90 @@
"Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "AsJob",
+ "Name": "TemplateUri",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "DeploymentName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Location",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DeploymentDebugLogLevel",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -16911,7 +16378,31 @@
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SkipTemplateParameterPrompt",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -17023,71 +16514,21 @@
]
},
{
- "Name": "RemoveByInputObject",
+ "Name": "ByTemplateObjectWithNoParameters",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "TemplateObject",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
- "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
- "Properties": {
- "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
- "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
- "TemplateLink": "Microsoft.Azure.Management.ResourceManager.Models.TemplateLink",
- "Parameters": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
- "Outputs": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
- "Timestamp": "System.DateTime",
- "ParametersString": "System.String",
- "DeploymentDebugLogLevel": "System.String",
- "TemplateLinkString": "System.String",
- "Id": "System.String",
- "CorrelationId": "System.String",
- "DeploymentName": "System.String",
- "ResourceGroupName": "System.String",
- "ManagementGroupId": "System.String",
- "Location": "System.String",
- "ProvisioningState": "System.String",
- "OutputsString": "System.String"
- },
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
- },
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
@@ -17096,7 +16537,81 @@
},
"Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": true,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "DeploymentName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Location",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DeploymentDebugLogLevel",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
@@ -17125,7 +16640,7 @@
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "SkipTemplateParameterPrompt",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -17237,8 +16752,106 @@
]
},
{
- "Name": "__AllParameterSets",
+ "Name": "ByTemplateFileWithNoParameters",
"Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "TemplateFile",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "DeploymentName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Location",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DeploymentDebugLogLevel",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "AsJob",
@@ -17265,7 +16878,7 @@
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "SkipTemplateParameterPrompt",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -17375,130 +16988,384 @@
"ValueFromPipelineByPropertyName": false
}
]
- }
- ],
- "AliasList": [
- "Remove-AzSubscriptionDeployment"
- ]
- },
- {
- "VerbName": "Remove",
- "NounName": "AzTenantDeployment",
- "Name": "Remove-AzTenantDeployment",
- "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureTenantDeploymentCmdlet",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "RemoveByDeploymentName",
- "OutputTypes": [
- {
- "Type": {
- "Namespace": "System",
- "Name": "System.Boolean",
- "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ParameterSets": [
- "__AllParameterSets"
- ]
- }
- ],
- "Parameters": [
- {
- "Name": "Name",
- "AliasList": [
- "DeploymentName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "Id",
- "AliasList": [
- "DeploymentId",
- "ResourceId"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
},
{
- "Name": "InputObject",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
- "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
- "Properties": {
- "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
- "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
- "TemplateLink": "Microsoft.Azure.Management.ResourceManager.Models.TemplateLink",
- "Parameters": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
- "Outputs": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
- "Timestamp": "System.DateTime",
- "ParametersString": "System.String",
- "DeploymentDebugLogLevel": "System.String",
- "TemplateLinkString": "System.String",
- "Id": "System.String",
- "CorrelationId": "System.String",
- "DeploymentName": "System.String",
- "ResourceGroupName": "System.String",
- "ManagementGroupId": "System.String",
- "Location": "System.String",
- "ProvisioningState": "System.String",
- "OutputsString": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
+ "Name": "ByTemplateUriWithNoParameters",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "TemplateUri",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
},
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "DeploymentName"
],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
},
- {
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Location",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DeploymentDebugLogLevel",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SkipTemplateParameterPrompt",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ApiVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Pre",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Remove",
+ "NounName": "AzManagementGroupDeployment",
+ "Name": "Remove-AzManagementGroupDeployment",
+ "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureManagementGroupDeploymentCmdlet",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "RemoveByDeploymentName",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "ManagementGroupId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Name",
+ "AliasList": [
+ "DeploymentName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Id",
+ "AliasList": [
+ "DeploymentId",
+ "ResourceId"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
+ "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
+ "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
+ "TemplateLink": "Microsoft.Azure.Management.ResourceManager.Models.TemplateLink",
+ "Parameters": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
+ "Outputs": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
+ "Timestamp": "System.DateTime",
+ "ParametersString": "System.String",
+ "DeploymentDebugLogLevel": "System.String",
+ "TemplateLinkString": "System.String",
+ "Id": "System.String",
+ "CorrelationId": "System.String",
+ "DeploymentName": "System.String",
+ "ResourceGroupName": "System.String",
+ "ManagementGroupId": "System.String",
+ "Location": "System.String",
+ "ProvisioningState": "System.String",
+ "OutputsString": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
"Name": "GetType",
"Parameters": [],
"ReturnType": "System.Type"
@@ -17627,6 +17494,30 @@
{
"Name": "RemoveByDeploymentName",
"Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ManagementGroupId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "Name",
@@ -17649,7 +17540,7 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": 0,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
@@ -18315,59 +18206,25 @@
"AliasList": []
},
{
- "VerbName": "Save",
- "NounName": "AzManagementGroupDeploymentTemplate",
- "Name": "Save-AzManagementGroupDeploymentTemplate",
- "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.SaveAzureManagementGroupDeploymentTemplateCmdlet",
+ "VerbName": "Remove",
+ "NounName": "AzDeployment",
+ "Name": "Remove-AzDeployment",
+ "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureSubscriptionDeploymentCmdlet",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "SaveByDeploymentName",
+ "DefaultParameterSetName": "RemoveByDeploymentName",
"OutputTypes": [
{
"Type": {
- "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
- "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplatePath",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplatePath, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
- "Properties": {
- "Path": "System.String"
- },
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
- },
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ParameterSets": [
"__AllParameterSets"
@@ -18376,8 +18233,10 @@
],
"Parameters": [
{
- "Name": "ManagementGroupId",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "DeploymentName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -18394,9 +18253,10 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "DeploymentName",
+ "Name": "Id",
"AliasList": [
- "Name"
+ "DeploymentId",
+ "ResourceId"
],
"Type": {
"Namespace": "System",
@@ -18414,7 +18274,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "DeploymentObject",
+ "Name": "InputObject",
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
@@ -18482,12 +18342,12 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "Path",
+ "Name": "AsJob",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -18497,10 +18357,10 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
{
- "Name": "Force",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -18589,12 +18449,14 @@
],
"ParameterSets": [
{
- "Name": "SaveByDeploymentName",
+ "Name": "RemoveByDeploymentName",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ManagementGroupId",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "DeploymentName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -18611,16 +18473,62 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "DeploymentName",
- "AliasList": [
- "Name"
- ],
+ "Name": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ApiVersion",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -18636,15 +18544,86 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Path",
+ "Name": "Pre",
"AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "RemoveByDeploymentId",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Id",
+ "AliasList": [
+ "DeploymentId",
+ "ResourceId"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -18660,6 +18639,30 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
@@ -18667,7 +18670,7 @@
},
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -18779,11 +18782,11 @@
]
},
{
- "Name": "SaveByDeploymentObject",
+ "Name": "RemoveByInputObject",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "DeploymentObject",
+ "Name": "InputObject",
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
@@ -18857,12 +18860,12 @@
},
{
"ParameterMetadata": {
- "Name": "Path",
+ "Name": "AsJob",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -18872,7 +18875,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
@@ -18881,7 +18884,7 @@
},
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -18997,12 +19000,12 @@
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Path",
+ "Name": "AsJob",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -19012,7 +19015,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
@@ -19021,7 +19024,7 @@
},
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -19133,62 +19136,30 @@
]
}
],
- "AliasList": []
+ "AliasList": [
+ "Remove-AzSubscriptionDeployment"
+ ]
},
{
- "VerbName": "Save",
- "NounName": "AzDeploymentTemplate",
- "Name": "Save-AzDeploymentTemplate",
- "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.SaveAzureSubscriptionDeploymentTemplateCmdlet",
+ "VerbName": "Remove",
+ "NounName": "AzTenantDeployment",
+ "Name": "Remove-AzTenantDeployment",
+ "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureTenantDeploymentCmdlet",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "SaveByDeploymentName",
+ "DefaultParameterSetName": "RemoveByDeploymentName",
"OutputTypes": [
{
"Type": {
- "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
- "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplatePath",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplatePath, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
- "Properties": {
- "Path": "System.String"
- },
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
- },
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ParameterSets": [
"__AllParameterSets"
@@ -19197,9 +19168,9 @@
],
"Parameters": [
{
- "Name": "DeploymentName",
+ "Name": "Name",
"AliasList": [
- "Name"
+ "DeploymentName"
],
"Type": {
"Namespace": "System",
@@ -19217,7 +19188,28 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "DeploymentObject",
+ "Name": "Id",
+ "AliasList": [
+ "DeploymentId",
+ "ResourceId"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "InputObject",
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
@@ -19285,12 +19277,12 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "Path",
+ "Name": "AsJob",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -19300,10 +19292,10 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
{
- "Name": "Force",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -19392,13 +19384,13 @@
],
"ParameterSets": [
{
- "Name": "SaveByDeploymentName",
+ "Name": "RemoveByDeploymentName",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "DeploymentName",
+ "Name": "Name",
"AliasList": [
- "Name"
+ "DeploymentName"
],
"Type": {
"Namespace": "System",
@@ -19416,18 +19408,18 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": -2147483648,
+ "Position": 0,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Path",
+ "Name": "AsJob",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -19437,7 +19429,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
@@ -19446,7 +19438,7 @@
},
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -19558,86 +19550,15 @@
]
},
{
- "Name": "SaveByDeploymentObject",
+ "Name": "RemoveByDeploymentId",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "DeploymentObject",
- "AliasList": [],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
- "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
- "Properties": {
- "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
- "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
- "TemplateLink": "Microsoft.Azure.Management.ResourceManager.Models.TemplateLink",
- "Parameters": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
- "Outputs": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
- "Timestamp": "System.DateTime",
- "ParametersString": "System.String",
- "DeploymentDebugLogLevel": "System.String",
- "TemplateLinkString": "System.String",
- "Id": "System.String",
- "CorrelationId": "System.String",
- "DeploymentName": "System.String",
- "ResourceGroupName": "System.String",
- "ManagementGroupId": "System.String",
- "Location": "System.String",
- "ProvisioningState": "System.String",
- "OutputsString": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
- },
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": true,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Path",
- "AliasList": [],
+ "Name": "Id",
+ "AliasList": [
+ "DeploymentId",
+ "ResourceId"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -19653,14 +19574,14 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "AsJob",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -19684,31 +19605,7 @@
},
{
"ParameterMetadata": {
- "Name": "ApiVersion",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Pre",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -19732,51 +19629,7 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
- "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "__AllParameterSets",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "Path",
+ "Name": "ApiVersion",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -19800,7 +19653,313 @@
},
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "Pre",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "RemoveByInputObject",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
+ "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
+ "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
+ "TemplateLink": "Microsoft.Azure.Management.ResourceManager.Models.TemplateLink",
+ "Parameters": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
+ "Outputs": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
+ "Timestamp": "System.DateTime",
+ "ParametersString": "System.String",
+ "DeploymentDebugLogLevel": "System.String",
+ "TemplateLinkString": "System.String",
+ "Id": "System.String",
+ "CorrelationId": "System.String",
+ "DeploymentName": "System.String",
+ "ResourceGroupName": "System.String",
+ "ManagementGroupId": "System.String",
+ "Location": "System.String",
+ "ProvisioningState": "System.String",
+ "OutputsString": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ApiVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Pre",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -19912,15 +20071,13 @@
]
}
],
- "AliasList": [
- "Save-AzSubscriptionDeploymentTemplate"
- ]
+ "AliasList": []
},
{
"VerbName": "Save",
- "NounName": "AzTenantDeploymentTemplate",
- "Name": "Save-AzTenantDeploymentTemplate",
- "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.SaveAzureTenantDeploymentTemplateCmdlet",
+ "NounName": "AzManagementGroupDeploymentTemplate",
+ "Name": "Save-AzManagementGroupDeploymentTemplate",
+ "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.SaveAzureManagementGroupDeploymentTemplateCmdlet",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
@@ -19977,6 +20134,24 @@
}
],
"Parameters": [
+ {
+ "Name": "ManagementGroupId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
{
"Name": "DeploymentName",
"AliasList": [
@@ -20175,6 +20350,30 @@
{
"Name": "SaveByDeploymentName",
"Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ManagementGroupId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "DeploymentName",
@@ -20696,25 +20895,59 @@
"AliasList": []
},
{
- "VerbName": "Stop",
- "NounName": "AzManagementGroupDeployment",
- "Name": "Stop-AzManagementGroupDeployment",
- "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureManagementGroupDeploymentCmdlet",
+ "VerbName": "Save",
+ "NounName": "AzDeploymentTemplate",
+ "Name": "Save-AzDeploymentTemplate",
+ "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.SaveAzureSubscriptionDeploymentTemplateCmdlet",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "StopByDeploymentName",
+ "DefaultParameterSetName": "SaveByDeploymentName",
"OutputTypes": [
{
"Type": {
- "Namespace": "System",
- "Name": "System.Boolean",
- "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
+ "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplatePath",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplatePath, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Path": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
},
"ParameterSets": [
"__AllParameterSets"
@@ -20723,48 +20956,9 @@
],
"Parameters": [
{
- "Name": "ManagementGroupId",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "Name",
- "AliasList": [
- "DeploymentName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "Id",
+ "Name": "DeploymentName",
"AliasList": [
- "DeploymentId",
- "ResourceId"
+ "Name"
],
"Type": {
"Namespace": "System",
@@ -20782,7 +20976,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "InputObject",
+ "Name": "DeploymentObject",
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
@@ -20850,7 +21044,25 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "PassThru",
+ "Name": "Path",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Force",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -20939,12 +21151,14 @@
],
"ParameterSets": [
{
- "Name": "StopByDeploymentName",
+ "Name": "SaveByDeploymentName",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ManagementGroupId",
- "AliasList": [],
+ "Name": "DeploymentName",
+ "AliasList": [
+ "Name"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -20961,16 +21175,14 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": 0,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Name",
- "AliasList": [
- "DeploymentName"
- ],
+ "Name": "Path",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -20986,14 +21198,14 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
- "Position": 1,
+ "Mandatory": false,
+ "Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "Force",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -21105,15 +21317,86 @@
]
},
{
- "Name": "StopByDeploymentId",
+ "Name": "SaveByDeploymentObject",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Id",
- "AliasList": [
- "DeploymentId",
- "ResourceId"
- ],
+ "Name": "DeploymentObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
+ "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
+ "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
+ "TemplateLink": "Microsoft.Azure.Management.ResourceManager.Models.TemplateLink",
+ "Parameters": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
+ "Outputs": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
+ "Timestamp": "System.DateTime",
+ "ParametersString": "System.String",
+ "DeploymentDebugLogLevel": "System.String",
+ "TemplateLinkString": "System.String",
+ "Id": "System.String",
+ "CorrelationId": "System.String",
+ "DeploymentName": "System.String",
+ "ResourceGroupName": "System.String",
+ "ManagementGroupId": "System.String",
+ "Location": "System.String",
+ "ProvisioningState": "System.String",
+ "OutputsString": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Path",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -21129,14 +21412,14 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "Force",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -21248,201 +21531,35 @@
]
},
{
- "Name": "StopByInputObject",
+ "Name": "__AllParameterSets",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "Path",
"AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
- "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
- "Properties": {
- "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
- "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
- "TemplateLink": "Microsoft.Azure.Management.ResourceManager.Models.TemplateLink",
- "Parameters": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
- "Outputs": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
- "Timestamp": "System.DateTime",
- "ParametersString": "System.String",
- "DeploymentDebugLogLevel": "System.String",
- "TemplateLinkString": "System.String",
- "Id": "System.String",
- "CorrelationId": "System.String",
- "DeploymentName": "System.String",
- "ResourceGroupName": "System.String",
- "ManagementGroupId": "System.String",
- "Location": "System.String",
- "ProvisioningState": "System.String",
- "OutputsString": "System.String"
- },
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
- },
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
- "ValueFromPipeline": true,
+ "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "PassThru",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "ApiVersion",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Pre",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
- "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "__AllParameterSets",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "Force",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -21554,28 +21671,64 @@
]
}
],
- "AliasList": []
+ "AliasList": [
+ "Save-AzSubscriptionDeploymentTemplate"
+ ]
},
{
- "VerbName": "Stop",
- "NounName": "AzDeployment",
- "Name": "Stop-AzDeployment",
- "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureSubscriptionDeploymentCmdlet",
+ "VerbName": "Save",
+ "NounName": "AzTenantDeploymentTemplate",
+ "Name": "Save-AzTenantDeploymentTemplate",
+ "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.SaveAzureTenantDeploymentTemplateCmdlet",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "StopByDeploymentName",
+ "DefaultParameterSetName": "SaveByDeploymentName",
"OutputTypes": [
{
"Type": {
- "Namespace": "System",
- "Name": "System.Boolean",
- "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
+ "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplatePath",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSTemplatePath, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Path": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
},
"ParameterSets": [
"__AllParameterSets"
@@ -21584,30 +21737,9 @@
],
"Parameters": [
{
- "Name": "Name",
- "AliasList": [
- "DeploymentName"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "Id",
+ "Name": "DeploymentName",
"AliasList": [
- "DeploymentId",
- "ResourceId"
+ "Name"
],
"Type": {
"Namespace": "System",
@@ -21625,7 +21757,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "InputObject",
+ "Name": "DeploymentObject",
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
@@ -21693,7 +21825,25 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "PassThru",
+ "Name": "Path",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Force",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -21782,13 +21932,13 @@
],
"ParameterSets": [
{
- "Name": "StopByDeploymentName",
+ "Name": "SaveByDeploymentName",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "Name",
+ "Name": "DeploymentName",
"AliasList": [
- "DeploymentName"
+ "Name"
],
"Type": {
"Namespace": "System",
@@ -21806,37 +21956,13 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": 0,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "PassThru",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ApiVersion",
+ "Name": "Path",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -21860,102 +21986,7 @@
},
{
"ParameterMetadata": {
- "Name": "Pre",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
- "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "StopByDeploymentId",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "Id",
- "AliasList": [
- "DeploymentId",
- "ResourceId"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "Force",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -22067,11 +22098,11 @@
]
},
{
- "Name": "StopByInputObject",
+ "Name": "SaveByDeploymentObject",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "InputObject",
+ "Name": "DeploymentObject",
"AliasList": [],
"Type": {
"Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
@@ -22145,7 +22176,31 @@
},
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "Path",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Force",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -22261,7 +22316,31 @@
"Parameters": [
{
"ParameterMetadata": {
- "Name": "PassThru",
+ "Name": "Path",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Force",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -22373,15 +22452,13 @@
]
}
],
- "AliasList": [
- "Stop-AzSubscriptionDeployment"
- ]
+ "AliasList": []
},
{
"VerbName": "Stop",
- "NounName": "AzTenantDeployment",
- "Name": "Stop-AzTenantDeployment",
- "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureTenantDeploymentCmdlet",
+ "NounName": "AzManagementGroupDeployment",
+ "Name": "Stop-AzManagementGroupDeployment",
+ "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureManagementGroupDeploymentCmdlet",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
@@ -22404,6 +22481,24 @@
}
],
"Parameters": [
+ {
+ "Name": "ManagementGroupId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
{
"Name": "Name",
"AliasList": [
@@ -22605,6 +22700,30 @@
{
"Name": "StopByDeploymentName",
"Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ManagementGroupId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "Name",
@@ -22627,7 +22746,7 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": 0,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
@@ -23197,62 +23316,25 @@
"AliasList": []
},
{
- "VerbName": "Test",
- "NounName": "AzManagementGroupDeployment",
- "Name": "Test-AzManagementGroupDeployment",
- "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureManagementGroupDeploymentCmdlet",
- "SupportsShouldProcess": false,
+ "VerbName": "Stop",
+ "NounName": "AzDeployment",
+ "Name": "Stop-AzDeployment",
+ "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureSubscriptionDeploymentCmdlet",
+ "SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "ByTemplateFileWithNoParameters",
+ "DefaultParameterSetName": "StopByDeploymentName",
"OutputTypes": [
{
"Type": {
- "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
- "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
- "Properties": {
- "Details": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError]",
- "Code": "System.String",
- "Message": "System.String",
- "Target": "System.String"
- },
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
- },
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
+ "Methods": [],
+ "Constructors": []
},
"ParameterSets": [
"__AllParameterSets"
@@ -23261,62 +23343,10 @@
],
"Parameters": [
{
- "Name": "ManagementGroupId",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "Location",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "TemplateParameterObject",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "TemplateParameterFile",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "DeploymentName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -23333,8 +23363,11 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "TemplateParameterUri",
- "AliasList": [],
+ "Name": "Id",
+ "AliasList": [
+ "DeploymentId",
+ "ResourceId"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -23351,17 +23384,67 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "TemplateObject",
+ "Name": "InputObject",
"AliasList": [],
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
+ "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
+ "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
+ "TemplateLink": "Microsoft.Azure.Management.ResourceManager.Models.TemplateLink",
+ "Parameters": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
+ "Outputs": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
+ "Timestamp": "System.DateTime",
+ "ParametersString": "System.String",
+ "DeploymentDebugLogLevel": "System.String",
+ "TemplateLinkString": "System.String",
+ "Id": "System.String",
+ "CorrelationId": "System.String",
+ "DeploymentName": "System.String",
+ "ResourceGroupName": "System.String",
+ "ManagementGroupId": "System.String",
+ "Location": "System.String",
+ "ProvisioningState": "System.String",
+ "OutputsString": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
@@ -23369,43 +23452,7 @@
"ValidateNotNullOrEmpty": false
},
{
- "Name": "TemplateFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "TemplateUri",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "SkipTemplateParameterPrompt",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -23494,36 +23541,14 @@
],
"ParameterSets": [
{
- "Name": "__AllParameterSets",
+ "Name": "StopByDeploymentName",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ManagementGroupId",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Location",
- "AliasList": [],
+ "Name": "Name",
+ "AliasList": [
+ "DeploymentName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -23540,13 +23565,13 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": -2147483648,
+ "Position": 0,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "SkipTemplateParameterPrompt",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -23658,16 +23683,19 @@
]
},
{
- "Name": "ByTemplateObjectAndParameterObject",
+ "Name": "StopByDeploymentId",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateParameterObject",
- "AliasList": [],
+ "Name": "Id",
+ "AliasList": [
+ "DeploymentId",
+ "ResourceId"
+ ],
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -23677,21 +23705,21 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "TemplateObject",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -23703,14 +23731,14 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ManagementGroupId",
+ "Name": "ApiVersion",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -23727,19 +23755,19 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Location",
+ "Name": "Pre",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -23749,16 +23777,134 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "SkipTemplateParameterPrompt",
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "StopByInputObject",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
+ "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
+ "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
+ "TemplateLink": "Microsoft.Azure.Management.ResourceManager.Models.TemplateLink",
+ "Parameters": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
+ "Outputs": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
+ "Timestamp": "System.DateTime",
+ "ParametersString": "System.String",
+ "DeploymentDebugLogLevel": "System.String",
+ "TemplateLinkString": "System.String",
+ "Id": "System.String",
+ "CorrelationId": "System.String",
+ "DeploymentName": "System.String",
+ "ResourceGroupName": "System.String",
+ "ManagementGroupId": "System.String",
+ "Location": "System.String",
+ "ProvisioningState": "System.String",
+ "OutputsString": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -23870,16 +24016,16 @@
]
},
{
- "Name": "ByTemplateFileAndParameterObject",
+ "Name": "__AllParameterSets",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateParameterObject",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -23891,14 +24037,14 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "TemplateFile",
+ "Name": "ApiVersion",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -23915,19 +24061,19 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ManagementGroupId",
+ "Name": "Pre",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -23937,17 +24083,293 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Location",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ],
+ "AliasList": [
+ "Stop-AzSubscriptionDeployment"
+ ]
+ },
+ {
+ "VerbName": "Stop",
+ "NounName": "AzTenantDeployment",
+ "Name": "Stop-AzTenantDeployment",
+ "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureTenantDeploymentCmdlet",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "StopByDeploymentName",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "Name",
+ "AliasList": [
+ "DeploymentName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Id",
+ "AliasList": [
+ "DeploymentId",
+ "ResourceId"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
+ "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
+ "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
+ "TemplateLink": "Microsoft.Azure.Management.ResourceManager.Models.TemplateLink",
+ "Parameters": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
+ "Outputs": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
+ "Timestamp": "System.DateTime",
+ "ParametersString": "System.String",
+ "DeploymentDebugLogLevel": "System.String",
+ "TemplateLinkString": "System.String",
+ "Id": "System.String",
+ "CorrelationId": "System.String",
+ "DeploymentName": "System.String",
+ "ResourceGroupName": "System.String",
+ "ManagementGroupId": "System.String",
+ "Location": "System.String",
+ "ProvisioningState": "System.String",
+ "OutputsString": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ApiVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Pre",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "StopByDeploymentName",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [
+ "DeploymentName"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -23964,13 +24386,13 @@
"ValidateNotNullOrEmpty": true
},
"Mandatory": true,
- "Position": -2147483648,
+ "Position": 0,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "SkipTemplateParameterPrompt",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -24082,16 +24504,19 @@
]
},
{
- "Name": "ByTemplateUriAndParameterObject",
+ "Name": "StopByDeploymentId",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateParameterObject",
- "AliasList": [],
+ "Name": "Id",
+ "AliasList": [
+ "DeploymentId",
+ "ResourceId"
+ ],
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -24101,21 +24526,21 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "TemplateUri",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -24125,79 +24550,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "ManagementGroupId",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Location",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "SkipTemplateParameterPrompt",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
@@ -24294,319 +24647,85 @@
]
},
{
- "Name": "ByTemplateObjectAndParameterFile",
+ "Name": "StopByInputObject",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateParameterFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "TemplateObject",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "ManagementGroupId",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Location",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "SkipTemplateParameterPrompt",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "ApiVersion",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Pre",
+ "Name": "InputObject",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
+ "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
- "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ "Mode": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
+ "OnErrorDeployment": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
+ "TemplateLink": "Microsoft.Azure.Management.ResourceManager.Models.TemplateLink",
+ "Parameters": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
+ "Outputs": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.DeploymentVariable]",
+ "Timestamp": "System.DateTime",
+ "ParametersString": "System.String",
+ "DeploymentDebugLogLevel": "System.String",
+ "TemplateLinkString": "System.String",
+ "Id": "System.String",
+ "CorrelationId": "System.String",
+ "DeploymentName": "System.String",
+ "ResourceGroupName": "System.String",
+ "ManagementGroupId": "System.String",
+ "Location": "System.String",
+ "ProvisioningState": "System.String",
+ "OutputsString": "System.String"
},
"ElementType": null,
"GenericTypeArguments": [],
"Methods": [
{
- "Name": "Clear",
+ "Name": "ToString",
"Parameters": [],
- "ReturnType": "System.Void"
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
}
],
- "Constructors": []
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "ByTemplateFileAndParameterFile",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "TemplateParameterFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "TemplateFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "ManagementGroupId",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
"Mandatory": true,
"Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Location",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "SkipTemplateParameterPrompt",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -24718,107 +24837,11 @@
]
},
{
- "Name": "ByTemplateUriAndParameterFile",
+ "Name": "__AllParameterSets",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateParameterFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "TemplateUri",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "ManagementGroupId",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Location",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "SkipTemplateParameterPrompt",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -24928,58 +24951,310 @@
"ValueFromPipelineByPropertyName": false
}
]
- },
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Test",
+ "NounName": "AzManagementGroupDeployment",
+ "Name": "Test-AzManagementGroupDeployment",
+ "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureManagementGroupDeploymentCmdlet",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ByTemplateFileWithNoParameters",
+ "OutputTypes": [
{
- "Name": "ByTemplateObjectAndParameterUri",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "TemplateParameterUri",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
+ "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Details": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError]",
+ "Code": "System.String",
+ "Message": "System.String",
+ "Target": "System.String"
},
- {
- "ParameterMetadata": {
- "Name": "TemplateObject",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
},
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "ManagementGroupId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Location",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "TemplateParameterObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "TemplateParameterFile",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "TemplateParameterUri",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "TemplateObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "TemplateFile",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "TemplateUri",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "SkipTemplateParameterPrompt",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ApiVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Pre",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
"Name": "ManagementGroupId",
@@ -25142,16 +25417,16 @@
]
},
{
- "Name": "ByTemplateFileAndParameterUri",
+ "Name": "ByTemplateObjectAndParameterObject",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateParameterUri",
+ "Name": "TemplateParameterObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -25161,7 +25436,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": true,
"Position": -2147483648,
@@ -25170,12 +25445,12 @@
},
{
"ParameterMetadata": {
- "Name": "TemplateFile",
+ "Name": "TemplateObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -25185,7 +25460,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": true,
"Position": -2147483648,
@@ -25354,16 +25629,16 @@
]
},
{
- "Name": "ByTemplateUriAndParameterUri",
+ "Name": "ByTemplateFileAndParameterObject",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateParameterUri",
+ "Name": "TemplateParameterObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -25373,7 +25648,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": true,
"Position": -2147483648,
@@ -25382,7 +25657,7 @@
},
{
"ParameterMetadata": {
- "Name": "TemplateUri",
+ "Name": "TemplateFile",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -25566,11 +25841,11 @@
]
},
{
- "Name": "ByTemplateObjectWithNoParameters",
+ "Name": "ByTemplateUriAndParameterObject",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateObject",
+ "Name": "TemplateParameterObject",
"AliasList": [],
"Type": {
"Namespace": "System.Collections",
@@ -25592,6 +25867,30 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
+ {
+ "ParameterMetadata": {
+ "Name": "TemplateUri",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
{
"ParameterMetadata": {
"Name": "ManagementGroupId",
@@ -25754,11 +26053,11 @@
]
},
{
- "Name": "ByTemplateFileWithNoParameters",
+ "Name": "ByTemplateObjectAndParameterFile",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateFile",
+ "Name": "TemplateParameterFile",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -25780,6 +26079,30 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
+ {
+ "ParameterMetadata": {
+ "Name": "TemplateObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
{
"ParameterMetadata": {
"Name": "ManagementGroupId",
@@ -25942,11 +26265,35 @@
]
},
{
- "Name": "ByTemplateUriWithNoParameters",
+ "Name": "ByTemplateFileAndParameterFile",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateUri",
+ "Name": "TemplateParameterFile",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TemplateFile",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -26128,292 +26475,82 @@
"ValueFromPipelineByPropertyName": false
}
]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "Test",
- "NounName": "AzDeployment",
- "Name": "Test-AzDeployment",
- "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureSubscriptionDeploymentCmdlet",
- "SupportsShouldProcess": false,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "ByTemplateFileWithNoParameters",
- "OutputTypes": [
+ },
{
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
- "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
- "Properties": {
- "Details": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError]",
- "Code": "System.String",
- "Message": "System.String",
- "Target": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
+ "Name": "ByTemplateUriAndParameterFile",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "TemplateParameterFile",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
},
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Boolean"
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TemplateUri",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
},
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ManagementGroupId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
},
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
- },
- "ParameterSets": [
- "__AllParameterSets"
- ]
- }
- ],
- "Parameters": [
- {
- "Name": "Location",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "TemplateParameterObject",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "TemplateParameterFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "TemplateParameterUri",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "TemplateObject",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "TemplateFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "TemplateUri",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "SkipTemplateParameterPrompt",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "ApiVersion",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "Pre",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
- "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- }
- ],
- "ParameterSets": [
- {
- "Name": "__AllParameterSets",
- "Parameters": [
{
"ParameterMetadata": {
"Name": "Location",
@@ -26552,16 +26689,16 @@
]
},
{
- "Name": "ByTemplateObjectAndParameterObject",
+ "Name": "ByTemplateObjectAndParameterUri",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateParameterObject",
+ "Name": "TemplateParameterUri",
"AliasList": [],
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -26571,7 +26708,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": true,
"Position": -2147483648,
@@ -26602,6 +26739,30 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
+ {
+ "ParameterMetadata": {
+ "Name": "ManagementGroupId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "Location",
@@ -26740,16 +26901,16 @@
]
},
{
- "Name": "ByTemplateFileAndParameterObject",
+ "Name": "ByTemplateFileAndParameterUri",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateParameterObject",
+ "Name": "TemplateParameterUri",
"AliasList": [],
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -26759,7 +26920,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": true,
"Position": -2147483648,
@@ -26792,7 +26953,31 @@
},
{
"ParameterMetadata": {
- "Name": "Location",
+ "Name": "ManagementGroupId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Location",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -26928,11 +27113,223 @@
]
},
{
- "Name": "ByTemplateUriAndParameterObject",
+ "Name": "ByTemplateUriAndParameterUri",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateParameterObject",
+ "Name": "TemplateParameterUri",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TemplateUri",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ManagementGroupId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Location",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SkipTemplateParameterPrompt",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ApiVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Pre",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "ByTemplateObjectWithNoParameters",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "TemplateObject",
"AliasList": [],
"Type": {
"Namespace": "System.Collections",
@@ -26956,7 +27353,7 @@
},
{
"ParameterMetadata": {
- "Name": "TemplateUri",
+ "Name": "ManagementGroupId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -26976,7 +27373,7 @@
"Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
@@ -27116,11 +27513,11 @@
]
},
{
- "Name": "ByTemplateObjectAndParameterFile",
+ "Name": "ByTemplateFileWithNoParameters",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateParameterFile",
+ "Name": "TemplateFile",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -27144,12 +27541,12 @@
},
{
"ParameterMetadata": {
- "Name": "TemplateObject",
+ "Name": "ManagementGroupId",
"AliasList": [],
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -27159,12 +27556,12 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
@@ -27304,11 +27701,11 @@
]
},
{
- "Name": "ByTemplateFileAndParameterFile",
+ "Name": "ByTemplateUriWithNoParameters",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateParameterFile",
+ "Name": "TemplateUri",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -27332,7 +27729,7 @@
},
{
"ParameterMetadata": {
- "Name": "TemplateFile",
+ "Name": "ManagementGroupId",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -27352,7 +27749,7 @@
"Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
@@ -27490,58 +27887,292 @@
"ValueFromPipelineByPropertyName": false
}
]
- },
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Test",
+ "NounName": "AzDeployment",
+ "Name": "Test-AzDeployment",
+ "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureSubscriptionDeploymentCmdlet",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ByTemplateFileWithNoParameters",
+ "OutputTypes": [
{
- "Name": "ByTemplateUriAndParameterFile",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "TemplateParameterFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
+ "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Details": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError]",
+ "Code": "System.String",
+ "Message": "System.String",
+ "Target": "System.String"
},
- {
- "ParameterMetadata": {
- "Name": "TemplateUri",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
},
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "Location",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "TemplateParameterObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "TemplateParameterFile",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "TemplateParameterUri",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "TemplateObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "TemplateFile",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "TemplateUri",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "SkipTemplateParameterPrompt",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ApiVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Pre",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
"Name": "Location",
@@ -27680,16 +28311,16 @@
]
},
{
- "Name": "ByTemplateObjectAndParameterUri",
+ "Name": "ByTemplateObjectAndParameterObject",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateParameterUri",
+ "Name": "TemplateParameterObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -27699,7 +28330,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": true,
"Position": -2147483648,
@@ -27868,16 +28499,16 @@
]
},
{
- "Name": "ByTemplateFileAndParameterUri",
+ "Name": "ByTemplateFileAndParameterObject",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateParameterUri",
+ "Name": "TemplateParameterObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -27887,7 +28518,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": true,
"Position": -2147483648,
@@ -28056,16 +28687,16 @@
]
},
{
- "Name": "ByTemplateUriAndParameterUri",
+ "Name": "ByTemplateUriAndParameterObject",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateParameterUri",
+ "Name": "TemplateParameterObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -28075,7 +28706,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": true,
"Position": -2147483648,
@@ -28244,8 +28875,32 @@
]
},
{
- "Name": "ByTemplateObjectWithNoParameters",
+ "Name": "ByTemplateObjectAndParameterFile",
"Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "TemplateParameterFile",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
{
"ParameterMetadata": {
"Name": "TemplateObject",
@@ -28408,8 +29063,32 @@
]
},
{
- "Name": "ByTemplateFileWithNoParameters",
+ "Name": "ByTemplateFileAndParameterFile",
"Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "TemplateParameterFile",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
{
"ParameterMetadata": {
"Name": "TemplateFile",
@@ -28572,8 +29251,32 @@
]
},
{
- "Name": "ByTemplateUriWithNoParameters",
+ "Name": "ByTemplateUriAndParameterFile",
"Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "TemplateParameterFile",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
{
"ParameterMetadata": {
"Name": "TemplateUri",
@@ -28734,294 +29437,58 @@
"ValueFromPipelineByPropertyName": false
}
]
- }
- ],
- "AliasList": [
- "Test-AzSubscriptionDeployment"
- ]
- },
- {
- "VerbName": "Test",
- "NounName": "AzTenantDeployment",
- "Name": "Test-AzTenantDeployment",
- "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureTenantDeploymentCmdlet",
- "SupportsShouldProcess": false,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "ByTemplateFileWithNoParameters",
- "OutputTypes": [
+ },
{
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
- "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
- "Properties": {
- "Details": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError]",
- "Code": "System.String",
- "Message": "System.String",
- "Target": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Boolean"
+ "Name": "ByTemplateObjectAndParameterUri",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "TemplateParameterUri",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
},
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TemplateObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
},
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
- },
- "ParameterSets": [
- "__AllParameterSets"
- ]
- }
- ],
- "Parameters": [
- {
- "Name": "Location",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "TemplateParameterObject",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "TemplateParameterFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "TemplateParameterUri",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "TemplateObject",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "TemplateFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "TemplateUri",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "SkipTemplateParameterPrompt",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "ApiVersion",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "Pre",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
- "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- }
- ],
- "ParameterSets": [
- {
- "Name": "__AllParameterSets",
- "Parameters": [
{
"ParameterMetadata": {
"Name": "Location",
@@ -29160,16 +29627,16 @@
]
},
{
- "Name": "ByTemplateObjectAndParameterObject",
+ "Name": "ByTemplateFileAndParameterUri",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateParameterObject",
+ "Name": "TemplateParameterUri",
"AliasList": [],
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -29179,7 +29646,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": true,
"Position": -2147483648,
@@ -29188,12 +29655,12 @@
},
{
"ParameterMetadata": {
- "Name": "TemplateObject",
+ "Name": "TemplateFile",
"AliasList": [],
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -29203,7 +29670,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
"Mandatory": true,
"Position": -2147483648,
@@ -29348,107 +29815,11 @@
]
},
{
- "Name": "ByTemplateFileAndParameterObject",
+ "Name": "ByTemplateUriAndParameterUri",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateParameterObject",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "TemplateFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "Location",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "SkipTemplateParameterPrompt",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "ApiVersion",
+ "Name": "TemplateParameterUri",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -29465,98 +29836,6 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Pre",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
- "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "ByTemplateUriAndParameterObject",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "TemplateParameterObject",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
"Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
@@ -29724,32 +30003,8 @@
]
},
{
- "Name": "ByTemplateObjectAndParameterFile",
+ "Name": "ByTemplateObjectWithNoParameters",
"Parameters": [
- {
- "ParameterMetadata": {
- "Name": "TemplateParameterFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
{
"ParameterMetadata": {
"Name": "TemplateObject",
@@ -29912,32 +30167,8 @@
]
},
{
- "Name": "ByTemplateFileAndParameterFile",
+ "Name": "ByTemplateFileWithNoParameters",
"Parameters": [
- {
- "ParameterMetadata": {
- "Name": "TemplateParameterFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
{
"ParameterMetadata": {
"Name": "TemplateFile",
@@ -30100,32 +30331,8 @@
]
},
{
- "Name": "ByTemplateUriAndParameterFile",
+ "Name": "ByTemplateUriWithNoParameters",
"Parameters": [
- {
- "ParameterMetadata": {
- "Name": "TemplateParameterFile",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
{
"ParameterMetadata": {
"Name": "TemplateUri",
@@ -30286,58 +30493,294 @@
"ValueFromPipelineByPropertyName": false
}
]
- },
+ }
+ ],
+ "AliasList": [
+ "Test-AzSubscriptionDeployment"
+ ]
+ },
+ {
+ "VerbName": "Test",
+ "NounName": "AzTenantDeployment",
+ "Name": "Test-AzTenantDeployment",
+ "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureTenantDeploymentCmdlet",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ByTemplateFileWithNoParameters",
+ "OutputTypes": [
{
- "Name": "ByTemplateObjectAndParameterUri",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "TemplateParameterUri",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
+ "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Details": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError]",
+ "Code": "System.String",
+ "Message": "System.String",
+ "Target": "System.String"
},
- {
- "ParameterMetadata": {
- "Name": "TemplateObject",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
},
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "Location",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "TemplateParameterObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "TemplateParameterFile",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "TemplateParameterUri",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "TemplateObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "TemplateFile",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "TemplateUri",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "SkipTemplateParameterPrompt",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "ApiVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Pre",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
"Name": "Location",
@@ -30476,16 +30919,16 @@
]
},
{
- "Name": "ByTemplateFileAndParameterUri",
+ "Name": "ByTemplateObjectAndParameterObject",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateParameterUri",
+ "Name": "TemplateParameterObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -30495,7 +30938,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": true,
"Position": -2147483648,
@@ -30504,12 +30947,12 @@
},
{
"ParameterMetadata": {
- "Name": "TemplateFile",
+ "Name": "TemplateObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -30519,7 +30962,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": true,
"Position": -2147483648,
@@ -30664,16 +31107,16 @@
]
},
{
- "Name": "ByTemplateUriAndParameterUri",
+ "Name": "ByTemplateFileAndParameterObject",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateParameterUri",
+ "Name": "TemplateParameterObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -30683,7 +31126,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": true,
"Position": -2147483648,
@@ -30692,7 +31135,7 @@
},
{
"ParameterMetadata": {
- "Name": "TemplateUri",
+ "Name": "TemplateFile",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -30852,11 +31295,11 @@
]
},
{
- "Name": "ByTemplateObjectWithNoParameters",
+ "Name": "ByTemplateUriAndParameterObject",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateObject",
+ "Name": "TemplateParameterObject",
"AliasList": [],
"Type": {
"Namespace": "System.Collections",
@@ -30878,6 +31321,30 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
+ {
+ "ParameterMetadata": {
+ "Name": "TemplateUri",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
{
"ParameterMetadata": {
"Name": "Location",
@@ -31016,11 +31483,11 @@
]
},
{
- "Name": "ByTemplateFileWithNoParameters",
+ "Name": "ByTemplateObjectAndParameterFile",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateFile",
+ "Name": "TemplateParameterFile",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -31042,6 +31509,30 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
+ {
+ "ParameterMetadata": {
+ "Name": "TemplateObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
{
"ParameterMetadata": {
"Name": "Location",
@@ -31180,11 +31671,35 @@
]
},
{
- "Name": "ByTemplateUriWithNoParameters",
+ "Name": "ByTemplateFileAndParameterFile",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "TemplateUri",
+ "Name": "TemplateParameterFile",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TemplateFile",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -31342,168 +31857,13 @@
"ValueFromPipelineByPropertyName": false
}
]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "Get",
- "NounName": "AzProviderFeature",
- "Name": "Get-AzProviderFeature",
- "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureProviderFeatureCmdlet",
- "SupportsShouldProcess": false,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "ListAvailableParameterSet",
- "OutputTypes": [
- {
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
- "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSProviderFeature",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSProviderFeature, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
- "Properties": {
- "FeatureName": "System.String",
- "ProviderName": "System.String",
- "RegistrationState": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
- },
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
- },
- "ParameterSets": [
- "__AllParameterSets"
- ]
- }
- ],
- "Parameters": [
- {
- "Name": "ProviderNamespace",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "FeatureName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "ListAvailable",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
},
{
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
- "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- }
- ],
- "ParameterSets": [
- {
- "Name": "GetFeature",
+ "Name": "ByTemplateUriAndParameterFile",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ProviderNamespace",
+ "Name": "TemplateParameterFile",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -31527,7 +31887,31 @@
},
{
"ParameterMetadata": {
- "Name": "FeatureName",
+ "Name": "TemplateUri",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Location",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -31551,31 +31935,16 @@
},
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "SkipTemplateParameterPrompt",
+ "AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
- "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
- },
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
@@ -31587,15 +31956,10 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "ListAvailableParameterSet",
- "Parameters": [
+ },
{
"ParameterMetadata": {
- "Name": "ProviderNamespace",
+ "Name": "ApiVersion",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -31619,7 +31983,7 @@
},
{
"ParameterMetadata": {
- "Name": "ListAvailable",
+ "Name": "Pre",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -31683,192 +32047,59 @@
]
},
{
- "Name": "__AllParameterSets",
+ "Name": "ByTemplateObjectAndParameterUri",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
+ "Name": "TemplateParameterUri",
+ "AliasList": [],
"Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
- "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
- },
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
+ "Methods": [],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- }
- ]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "Register",
- "NounName": "AzProviderFeature",
- "Name": "Register-AzProviderFeature",
- "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RegisterAzureProviderFeatureCmdlet",
- "SupportsShouldProcess": true,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "__AllParameterSets",
- "OutputTypes": [
- {
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
- "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSProviderFeature",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSProviderFeature, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
- "Properties": {
- "FeatureName": "System.String",
- "ProviderName": "System.String",
- "RegistrationState": "System.String"
+ "ValueFromPipelineByPropertyName": true
},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
+ {
+ "ParameterMetadata": {
+ "Name": "TemplateObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
},
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
- },
- "ParameterSets": [
- "__AllParameterSets"
- ]
- }
- ],
- "Parameters": [
- {
- "Name": "FeatureName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "ProviderNamespace",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
- "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- }
- ],
- "ParameterSets": [
- {
- "Name": "__AllParameterSets",
- "Parameters": [
{
"ParameterMetadata": {
- "Name": "FeatureName",
+ "Name": "Location",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -31888,11 +32119,35 @@
"Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ProviderNamespace",
+ "Name": "SkipTemplateParameterPrompt",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ApiVersion",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -31909,10 +32164,34 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Pre",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
@@ -31954,150 +32233,13 @@
"ValueFromPipelineByPropertyName": false
}
]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "Get",
- "NounName": "AzLocation",
- "Name": "Get-AzLocation",
- "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureLocationCmdlet",
- "SupportsShouldProcess": false,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "__AllParameterSets",
- "OutputTypes": [
- {
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
- "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProviderLocation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProviderLocation, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
- "Properties": {
- "Providers": "System.Collections.Generic.List`1[System.String]",
- "DisplayName": "System.String",
- "Location": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
- },
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- }
- ]
- },
- "ParameterSets": [
- "__AllParameterSets"
- ]
- }
- ],
- "Parameters": [
- {
- "Name": "ApiVersion",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "Pre",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
},
{
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
- "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- }
- ],
- "ParameterSets": [
- {
- "Name": "__AllParameterSets",
+ "Name": "ByTemplateFileAndParameterUri",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ApiVersion",
+ "Name": "TemplateParameterUri",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -32114,337 +32256,15 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "Pre",
+ "Name": "TemplateFile",
"AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
- "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- }
- ]
- }
- ],
- "AliasList": []
- },
- {
- "VerbName": "Get",
- "NounName": "AzResourceLock",
- "Name": "Get-AzResourceLock",
- "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceLockCmdlet",
- "SupportsShouldProcess": false,
- "ConfirmImpact": 2,
- "SupportsPaging": false,
- "DefaultParameterSetName": "__AllParameterSets",
- "OutputTypes": [
- {
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ParameterSets": [
- "__AllParameterSets"
- ]
- }
- ],
- "Parameters": [
- {
- "Name": "LockName",
- "AliasList": [
- "ExtensionResourceName",
- "Name"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "AtScope",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "Scope",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "ResourceName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "ResourceType",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "ResourceGroupName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "TenantLevel",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "LockId",
- "AliasList": [
- "Id",
- "ResourceId"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "ApiVersion",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "Pre",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
- "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- }
- ],
- "ParameterSets": [
- {
- "Name": "ByResourceGroup",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "LockName",
- "AliasList": [
- "ExtensionResourceName",
- "Name"
- ],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -32460,14 +32280,14 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "ResourceGroupName",
+ "Name": "Location",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -32487,11 +32307,11 @@
"Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "AtScope",
+ "Name": "SkipTemplateParameterPrompt",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -32506,7 +32326,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
@@ -32603,15 +32423,12 @@
]
},
{
- "Name": "ByResourceGroupLevel",
+ "Name": "ByTemplateUriAndParameterUri",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "LockName",
- "AliasList": [
- "ExtensionResourceName",
- "Name"
- ],
+ "Name": "TemplateParameterUri",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -32627,14 +32444,14 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "ResourceName",
+ "Name": "TemplateUri",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -32658,7 +32475,7 @@
},
{
"ParameterMetadata": {
- "Name": "ResourceType",
+ "Name": "Location",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -32678,16 +32495,16 @@
"Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ResourceGroupName",
+ "Name": "SkipTemplateParameterPrompt",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -32697,40 +32514,16 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "AtScope",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "ApiVersion",
+ "Name": "ApiVersion",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -32818,43 +32611,16 @@
]
},
{
- "Name": "BySpecifiedScope",
+ "Name": "ByTemplateObjectWithNoParameters",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "LockName",
- "AliasList": [
- "ExtensionResourceName",
- "Name"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "Scope",
+ "Name": "TemplateObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -32864,7 +32630,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": true,
"Position": -2147483648,
@@ -32873,31 +32639,7 @@
},
{
"ParameterMetadata": {
- "Name": "AtScope",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "ApiVersion",
+ "Name": "Location",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -32914,14 +32656,14 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Pre",
+ "Name": "SkipTemplateParameterPrompt",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -32943,101 +32685,6 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
- {
- "ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
- "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "BySubscription",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "LockName",
- "AliasList": [
- "ExtensionResourceName",
- "Name"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "AtScope",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
{
"ParameterMetadata": {
"Name": "ApiVersion",
@@ -33128,38 +32775,11 @@
]
},
{
- "Name": "BySubscriptionLevel",
+ "Name": "ByTemplateFileWithNoParameters",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "LockName",
- "AliasList": [
- "ExtensionResourceName",
- "Name"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "ResourceName",
+ "Name": "TemplateFile",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -33183,7 +32803,7 @@
},
{
"ParameterMetadata": {
- "Name": "ResourceType",
+ "Name": "Location",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -33203,11 +32823,11 @@
"Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "AtScope",
+ "Name": "SkipTemplateParameterPrompt",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -33222,7 +32842,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
@@ -33319,38 +32939,11 @@
]
},
{
- "Name": "ByTenantLevel",
+ "Name": "ByTemplateUriWithNoParameters",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "LockName",
- "AliasList": [
- "ExtensionResourceName",
- "Name"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "ResourceName",
+ "Name": "TemplateUri",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -33374,7 +32967,7 @@
},
{
"ParameterMetadata": {
- "Name": "ResourceType",
+ "Name": "Location",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -33394,35 +32987,11 @@
"Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "TenantLevel",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "AtScope",
+ "Name": "SkipTemplateParameterPrompt",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -33437,7 +33006,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
@@ -33532,18 +33101,173 @@
"ValueFromPipelineByPropertyName": false
}
]
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Get",
+ "NounName": "AzProviderFeature",
+ "Name": "Get-AzProviderFeature",
+ "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureProviderFeatureCmdlet",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ListAvailableParameterSet",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
+ "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSProviderFeature",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSProviderFeature, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "FeatureName": "System.String",
+ "ProviderName": "System.String",
+ "RegistrationState": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "ProviderNamespace",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
},
{
- "Name": "__AllParameterSets",
+ "Name": "FeatureName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ListAvailable",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "GetFeature",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "AtScope",
+ "Name": "ProviderNamespace",
"AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -33555,14 +33279,14 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
+ "ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "ApiVersion",
+ "Name": "FeatureName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -33579,31 +33303,7 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Pre",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
@@ -33650,15 +33350,12 @@
]
},
{
- "Name": "ByLockId",
+ "Name": "ListAvailableParameterSet",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "LockId",
- "AliasList": [
- "Id",
- "ResourceId"
- ],
+ "Name": "ProviderNamespace",
+ "AliasList": [],
"Type": {
"Namespace": "System",
"Name": "System.String",
@@ -33674,14 +33371,14 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "AtScope",
+ "Name": "ListAvailable",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -33696,31 +33393,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "ApiVersion",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
@@ -33729,16 +33402,31 @@
},
{
"ParameterMetadata": {
- "Name": "Pre",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
@@ -33750,7 +33438,12 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
"Name": "DefaultProfile",
@@ -33796,144 +33489,47 @@
"AliasList": []
},
{
- "VerbName": "New",
- "NounName": "AzResourceLock",
- "Name": "New-AzResourceLock",
- "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureResourceLockCmdlet",
+ "VerbName": "Register",
+ "NounName": "AzProviderFeature",
+ "Name": "Register-AzProviderFeature",
+ "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RegisterAzureProviderFeatureCmdlet",
"SupportsShouldProcess": true,
"ConfirmImpact": 2,
"SupportsPaging": false,
- "DefaultParameterSetName": "BySpecifiedScope",
+ "DefaultParameterSetName": "__AllParameterSets",
"OutputTypes": [
{
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ParameterSets": [
- "__AllParameterSets"
- ]
- }
- ],
- "Parameters": [
- {
- "Name": "LockName",
- "AliasList": [
- "ExtensionResourceName",
- "Name"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "LockLevel",
- "AliasList": [
- "Level"
- ],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks",
- "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
+ "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSProviderFeature",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSProviderFeature, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "FeatureName": "System.String",
+ "ProviderName": "System.String",
+ "RegistrationState": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
"Methods": [
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
- },
{
"Name": "ToString",
"Parameters": [],
"ReturnType": "System.String"
},
{
- "Name": "ToString",
- "Parameters": [
- {
- "Name": "format",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "provider",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.String"
- },
- {
- "Name": "CompareTo",
- "Parameters": [
- {
- "Name": "target",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Int32"
- },
- {
- "Name": "ToString",
- "Parameters": [
- {
- "Name": "format",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.String"
- },
- {
- "Name": "ToString",
- "Parameters": [
- {
- "Name": "provider",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.String"
- },
- {
- "Name": "HasFlag",
+ "Name": "Equals",
"Parameters": [
{
- "Name": "flag",
+ "Name": "obj",
"Type": "System.Reflection.RuntimeParameterInfo"
}
],
"ReturnType": "System.Boolean"
},
{
- "Name": "GetTypeCode",
+ "Name": "GetHashCode",
"Parameters": [],
- "ReturnType": "System.TypeCode"
+ "ReturnType": "System.Int32"
},
{
"Name": "GetType",
@@ -33941,53 +33537,22 @@
"ReturnType": "System.Type"
}
],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "LockNotes",
- "AliasList": [
- "Notes"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- {
- "Name": "Force",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
},
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
{
- "Name": "Scope",
+ "Name": "FeatureName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -34005,7 +33570,7 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "ResourceName",
+ "Name": "ProviderNamespace",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -34023,35 +33588,2229 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "ResourceType",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
{
- "Name": "ResourceGroupName",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "FeatureName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProviderNamespace",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Get",
+ "NounName": "AzLocation",
+ "Name": "Get-AzLocation",
+ "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureLocationCmdlet",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "__AllParameterSets",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
+ "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProviderLocation",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceProviderLocation, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Providers": "System.Collections.Generic.List`1[System.String]",
+ "DisplayName": "System.String",
+ "Location": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "ApiVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Pre",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ApiVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Pre",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Get",
+ "NounName": "AzResourceLock",
+ "Name": "Get-AzResourceLock",
+ "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceLockCmdlet",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "__AllParameterSets",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "LockName",
+ "AliasList": [
+ "ExtensionResourceName",
+ "Name"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "AtScope",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Scope",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ResourceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ResourceType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "TenantLevel",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "LockId",
+ "AliasList": [
+ "Id",
+ "ResourceId"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ApiVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Pre",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "ByResourceGroup",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "LockName",
+ "AliasList": [
+ "ExtensionResourceName",
+ "Name"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AtScope",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ApiVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Pre",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "ByResourceGroupLevel",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "LockName",
+ "AliasList": [
+ "ExtensionResourceName",
+ "Name"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AtScope",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ApiVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Pre",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "BySpecifiedScope",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "LockName",
+ "AliasList": [
+ "ExtensionResourceName",
+ "Name"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Scope",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AtScope",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ApiVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Pre",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "BySubscription",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "LockName",
+ "AliasList": [
+ "ExtensionResourceName",
+ "Name"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AtScope",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ApiVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Pre",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "BySubscriptionLevel",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "LockName",
+ "AliasList": [
+ "ExtensionResourceName",
+ "Name"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AtScope",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ApiVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Pre",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "ByTenantLevel",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "LockName",
+ "AliasList": [
+ "ExtensionResourceName",
+ "Name"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TenantLevel",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AtScope",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ApiVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Pre",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "AtScope",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ApiVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Pre",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "ByLockId",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "LockId",
+ "AliasList": [
+ "Id",
+ "ResourceId"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AtScope",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ApiVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Pre",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "New",
+ "NounName": "AzResourceLock",
+ "Name": "New-AzResourceLock",
+ "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureResourceLockCmdlet",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "BySpecifiedScope",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "LockName",
+ "AliasList": [
+ "ExtensionResourceName",
+ "Name"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "LockLevel",
+ "AliasList": [
+ "Level"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks",
+ "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks.LockLevel, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "CompareTo",
+ "Parameters": [
+ {
+ "Name": "target",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "HasFlag",
+ "Parameters": [
+ {
+ "Name": "flag",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetTypeCode",
+ "Parameters": [],
+ "ReturnType": "System.TypeCode"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "LockNotes",
+ "AliasList": [
+ "Notes"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Force",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Scope",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ResourceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ResourceType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
@@ -87238,13 +88997,355 @@
]
},
{
- "Name": "ByResourceId",
+ "Name": "ByResourceId",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceId",
+ "AliasList": [
+ "Id"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Kind",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Properties",
+ "AliasList": [
+ "PropertyObject"
+ ],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.PSObject",
+ "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Plan",
+ "AliasList": [
+ "PlanObject"
+ ],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Sku",
+ "AliasList": [
+ "SkuObject"
+ ],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Tag",
+ "AliasList": [
+ "Tags"
+ ],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "UsePatchSemantics",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ODataQuery",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Force",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ApiVersion",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Pre",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "BySubscriptionLevel",
"Parameters": [
{
"ParameterMetadata": {
- "Name": "ResourceId",
+ "Name": "ResourceName",
"AliasList": [
- "Id"
+ "Name"
],
"Type": {
"Namespace": "System",
@@ -87266,6 +89367,102 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ExtensionResourceName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ExtensionResourceType",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
{
"ParameterMetadata": {
"Name": "Kind",
@@ -87580,7 +89777,7 @@
]
},
{
- "Name": "BySubscriptionLevel",
+ "Name": "ByTenantLevel",
"Parameters": [
{
"ParameterMetadata": {
@@ -87682,12 +89879,12 @@
},
{
"ParameterMetadata": {
- "Name": "ResourceGroupName",
+ "Name": "TenantLevel",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -87697,12 +89894,12 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
+ "Mandatory": true,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
@@ -87923,156 +90120,14 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "ApiVersion",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "Pre",
- "AliasList": [],
- "Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- },
- {
- "ParameterMetadata": {
- "Name": "DefaultProfile",
- "AliasList": [
- "AzContext",
- "AzureRmContext",
- "AzureCredential"
- ],
- "Type": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
- "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
- },
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": false
- }
- ]
- },
- {
- "Name": "ByTenantLevel",
- "Parameters": [
- {
- "ParameterMetadata": {
- "Name": "ResourceName",
- "AliasList": [
- "Name"
- ],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
- "Position": -2147483648,
- "ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
- {
- "ParameterMetadata": {
- "Name": "ResourceType",
- "AliasList": [],
- "Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "ValidateSet": [],
- "ValidateRangeMin": null,
- "ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
- },
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ExtensionResourceName",
+ "Name": "ApiVersion",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -88092,16 +90147,16 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "ExtensionResourceType",
+ "Name": "Pre",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -88111,25 +90166,40 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "TenantLevel",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
@@ -88137,14 +90207,284 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": false
},
- "Mandatory": true,
+ "Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Remove",
+ "NounName": "AzDeploymentScript",
+ "Name": "Remove-AzDeploymentScript",
+ "ClassName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.DeploymentScripts.RemoveAzDeploymentScript",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "RemoveDeploymentScriptLogByName",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
+ "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Identity": "Microsoft.Azure.Management.ResourceManager.Models.ManagedServiceIdentity",
+ "Status": "Microsoft.Azure.Management.ResourceManager.Models.ScriptStatus",
+ "Outputs": "System.Collections.Generic.IDictionary`2[System.String,System.Object]",
+ "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "EnvironmentVariables": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ResourceManager.Models.EnvironmentVariable]",
+ "SupportingScriptUris": "System.Collections.Generic.IList`1[System.String]",
+ "Id": "System.String",
+ "SubscriptionId": "System.String",
+ "ResourceGroupName": "System.String",
+ "Timeout": "System.String",
+ "RetentionInterval": "System.String",
+ "ForceUpdateTag": "System.String",
+ "ScriptContent": "System.String",
+ "Type": "System.String",
+ "PrimaryScriptUri": "System.String",
+ "ProvisioningState": "System.String",
+ "CleanupPreference": "System.String",
+ "ScriptKind": "System.String",
+ "Location": "System.String",
+ "Arguments": "System.String",
+ "Name": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Name",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Id",
+ "AliasList": [
+ "ResourceId"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
+ "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Identity": "Microsoft.Azure.Management.ResourceManager.Models.ManagedServiceIdentity",
+ "Status": "Microsoft.Azure.Management.ResourceManager.Models.ScriptStatus",
+ "Outputs": "System.Collections.Generic.IDictionary`2[System.String,System.Object]",
+ "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "EnvironmentVariables": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ResourceManager.Models.EnvironmentVariable]",
+ "SupportingScriptUris": "System.Collections.Generic.IList`1[System.String]",
+ "Id": "System.String",
+ "SubscriptionId": "System.String",
+ "ResourceGroupName": "System.String",
+ "Timeout": "System.String",
+ "RetentionInterval": "System.String",
+ "ForceUpdateTag": "System.String",
+ "ScriptContent": "System.String",
+ "Type": "System.String",
+ "PrimaryScriptUri": "System.String",
+ "ProvisioningState": "System.String",
+ "CleanupPreference": "System.String",
+ "ScriptKind": "System.String",
+ "Location": "System.String",
+ "Arguments": "System.String",
+ "Name": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "RemoveDeploymentScriptLogByName",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "Kind",
+ "Name": "ResourceGroupName",
"AliasList": [],
"Type": {
"Namespace": "System",
@@ -88159,23 +90499,21 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 0,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "Properties",
- "AliasList": [
- "PropertyObject"
- ],
+ "Name": "Name",
+ "AliasList": [],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.PSObject",
- "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -88185,23 +90523,21 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 1,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "Plan",
- "AliasList": [
- "PlanObject"
- ],
+ "Name": "PassThru",
+ "AliasList": [],
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -88216,22 +90552,35 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
+ "ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Sku",
+ "Name": "DefaultProfile",
"AliasList": [
- "SkuObject"
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
],
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
@@ -88242,18 +90591,23 @@
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
- "ValueFromPipelineByPropertyName": true
- },
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "RemoveDeploymentScriptLogByResourceId",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "Tag",
+ "Name": "Id",
"AliasList": [
- "Tags"
+ "ResourceId"
],
"Type": {
- "Namespace": "System.Collections",
- "Name": "System.Collections.Hashtable",
- "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -88263,16 +90617,16 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": false
+ "ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
+ "Mandatory": true,
+ "Position": 0,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
{
"ParameterMetadata": {
- "Name": "UsePatchSemantics",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -88296,16 +90650,31 @@
},
{
"ParameterMetadata": {
- "Name": "AsJob",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System.Management.Automation",
- "Name": "System.Management.Automation.SwitchParameter",
- "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
@@ -88317,34 +90686,93 @@
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "RemoveDeploymentScriptLogByInputObject",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "ODataQuery",
+ "Name": "InputObject",
"AliasList": [],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels",
+ "Name": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript, Microsoft.Azure.PowerShell.Cmdlets.ResourceManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Identity": "Microsoft.Azure.Management.ResourceManager.Models.ManagedServiceIdentity",
+ "Status": "Microsoft.Azure.Management.ResourceManager.Models.ScriptStatus",
+ "Outputs": "System.Collections.Generic.IDictionary`2[System.String,System.Object]",
+ "Tags": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "EnvironmentVariables": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ResourceManager.Models.EnvironmentVariable]",
+ "SupportingScriptUris": "System.Collections.Generic.IList`1[System.String]",
+ "Id": "System.String",
+ "SubscriptionId": "System.String",
+ "ResourceGroupName": "System.String",
+ "Timeout": "System.String",
+ "RetentionInterval": "System.String",
+ "ForceUpdateTag": "System.String",
+ "ScriptContent": "System.String",
+ "Type": "System.String",
+ "PrimaryScriptUri": "System.String",
+ "ProvisioningState": "System.String",
+ "CleanupPreference": "System.String",
+ "ScriptKind": "System.String",
+ "Location": "System.String",
+ "Arguments": "System.String",
+ "Name": "System.String"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
- "Mandatory": false,
- "Position": -2147483648,
- "ValueFromPipeline": false,
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": true,
"ValueFromPipelineByPropertyName": false
},
{
"ParameterMetadata": {
- "Name": "Force",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -88368,31 +90796,51 @@
},
{
"ParameterMetadata": {
- "Name": "ApiVersion",
- "AliasList": [],
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
"Type": {
- "Namespace": "System",
- "Name": "System.String",
- "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
"ElementType": null,
"GenericTypeArguments": [],
- "Methods": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
"Constructors": []
},
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": -2147483648,
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": false
- },
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
{
"ParameterMetadata": {
- "Name": "Pre",
+ "Name": "PassThru",
"AliasList": [],
"Type": {
"Namespace": "System.Management.Automation",
@@ -88790,6 +91238,433 @@
"Methods": [],
"Constructors": []
},
+ "Microsoft.Azure.Management.ResourceManager.Models.ManagedServiceIdentity": {
+ "Namespace": "Microsoft.Azure.Management.ResourceManager.Models",
+ "Name": "Microsoft.Azure.Management.ResourceManager.Models.ManagedServiceIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ResourceManager.Models.ManagedServiceIdentity, Microsoft.Azure.Management.ResourceManager, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "UserAssignedIdentities": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.ResourceManager.Models.UserAssignedIdentity]",
+ "Type": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "type",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "userAssignedIdentities",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.ResourceManager.Models.UserAssignedIdentity]": {
+ "Namespace": "System.Collections.Generic",
+ "Name": "System.Collections.Generic.IDictionary`2[System.String,Microsoft.Azure.Management.ResourceManager.Models.UserAssignedIdentity]",
+ "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Management.ResourceManager.Models.UserAssignedIdentity, Microsoft.Azure.Management.ResourceManager, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.String",
+ "Microsoft.Azure.Management.ResourceManager.Models.UserAssignedIdentity"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "Microsoft.Azure.Management.ResourceManager.Models.UserAssignedIdentity": {
+ "Namespace": "Microsoft.Azure.Management.ResourceManager.Models",
+ "Name": "Microsoft.Azure.Management.ResourceManager.Models.UserAssignedIdentity",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ResourceManager.Models.UserAssignedIdentity, Microsoft.Azure.Management.ResourceManager, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "PrincipalId": "System.String",
+ "ClientId": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "principalId",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "clientId",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "System.Type": {
+ "Namespace": "System",
+ "Name": "System.Type",
+ "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "Microsoft.Azure.Management.ResourceManager.Models.ScriptStatus": {
+ "Namespace": "Microsoft.Azure.Management.ResourceManager.Models",
+ "Name": "Microsoft.Azure.Management.ResourceManager.Models.ScriptStatus",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ResourceManager.Models.ScriptStatus, Microsoft.Azure.Management.ResourceManager, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Error": "Microsoft.Azure.Management.ResourceManager.Models.DefaultErrorResponse",
+ "StartTime": "System.Nullable`1[System.DateTime]",
+ "EndTime": "System.Nullable`1[System.DateTime]",
+ "ExpirationTime": "System.Nullable`1[System.DateTime]",
+ "ContainerInstanceId": "System.String",
+ "StorageAccountId": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "containerInstanceId",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "storageAccountId",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "startTime",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "endTime",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "expirationTime",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "error",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "Microsoft.Azure.Management.ResourceManager.Models.DefaultErrorResponse": {
+ "Namespace": "Microsoft.Azure.Management.ResourceManager.Models",
+ "Name": "Microsoft.Azure.Management.ResourceManager.Models.DefaultErrorResponse",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ResourceManager.Models.DefaultErrorResponse, Microsoft.Azure.Management.ResourceManager, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Details": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ResourceManager.Models.DefaultErrorResponse]",
+ "Code": "System.String",
+ "Message": "System.String",
+ "Target": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "code",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "message",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "target",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "details",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ResourceManager.Models.DefaultErrorResponse]": {
+ "Namespace": "System.Collections.Generic",
+ "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ResourceManager.Models.DefaultErrorResponse]",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.ResourceManager.Models.DefaultErrorResponse, Microsoft.Azure.Management.ResourceManager, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "Microsoft.Azure.Management.ResourceManager.Models.DefaultErrorResponse"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "System.Nullable`1[System.DateTime]": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.DateTime]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.DateTime"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "System.DateTime": {
+ "Namespace": "System",
+ "Name": "System.DateTime",
+ "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "System.Collections.Generic.IDictionary`2[System.String,System.Object]": {
+ "Namespace": "System.Collections.Generic",
+ "Name": "System.Collections.Generic.IDictionary`2[System.String,System.Object]",
+ "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.String",
+ "System.Object"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "System.Object": {
+ "Namespace": "System",
+ "Name": "System.Object",
+ "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ResourceManager.Models.EnvironmentVariable]": {
+ "Namespace": "System.Collections.Generic",
+ "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.ResourceManager.Models.EnvironmentVariable]",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.ResourceManager.Models.EnvironmentVariable, Microsoft.Azure.Management.ResourceManager, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "Microsoft.Azure.Management.ResourceManager.Models.EnvironmentVariable"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "Microsoft.Azure.Management.ResourceManager.Models.EnvironmentVariable": {
+ "Namespace": "Microsoft.Azure.Management.ResourceManager.Models",
+ "Name": "Microsoft.Azure.Management.ResourceManager.Models.EnvironmentVariable",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.ResourceManager.Models.EnvironmentVariable, Microsoft.Azure.Management.ResourceManager, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Name": "System.String",
+ "Value": "System.String",
+ "SecureValue": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Validate",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "name",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "value",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "secureValue",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
"Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode": {
"Namespace": "Microsoft.Azure.Management.ResourceManager.Models",
"Name": "Microsoft.Azure.Management.ResourceManager.Models.DeploymentMode",
@@ -88895,16 +91770,6 @@
"Methods": [],
"Constructors": []
},
- "System.Type": {
- "Namespace": "System",
- "Name": "System.Type",
- "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
"Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended": {
"Namespace": "Microsoft.Azure.Management.ResourceManager.Models",
"Name": "Microsoft.Azure.Management.ResourceManager.Models.OnErrorDeploymentExtended",
@@ -89198,26 +92063,6 @@
}
]
},
- "System.Object": {
- "Namespace": "System",
- "Name": "System.Object",
- "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "System.DateTime": {
- "Namespace": "System",
- "Name": "System.DateTime",
- "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSResourceManagerError]",
@@ -90035,18 +92880,6 @@
"GenericTypeArguments": [],
"Methods": [],
"Constructors": []
- },
- "System.Nullable`1[System.DateTime]": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.DateTime]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [
- "System.DateTime"
- ],
- "Methods": [],
- "Constructors": []
}
}
}
diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Resources.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Resources.dll.json
index 747d5e9a9359..4a5413f7740b 100644
--- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Resources.dll.json
+++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Resources.dll.json
@@ -14,7 +14,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization",
"Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSDenyAssignment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSDenyAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSDenyAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DoNotApplyToChildScopes": "System.Boolean",
"IsSystemProtected": "System.Boolean",
@@ -2235,7 +2235,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Resources.Models",
"Name": "Microsoft.Azure.Commands.Resources.Models.PSResourceProviderOperation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.PSResourceProviderOperation, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.PSResourceProviderOperation, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsDataAction": "System.Boolean",
"Operation": "System.String",
@@ -2431,7 +2431,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization",
"Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CanDelegate": "System.Boolean",
"RoleAssignmentId": "System.String",
@@ -5341,7 +5341,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization",
"Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CanDelegate": "System.Boolean",
"RoleAssignmentId": "System.String",
@@ -7369,7 +7369,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization",
"Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CanDelegate": "System.Boolean",
"RoleAssignmentId": "System.String",
@@ -7636,7 +7636,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization",
"Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CanDelegate": "System.Boolean",
"RoleAssignmentId": "System.String",
@@ -9589,7 +9589,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization",
"Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleAssignment, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CanDelegate": "System.Boolean",
"RoleAssignmentId": "System.String",
@@ -9730,7 +9730,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization",
"Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsCustom": "System.Boolean",
"Actions": "System.Collections.Generic.List`1[System.String]",
@@ -10229,7 +10229,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization",
"Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsCustom": "System.Boolean",
"Actions": "System.Collections.Generic.List`1[System.String]",
@@ -10308,7 +10308,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization",
"Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsCustom": "System.Boolean",
"Actions": "System.Collections.Generic.List`1[System.String]",
@@ -10475,7 +10475,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization",
"Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsCustom": "System.Boolean",
"Actions": "System.Collections.Generic.List`1[System.String]",
@@ -10691,7 +10691,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization",
"Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsCustom": "System.Boolean",
"Actions": "System.Collections.Generic.List`1[System.String]",
@@ -11124,7 +11124,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization",
"Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsCustom": "System.Boolean",
"Actions": "System.Collections.Generic.List`1[System.String]",
@@ -11381,7 +11381,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization",
"Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsCustom": "System.Boolean",
"Actions": "System.Collections.Generic.List`1[System.String]",
@@ -11460,7 +11460,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization",
"Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsCustom": "System.Boolean",
"Actions": "System.Collections.Generic.List`1[System.String]",
@@ -11627,7 +11627,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization",
"Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSRoleDefinition, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsCustom": "System.Boolean",
"Actions": "System.Collections.Generic.List`1[System.String]",
@@ -11788,7 +11788,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups",
"Name": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupInfo",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupInfo, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupInfo, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Id": "System.String",
"Type": "System.String",
@@ -11851,7 +11851,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups",
"Name": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]",
"UpdatedTime": "System.Nullable`1[System.DateTime]",
@@ -12104,7 +12104,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups",
"Name": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]",
"UpdatedTime": "System.Nullable`1[System.DateTime]",
@@ -12827,7 +12827,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups",
"Name": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]",
"UpdatedTime": "System.Nullable`1[System.DateTime]",
@@ -12974,7 +12974,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups",
"Name": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]",
"UpdatedTime": "System.Nullable`1[System.DateTime]",
@@ -13542,7 +13542,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups",
"Name": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]",
"UpdatedTime": "System.Nullable`1[System.DateTime]",
@@ -13615,7 +13615,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups",
"Name": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]",
"UpdatedTime": "System.Nullable`1[System.DateTime]",
@@ -13780,7 +13780,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups",
"Name": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]",
"UpdatedTime": "System.Nullable`1[System.DateTime]",
@@ -13926,7 +13926,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups",
"Name": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]",
"UpdatedTime": "System.Nullable`1[System.DateTime]",
@@ -14428,7 +14428,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SecurityEnabled": "System.Nullable`1[System.Boolean]",
"MailNickname": "System.String",
@@ -14701,7 +14701,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SecurityEnabled": "System.Nullable`1[System.Boolean]",
"MailNickname": "System.String",
@@ -15089,7 +15089,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SecurityEnabled": "System.Nullable`1[System.Boolean]",
"MailNickname": "System.String",
@@ -15412,7 +15412,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StartDate": "System.String",
"EndDate": "System.String",
@@ -15522,7 +15522,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -15826,7 +15826,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -15988,7 +15988,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -16574,7 +16574,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SecurityEnabled": "System.Nullable`1[System.Boolean]",
"MailNickname": "System.String",
@@ -17053,7 +17053,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADObject",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADObject, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADObject, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DisplayName": "System.String",
"Id": "System.String",
@@ -17147,7 +17147,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SecurityEnabled": "System.Nullable`1[System.Boolean]",
"MailNickname": "System.String",
@@ -17383,7 +17383,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SecurityEnabled": "System.Nullable`1[System.Boolean]",
"MailNickname": "System.String",
@@ -17542,7 +17542,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ApplicationId": "System.Guid",
"ObjectType": "System.String",
@@ -17674,7 +17674,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -18068,7 +18068,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -18304,7 +18304,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StartDate": "System.String",
"EndDate": "System.String",
@@ -18416,7 +18416,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ApplicationId": "System.Guid",
"ObjectType": "System.String",
@@ -18718,7 +18718,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ApplicationId": "System.Guid",
"ObjectType": "System.String",
@@ -18878,7 +18878,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"UserPrincipalName": "System.String",
"ObjectType": "System.String",
@@ -19533,7 +19533,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StartDate": "System.String",
"EndDate": "System.String",
@@ -19643,7 +19643,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -20655,7 +20655,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -20838,7 +20838,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -21120,7 +21120,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -21272,7 +21272,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential",
"GenericTypeArguments": [],
@@ -21290,7 +21290,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential",
"GenericTypeArguments": [],
@@ -21939,7 +21939,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential",
"GenericTypeArguments": [],
@@ -22363,7 +22363,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential",
"GenericTypeArguments": [],
@@ -22482,7 +22482,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SecurityEnabled": "System.Nullable`1[System.Boolean]",
"MailNickname": "System.String",
@@ -22757,7 +22757,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ApplicationId": "System.Guid",
"ObjectType": "System.String",
@@ -22811,7 +22811,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization",
"Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSADServicePrincipalWrapper",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSADServicePrincipalWrapper, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSADServicePrincipalWrapper, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ApplicationId": "System.Guid",
"Secret": "System.Security.SecureString",
@@ -22911,7 +22911,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -22974,7 +22974,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential",
"GenericTypeArguments": [],
@@ -22994,7 +22994,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential",
"GenericTypeArguments": [],
@@ -23369,7 +23369,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential",
"GenericTypeArguments": [],
@@ -23603,7 +23603,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential",
"GenericTypeArguments": [],
@@ -24093,7 +24093,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential",
"GenericTypeArguments": [],
@@ -24327,7 +24327,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential",
"GenericTypeArguments": [],
@@ -24395,7 +24395,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -24554,7 +24554,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -24623,7 +24623,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential",
"GenericTypeArguments": [],
@@ -24691,7 +24691,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -24874,7 +24874,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -24943,7 +24943,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential[], Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential",
"GenericTypeArguments": [],
@@ -25062,7 +25062,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StartDate": "System.String",
"EndDate": "System.String",
@@ -25114,7 +25114,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization",
"Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSADCredentialWrapper",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSADCredentialWrapper, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSADCredentialWrapper, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Secret": "System.Security.SecureString",
"StartDate": "System.String",
@@ -25216,7 +25216,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ApplicationId": "System.Guid",
"ObjectType": "System.String",
@@ -25886,7 +25886,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ApplicationId": "System.Guid",
"ObjectType": "System.String",
@@ -26065,7 +26065,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ApplicationId": "System.Guid",
"ObjectType": "System.String",
@@ -26321,7 +26321,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"UserPrincipalName": "System.String",
"ObjectType": "System.String",
@@ -26811,7 +26811,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -27367,7 +27367,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -27698,7 +27698,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -28182,7 +28182,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -28495,7 +28495,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SecurityEnabled": "System.Nullable`1[System.Boolean]",
"MailNickname": "System.String",
@@ -28860,7 +28860,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SecurityEnabled": "System.Nullable`1[System.Boolean]",
"MailNickname": "System.String",
@@ -29206,7 +29206,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SecurityEnabled": "System.Nullable`1[System.Boolean]",
"MailNickname": "System.String",
@@ -29461,7 +29461,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SecurityEnabled": "System.Nullable`1[System.Boolean]",
"MailNickname": "System.String",
@@ -29849,7 +29849,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADGroup, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SecurityEnabled": "System.Nullable`1[System.Boolean]",
"MailNickname": "System.String",
@@ -30176,7 +30176,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ApplicationId": "System.Guid",
"ObjectType": "System.String",
@@ -30311,7 +30311,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ApplicationId": "System.Guid",
"ObjectType": "System.String",
@@ -30368,7 +30368,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -30973,7 +30973,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ApplicationId": "System.Guid",
"ObjectType": "System.String",
@@ -31128,7 +31128,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -31459,7 +31459,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ApplicationId": "System.Guid",
"ObjectType": "System.String",
@@ -32005,7 +32005,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ApplicationId": "System.Guid",
"ObjectType": "System.String",
@@ -32378,7 +32378,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"UserPrincipalName": "System.String",
"ObjectType": "System.String",
@@ -32975,7 +32975,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"UserPrincipalName": "System.String",
"ObjectType": "System.String",
@@ -33228,7 +33228,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -33326,7 +33326,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -33904,7 +33904,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADApplication, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AvailableToOtherTenants": "System.Boolean",
"IdentifierUris": "System.Collections.Generic.IList`1[System.String]",
@@ -34192,7 +34192,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ApplicationId": "System.Guid",
"ObjectType": "System.String",
@@ -34308,7 +34308,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ApplicationId": "System.Guid",
"ObjectType": "System.String",
@@ -35038,7 +35038,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADServicePrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ApplicationId": "System.Guid",
"ObjectType": "System.String",
@@ -35414,7 +35414,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"UserPrincipalName": "System.String",
"ObjectType": "System.String",
@@ -35527,7 +35527,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"UserPrincipalName": "System.String",
"ObjectType": "System.String",
@@ -36196,7 +36196,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADUser, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"UserPrincipalName": "System.String",
"ObjectType": "System.String",
@@ -36584,7 +36584,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Resources.Models.Authorization.PSPrincipal]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Resources.Models.Authorization.PSPrincipal]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Resources.Models.Authorization.PSPrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Resources.Models.Authorization.PSPrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -36596,7 +36596,7 @@
"Microsoft.Azure.Commands.Resources.Models.Authorization.PSPrincipal": {
"Namespace": "Microsoft.Azure.Commands.Resources.Models.Authorization",
"Name": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSPrincipal",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSPrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.Authorization.PSPrincipal, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ObjectId": "System.Guid",
"ObjectType": "System.String",
@@ -36864,7 +36864,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -36876,7 +36876,7 @@
"Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo": {
"Namespace": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups",
"Name": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Children": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Resources.Models.ManagementGroups.PSManagementGroupChildInfo]",
"Type": "System.String",
@@ -36978,7 +36978,7 @@
"Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADPasswordCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StartDate": "System.DateTime",
"EndDate": "System.DateTime",
@@ -37025,7 +37025,7 @@
"Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential": {
"Namespace": "Microsoft.Azure.Commands.ActiveDirectory",
"Name": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.12.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.ActiveDirectory.PSADKeyCredential, Microsoft.Azure.PowerShell.Cmdlets.Resources, Version=1.13.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"StartDate": "System.DateTime",
"EndDate": "System.DateTime",
diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Sql.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Sql.dll.json
index 9f27a9dd6805..1a255dab0f81 100644
--- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Sql.dll.json
+++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Sql.dll.json
@@ -14,7 +14,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -128,7 +128,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -417,7 +417,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -662,7 +662,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -776,7 +776,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -1065,7 +1065,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -1310,7 +1310,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -1424,7 +1424,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -1540,7 +1540,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -1784,7 +1784,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2009,7 +2009,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -2125,7 +2125,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2446,7 +2446,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2743,7 +2743,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -2975,7 +2975,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentSettingsModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -3089,7 +3089,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -3352,7 +3352,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -3591,7 +3591,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentSettingsModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -3705,7 +3705,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -3968,7 +3968,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -4207,7 +4207,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentSettingsModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -4321,7 +4321,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -4437,7 +4437,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4681,7 +4681,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -4906,7 +4906,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -5022,7 +5022,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -5343,7 +5343,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -5640,7 +5640,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -5872,7 +5872,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedInstanceVulnerabilityAssessmentSettingsModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedInstanceVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedInstanceVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -5981,7 +5981,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -6185,7 +6185,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -6359,7 +6359,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedInstanceVulnerabilityAssessmentSettingsModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedInstanceVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedInstanceVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -6468,7 +6468,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -6672,7 +6672,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -6846,7 +6846,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedInstanceVulnerabilityAssessmentSettingsModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedInstanceVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedInstanceVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -6955,7 +6955,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -7071,7 +7071,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -7345,7 +7345,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -7618,7 +7618,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -7819,7 +7819,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -7887,7 +7887,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8088,7 +8088,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -8296,7 +8296,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ServerVulnerabilityAssessmentSettingsModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ServerVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ServerVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -8405,7 +8405,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Server.Model",
"Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -8599,7 +8599,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Server.Model",
"Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -8763,7 +8763,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ServerVulnerabilityAssessmentSettingsModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ServerVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ServerVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -8872,7 +8872,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Server.Model",
"Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -9066,7 +9066,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Server.Model",
"Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -9230,7 +9230,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -9344,7 +9344,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -9460,7 +9460,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -9734,7 +9734,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10007,7 +10007,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10208,7 +10208,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentSettingsModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RecurringScansInterval": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
"EmailAdmins": "System.Boolean",
@@ -10276,7 +10276,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10477,7 +10477,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -10685,7 +10685,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentScanExportModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentScanExportModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentScanExportModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ServerName": "System.String",
"DatabaseName": "System.String",
@@ -10791,7 +10791,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TriggerType": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType",
"Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]",
@@ -11066,7 +11066,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TriggerType": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType",
"Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]",
@@ -11279,7 +11279,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentScanRecordModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TriggerType": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType",
"Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]",
@@ -11391,7 +11391,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -11722,7 +11722,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -11991,7 +11991,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentScanRecordModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TriggerType": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType",
"Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]",
@@ -12103,7 +12103,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -12476,7 +12476,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -12769,7 +12769,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentScanExportModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentScanExportModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentScanExportModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"InstanceName": "System.String",
"DatabaseName": "System.String",
@@ -12875,7 +12875,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TriggerType": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType",
"Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]",
@@ -13150,7 +13150,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TriggerType": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType",
"Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]",
@@ -13407,7 +13407,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentScanRecordModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TriggerType": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType",
"Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]",
@@ -13519,7 +13519,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -13824,7 +13824,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -14111,7 +14111,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentScanRecordModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentScanRecordModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TriggerType": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType",
"Errors": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]",
@@ -14223,7 +14223,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -14570,7 +14570,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -14905,7 +14905,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentRuleBaselineModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RuleAppliesToMaster": "System.Boolean",
"BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]",
@@ -15012,7 +15012,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -15385,7 +15385,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -15678,7 +15678,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentRuleBaselineModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RuleAppliesToMaster": "System.Boolean",
"BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]",
@@ -15785,7 +15785,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -16158,7 +16158,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -16451,7 +16451,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentRuleBaselineModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.DatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RuleAppliesToMaster": "System.Boolean",
"BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]",
@@ -16558,7 +16558,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RuleAppliesToMaster": "System.Boolean",
"BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]",
@@ -16912,7 +16912,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RuleAppliesToMaster": "System.Boolean",
"BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]",
@@ -17168,7 +17168,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentRuleBaselineModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RuleAppliesToMaster": "System.Boolean",
"BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]",
@@ -17275,7 +17275,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -17622,7 +17622,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -17957,7 +17957,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentRuleBaselineModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RuleAppliesToMaster": "System.Boolean",
"BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]",
@@ -18064,7 +18064,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -18411,7 +18411,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -18746,7 +18746,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentRuleBaselineModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.ManagedDatabaseVulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RuleAppliesToMaster": "System.Boolean",
"BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]",
@@ -18853,7 +18853,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RuleAppliesToMaster": "System.Boolean",
"BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]",
@@ -19207,7 +19207,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RuleAppliesToMaster": "System.Boolean",
"BaselineResult": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]",
@@ -19555,7 +19555,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model",
"Name": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IgnoreMissingVnetServiceEndpoint": "System.Nullable`1[System.Boolean]",
"ResourceGroupName": "System.String",
@@ -19829,7 +19829,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model",
"Name": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IgnoreMissingVnetServiceEndpoint": "System.Nullable`1[System.Boolean]",
"ResourceGroupName": "System.String",
@@ -20229,7 +20229,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model",
"Name": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IgnoreMissingVnetServiceEndpoint": "System.Nullable`1[System.Boolean]",
"ResourceGroupName": "System.String",
@@ -20545,7 +20545,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model",
"Name": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Model.AzureSqlServerVirtualNetworkRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IgnoreMissingVnetServiceEndpoint": "System.Nullable`1[System.Boolean]",
"ResourceGroupName": "System.String",
@@ -20945,7 +20945,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model",
"Name": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"Location": "System.String",
@@ -21379,7 +21379,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model",
"Name": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"Location": "System.String",
@@ -21477,7 +21477,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model",
"Name": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"Location": "System.String",
@@ -21729,7 +21729,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model",
"Name": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VirtualCluster.Model.AzureSqlVirtualClusterModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"Location": "System.String",
@@ -22027,7 +22027,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Usages.Models",
"Name": "Microsoft.Azure.Commands.Sql.Usages.Models.AzureSqlUsageModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Usages.Models.AzureSqlUsageModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Usages.Models.AzureSqlUsageModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CurrentValue": "System.Nullable`1[System.Int32]",
"Limit": "System.Nullable`1[System.Int32]",
@@ -22086,7 +22086,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model",
"Name": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Sql.Models.Sku",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -22264,7 +22264,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model",
"Name": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Sql.Models.Sku",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -22688,7 +22688,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model",
"Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.ServerKeyType",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -22780,7 +22780,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -22968,7 +22968,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -23800,7 +23800,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Server.Model",
"Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -24060,7 +24060,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Server.Model",
"Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -24556,7 +24556,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model",
"Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.ServerKeyType",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -24666,7 +24666,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -24860,7 +24860,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -25244,7 +25244,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model",
"Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceTransparentDataEncryptionProtectorModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType",
"ResourceGroupName": "System.String",
@@ -25352,7 +25352,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -25522,7 +25522,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -25860,7 +25860,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model",
"Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"State": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType",
"ResourceGroupName": "System.String",
@@ -26132,7 +26132,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model",
"Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionActivityModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Status": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionActivityStatusType",
"PercentComplete": "System.Single",
@@ -26405,7 +26405,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model",
"Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlServerTransparentDataEncryptionProtectorModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlServerTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlServerTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType",
"ResourceGroupName": "System.String",
@@ -26636,7 +26636,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model",
"Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.ServerKeyType",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -26728,7 +26728,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -26916,7 +26916,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -27324,7 +27324,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model",
"Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceTransparentDataEncryptionProtectorModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType",
"ResourceGroupName": "System.String",
@@ -27430,7 +27430,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model",
"Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -27571,7 +27571,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -27739,7 +27739,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model",
"Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -27874,7 +27874,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -28021,7 +28021,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model",
"Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -28248,7 +28248,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model",
"Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -28574,7 +28574,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model",
"Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"State": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType",
"ResourceGroupName": "System.String",
@@ -28630,7 +28630,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model",
"Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -28826,7 +28826,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model",
"Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -29058,7 +29058,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model",
"Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlServerTransparentDataEncryptionProtectorModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlServerTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlServerTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType",
"ResourceGroupName": "System.String",
@@ -29115,7 +29115,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model",
"Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -29347,7 +29347,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model",
"Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -29627,7 +29627,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model",
"Name": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ThreatDetectionState": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType",
"EmailAdmins": "System.Boolean",
@@ -29906,7 +29906,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model",
"Name": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ServerThreatDetectionPolicyModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ServerThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ServerThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ThreatDetectionState": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType",
"EmailAdmins": "System.Boolean",
@@ -30142,7 +30142,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model",
"Name": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ThreatDetectionState": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType",
"EmailAdmins": "System.Boolean",
@@ -30463,7 +30463,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model",
"Name": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ServerThreatDetectionPolicyModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ServerThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ServerThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ThreatDetectionState": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType",
"EmailAdmins": "System.Boolean",
@@ -30741,7 +30741,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model",
"Name": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DatabaseThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ThreatDetectionState": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType",
"EmailAdmins": "System.Boolean",
@@ -31280,7 +31280,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model",
"Name": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ServerThreatDetectionPolicyModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ServerThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ServerThreatDetectionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ThreatDetectionState": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType",
"EmailAdmins": "System.Boolean",
@@ -32089,7 +32089,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ServiceTierAdvisor.Model",
"Name": "Microsoft.Azure.Commands.Sql.ServiceTierAdvisor.Model.UpgradeServerHint",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServiceTierAdvisor.Model.UpgradeServerHint, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServiceTierAdvisor.Model.UpgradeServerHint, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Databases": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedDatabaseProperties]",
"ElasticPools": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.UpgradeRecommendedElasticPoolProperties]"
@@ -32359,7 +32359,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ServiceObjective.Model",
"Name": "Microsoft.Azure.Commands.Sql.ServiceObjective.Model.AzureSqlServerServiceObjectiveModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServiceObjective.Model.AzureSqlServerServiceObjectiveModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServiceObjective.Model.AzureSqlServerServiceObjectiveModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Enabled": "System.Boolean",
"IsDefault": "System.Boolean",
@@ -32793,7 +32793,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Server.Model",
"Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -33035,7 +33035,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Server.Model",
"Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -33625,7 +33625,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Server.Model",
"Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -33909,7 +33909,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Server.Model",
"Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -34457,7 +34457,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model",
"Name": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel+ServerKeyType",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -34774,7 +34774,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model",
"Name": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel+ServerKeyType",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -35049,7 +35049,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model",
"Name": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel+ServerKeyType",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -35366,7 +35366,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model",
"Name": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -35642,7 +35642,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model",
"Name": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -35960,7 +35960,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model",
"Name": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -36072,7 +36072,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model",
"Name": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -36386,7 +36386,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model",
"Name": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -36754,7 +36754,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model",
"Name": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDnsAlias.Model.AzureSqlServerDnsAliasModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -37202,7 +37202,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model",
"Name": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -37497,7 +37497,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model",
"Name": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationActivityModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationActivityModel+ServerDisasterRecoveryConfigurationState",
"OperationId": "System.Guid",
@@ -37823,7 +37823,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model",
"Name": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -38286,7 +38286,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model",
"Name": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -38623,7 +38623,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model",
"Name": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -39184,7 +39184,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model",
"Name": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model.AzureSqlServerCommunicationLinkModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model.AzureSqlServerCommunicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model.AzureSqlServerCommunicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -39458,7 +39458,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model",
"Name": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model.AzureSqlServerCommunicationLinkModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model.AzureSqlServerCommunicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model.AzureSqlServerCommunicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -39816,7 +39816,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model",
"Name": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model.AzureSqlServerCommunicationLinkModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model.AzureSqlServerCommunicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerCommunicationLink.Model.AzureSqlServerCommunicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -40118,6 +40118,237 @@
],
"AliasList": []
},
+ {
+ "VerbName": "Disable",
+ "NounName": "AzSqlServerActiveDirectoryOnlyAuthentication",
+ "Name": "Disable-AzSqlServerActiveDirectoryOnlyAuthentication",
+ "ClassName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Cmdlet.DisableAzureSqlServerActiveDirectoryOnlyAuthentication",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 0,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "__AllParameterSets",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model",
+ "Name": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "ObjectId": "System.Guid",
+ "IsAzureADOnlyAuthentication": "System.Nullable`1[System.Boolean]",
+ "ResourceGroupName": "System.String",
+ "ServerName": "System.String",
+ "DisplayName": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "ServerName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ServerName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 1,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": 0,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": true
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ],
+ "AliasList": []
+ },
{
"VerbName": "Get",
"NounName": "AzSqlServerActiveDirectoryAdministrator",
@@ -40132,7 +40363,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model",
"Name": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ObjectId": "System.Guid",
"IsAzureADOnlyAuthentication": "System.Nullable`1[System.Boolean]",
@@ -40363,7 +40594,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model",
"Name": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ObjectId": "System.Guid",
"IsAzureADOnlyAuthentication": "System.Nullable`1[System.Boolean]",
@@ -40636,7 +40867,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model",
"Name": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Model.AzureSqlServerActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ObjectId": "System.Guid",
"IsAzureADOnlyAuthentication": "System.Nullable`1[System.Boolean]",
@@ -40724,8 +40955,10 @@
"ValidateNotNullOrEmpty": true
},
{
- "Name": "IsAzureOnlyAuthentication",
- "AliasList": [],
+ "Name": "IsAzureADOnlyAuthentication",
+ "AliasList": [
+ "IsAzureOnlyAuthentication"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[System.Boolean]",
@@ -40741,7 +40974,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
{
"Name": "ServerName",
@@ -40867,8 +41100,10 @@
},
{
"ParameterMetadata": {
- "Name": "IsAzureOnlyAuthentication",
- "AliasList": [],
+ "Name": "IsAzureADOnlyAuthentication",
+ "AliasList": [
+ "IsAzureOnlyAuthentication"
+ ],
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[System.Boolean]",
@@ -40884,7 +41119,7 @@
"ValidateSet": [],
"ValidateRangeMin": null,
"ValidateRangeMax": null,
- "ValidateNotNullOrEmpty": true
+ "ValidateNotNullOrEmpty": false
},
"Mandatory": false,
"Position": 4,
@@ -40997,7 +41232,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Replication.Model",
"Name": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowConnections": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -41372,7 +41607,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Replication.Model",
"Name": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureSqlDatabaseCopyModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureSqlDatabaseCopyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureSqlDatabaseCopyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -42613,7 +42848,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Replication.Model",
"Name": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowConnections": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -42816,7 +43051,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Replication.Model",
"Name": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -43192,7 +43427,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Replication.Model",
"Name": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -43611,7 +43846,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Replication.Model",
"Name": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -44034,7 +44269,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Replication.Model",
"Name": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -44290,7 +44525,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Replication.Model",
"Name": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowConnections": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -44665,7 +44900,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Replication.Model",
"Name": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AllowConnections": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -45526,7 +45761,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model",
"Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlDatabaseRecommendedActionModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlDatabaseRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlDatabaseRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ErrorDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo",
"ImplementationDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo",
@@ -45932,7 +46167,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model",
"Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlElasticPoolRecommendedActionModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlElasticPoolRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlElasticPoolRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ErrorDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo",
"ImplementationDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo",
@@ -46338,7 +46573,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model",
"Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlServerRecommendedActionModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlServerRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlServerRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ErrorDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo",
"ImplementationDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo",
@@ -46697,7 +46932,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model",
"Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlDatabaseRecommendedActionModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlDatabaseRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlDatabaseRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ErrorDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo",
"ImplementationDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo",
@@ -46821,7 +47056,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet",
"Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -47059,7 +47294,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet",
"Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -47315,7 +47550,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model",
"Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlElasticPoolRecommendedActionModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlElasticPoolRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlElasticPoolRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ErrorDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo",
"ImplementationDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo",
@@ -47439,7 +47674,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet",
"Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -47677,7 +47912,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet",
"Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -47933,7 +48168,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model",
"Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlServerRecommendedActionModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlServerRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Model.AzureSqlServerRecommendedActionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ErrorDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionErrorInfo",
"ImplementationDetails": "Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedActionImplementationInfo",
@@ -48052,7 +48287,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet",
"Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -48272,7 +48507,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet",
"Name": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet.RecommendedActionState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -48504,7 +48739,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -48580,7 +48815,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model",
"Name": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Sql.Models.Sku",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -48776,7 +49011,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model",
"Name": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Sql.Models.Sku",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -49262,7 +49497,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -49338,7 +49573,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model",
"Name": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Sql.Models.Sku",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -49849,7 +50084,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model",
"Name": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Sql.Models.Sku",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -52062,7 +52297,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -52176,7 +52411,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -52444,7 +52679,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -52758,7 +52993,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -52834,7 +53069,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -53251,7 +53486,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -54887,7 +55122,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlRecoverableManagedDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlRecoverableManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlRecoverableManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceGroupName": "System.String",
"ManagedInstanceName": "System.String",
@@ -55227,7 +55462,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -55396,7 +55631,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -55750,7 +55985,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -55924,7 +56159,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -56111,7 +56346,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -56599,7 +56834,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -56999,7 +57234,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -57148,7 +57383,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -57457,7 +57692,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -57788,7 +58023,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -58034,7 +58269,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationDate": "System.Nullable`1[System.DateTime]",
"EarliestRestorePoint": "System.Nullable`1[System.DateTime]",
@@ -58087,7 +58322,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlRecoverableManagedDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlRecoverableManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlRecoverableManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceGroupName": "System.String",
"ManagedInstanceName": "System.String",
@@ -58580,7 +58815,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationDate": "System.Nullable`1[System.DateTime]",
"EarliestRestorePoint": "System.Nullable`1[System.DateTime]",
@@ -59236,7 +59471,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationDate": "System.Nullable`1[System.DateTime]",
"EarliestRestorePoint": "System.Nullable`1[System.DateTime]",
@@ -60281,7 +60516,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlRecoverableManagedDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlRecoverableManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlRecoverableManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceGroupName": "System.String",
"ManagedInstanceName": "System.String",
@@ -61246,7 +61481,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlDeletedManagedDatabaseBackupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlDeletedManagedDatabaseBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlDeletedManagedDatabaseBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DeletionDate": "System.DateTime",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -61775,7 +62010,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"WeekOfYear": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -62053,7 +62288,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupShortTermRetentionPolicyModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupShortTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupShortTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RetentionDays": "System.Int32",
"DeletionDate": "System.Nullable`1[System.DateTime]",
@@ -62134,7 +62369,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationDate": "System.Nullable`1[System.DateTime]",
"EarliestRestorePoint": "System.Nullable`1[System.DateTime]",
@@ -62319,7 +62554,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationDate": "System.Nullable`1[System.DateTime]",
"EarliestRestorePoint": "System.Nullable`1[System.DateTime]",
@@ -62681,7 +62916,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseLongTermRetentionBackupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackupExpirationTime": "System.Nullable`1[System.DateTime]",
"BackupTime": "System.Nullable`1[System.DateTime]",
@@ -62761,7 +62996,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -63752,7 +63987,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -63916,7 +64151,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -64159,7 +64394,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseLongTermRetentionBackupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackupExpirationTime": "System.Nullable`1[System.DateTime]",
"BackupTime": "System.Nullable`1[System.DateTime]",
@@ -64275,7 +64510,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseLongTermRetentionBackupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackupExpirationTime": "System.Nullable`1[System.DateTime]",
"BackupTime": "System.Nullable`1[System.DateTime]",
@@ -64635,7 +64870,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseLongTermRetentionBackupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackupExpirationTime": "System.Nullable`1[System.DateTime]",
"BackupTime": "System.Nullable`1[System.DateTime]",
@@ -64937,7 +65172,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupLongTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"WeekOfYear": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -65961,7 +66196,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model",
"Name": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.LocationCapabilityModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.LocationCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.LocationCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SupportedServerVersions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServerVersionCapabilityModel]",
"LocationName": "System.String",
@@ -66453,7 +66688,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model",
"Name": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model.AzureSqlInstanceActiveDirectoryAdministratorModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model.AzureSqlInstanceActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model.AzureSqlInstanceActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ObjectId": "System.Guid",
"ResourceGroupName": "System.String",
@@ -66509,7 +66744,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -66675,7 +66910,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -67009,7 +67244,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model",
"Name": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model.AzureSqlInstanceActiveDirectoryAdministratorModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model.AzureSqlInstanceActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model.AzureSqlInstanceActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ObjectId": "System.Guid",
"ResourceGroupName": "System.String",
@@ -67101,7 +67336,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -67359,7 +67594,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -67793,7 +68028,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model",
"Name": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model.AzureSqlInstanceActiveDirectoryAdministratorModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model.AzureSqlInstanceActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceActiveDirectoryAdministrator.Model.AzureSqlInstanceActiveDirectoryAdministratorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ObjectId": "System.Guid",
"ResourceGroupName": "System.String",
@@ -67885,7 +68120,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -68143,7 +68378,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -68577,7 +68812,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model",
"Name": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Sql.Models.Sku",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -69017,7 +69252,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model",
"Name": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Sql.Models.Sku",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -69603,7 +69838,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model",
"Name": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Sql.Models.Sku",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -69667,7 +69902,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model",
"Name": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Sql.Models.Sku",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -69825,7 +70060,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model",
"Name": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Sql.Models.Sku",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -70151,7 +70386,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model",
"Name": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Sql.Models.Sku",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -70215,7 +70450,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model",
"Name": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Sql.Models.Sku",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -70429,7 +70664,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model",
"Name": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Instance_Pools.Model.AzureSqlInstancePoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Sql.Models.Sku",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -71051,7 +71286,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model",
"Name": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -71333,7 +71568,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model",
"Name": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -71951,7 +72186,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model",
"Name": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -72071,7 +72306,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model",
"Name": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -72533,7 +72768,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model",
"Name": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -72795,7 +73030,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model",
"Name": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -72915,7 +73150,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model",
"Name": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -73443,7 +73678,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model",
"Name": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -73753,7 +73988,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model",
"Name": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -73873,7 +74108,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model",
"Name": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -74269,7 +74504,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model",
"Name": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.InstanceFailoverGroup.Model.AzureSqlInstanceFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FailoverWithDataLossGracePeriodHours": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -74483,7 +74718,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Model",
"Name": "Microsoft.Azure.Commands.Sql.Model.IndexRecommendation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Model.IndexRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Model.IndexRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"EstimatedImpact": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.OperationImpact]",
"ReportedImpact": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.OperationImpact]",
@@ -74854,7 +75089,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Model",
"Name": "Microsoft.Azure.Commands.Sql.Model.IndexRecommendation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Model.IndexRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Model.IndexRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"EstimatedImpact": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.OperationImpact]",
"ReportedImpact": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.OperationImpact]",
@@ -75183,7 +75418,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Model",
"Name": "Microsoft.Azure.Commands.Sql.Model.IndexRecommendation",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Model.IndexRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Model.IndexRecommendation, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"EstimatedImpact": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.OperationImpact]",
"ReportedImpact": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.OperationImpact]",
@@ -75512,7 +75747,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model",
"Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AzureSqlDatabaseImportExportStatusModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AzureSqlDatabaseImportExportStatusModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AzureSqlDatabaseImportExportStatusModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OperationStatusLink": "System.String",
"ErrorMessage": "System.String",
@@ -75702,7 +75937,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model",
"Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AzureSqlDatabaseImportExportBaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AzureSqlDatabaseImportExportBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AzureSqlDatabaseImportExportBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AuthenticationType": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType",
"StorageKeyType": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType",
@@ -75802,7 +76037,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model",
"Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -75977,7 +76212,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model",
"Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -76185,7 +76420,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model",
"Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -76390,7 +76625,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model",
"Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -76574,7 +76809,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model",
"Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AzureSqlDatabaseImportExportBaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AzureSqlDatabaseImportExportBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AzureSqlDatabaseImportExportBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AuthenticationType": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType",
"StorageKeyType": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType",
@@ -76656,7 +76891,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseEdition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseEdition, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseEdition, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -76813,7 +77048,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model",
"Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -76988,7 +77223,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model",
"Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -77172,7 +77407,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseEdition",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseEdition, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseEdition, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -77353,7 +77588,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model",
"Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -77558,7 +77793,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model",
"Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -77742,7 +77977,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.FirewallRule.Model",
"Name": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -78019,7 +78254,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.FirewallRule.Model",
"Name": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -78606,7 +78841,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.FirewallRule.Model",
"Name": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -78925,7 +79160,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.FirewallRule.Model",
"Name": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FirewallRule.Model.AzureSqlServerFirewallRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ResourceGroupName": "System.String",
"ServerName": "System.String",
@@ -79286,7 +79521,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model",
"Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FailoverGroupReadOnlyEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint",
"FailoverGroupReadWriteEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint",
@@ -79416,7 +79651,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -79541,7 +79776,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -79642,7 +79877,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model",
"Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FailoverGroupReadOnlyEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint",
"FailoverGroupReadWriteEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint",
@@ -79952,7 +80187,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model",
"Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FailoverGroupReadOnlyEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint",
"FailoverGroupReadWriteEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint",
@@ -80118,7 +80353,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model",
"Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -80239,7 +80474,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model",
"Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -80495,7 +80730,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model",
"Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -80628,7 +80863,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model",
"Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -80812,7 +81047,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model",
"Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FailoverGroupReadOnlyEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint",
"FailoverGroupReadWriteEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint",
@@ -80942,7 +81177,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -81085,7 +81320,7 @@
"Type": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -81210,7 +81445,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model",
"Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FailoverGroupReadOnlyEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint",
"FailoverGroupReadWriteEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint",
@@ -81562,7 +81797,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model",
"Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FailoverGroupReadOnlyEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint",
"FailoverGroupReadWriteEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint",
@@ -81692,7 +81927,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model",
"Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -81813,7 +82048,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model",
"Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -82021,7 +82256,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model",
"Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.FailoverPolicy, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -82154,7 +82389,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model",
"Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AllowReadOnlyFailoverToPrimary, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -82338,7 +82573,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model",
"Name": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.FailoverGroup.Model.AzureSqlFailoverGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"FailoverGroupReadOnlyEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadOnlyEndpoint",
"FailoverGroupReadWriteEndpoint": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ReadWriteEndpoint",
@@ -82732,7 +82967,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticPool.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -83025,7 +83260,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticPool.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolActivityModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OperationId": "System.Guid",
"IsCancellable": "System.Nullable`1[System.Boolean]",
@@ -83359,7 +83594,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -84099,7 +84334,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticPool.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -85446,7 +85681,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticPool.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -85781,7 +86016,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticPool.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -87132,7 +87367,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticPool.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolActivityModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticPool.Model.AzureSqlElasticPoolActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"OperationId": "System.Guid",
"IsCancellable": "System.Nullable`1[System.Boolean]",
@@ -87508,7 +87743,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -87589,7 +87824,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Server.Model",
"Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -87865,7 +88100,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Server.Model",
"Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -88149,7 +88384,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -88230,7 +88465,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -88647,7 +88882,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -89036,7 +89271,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -89117,7 +89352,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -89434,7 +89669,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -89737,7 +89972,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -89818,7 +90053,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -90139,7 +90374,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -90422,7 +90657,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Password": "System.Security.SecureString",
"CredentialName": "System.String",
@@ -90500,7 +90735,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -90817,7 +91052,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -91100,7 +91335,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Password": "System.Security.SecureString",
"CredentialName": "System.String",
@@ -91178,7 +91413,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -91537,7 +91772,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -91868,7 +92103,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Password": "System.Security.SecureString",
"CredentialName": "System.String",
@@ -91946,7 +92181,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Password": "System.Security.SecureString",
"CredentialName": "System.String",
@@ -92260,7 +92495,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Password": "System.Security.SecureString",
"CredentialName": "System.String",
@@ -92488,7 +92723,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Password": "System.Security.SecureString",
"CredentialName": "System.String",
@@ -92566,7 +92801,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Password": "System.Security.SecureString",
"CredentialName": "System.String",
@@ -92922,7 +93157,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobCredentialModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Password": "System.Security.SecureString",
"CredentialName": "System.String",
@@ -93198,7 +93433,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreateTime": "System.Nullable`1[System.DateTime]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -93284,7 +93519,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -93683,7 +93918,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -94036,7 +94271,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreateTime": "System.Nullable`1[System.DateTime]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -94122,7 +94357,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreateTime": "System.Nullable`1[System.DateTime]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -94482,7 +94717,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreateTime": "System.Nullable`1[System.DateTime]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -94718,7 +94953,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel",
"RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]",
@@ -94804,7 +95039,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -94994,7 +95229,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -95923,7 +96158,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -96833,7 +97068,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -97201,7 +97436,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -97343,7 +97578,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -97763,7 +97998,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -98645,7 +98880,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -99690,7 +99925,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel",
"RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]",
@@ -99776,7 +100011,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel",
"RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]",
@@ -99953,7 +100188,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -100476,7 +100711,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -101850,7 +102085,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel",
"RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]",
@@ -101923,7 +102158,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -102389,7 +102624,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel",
"RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]",
@@ -102758,7 +102993,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel",
"RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]",
@@ -103223,7 +103458,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -104680,7 +104915,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -104763,7 +104998,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -105792,7 +106027,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -105978,7 +106213,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -106214,7 +106449,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -107179,7 +107414,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -107262,7 +107497,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -108371,7 +108606,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -108585,7 +108820,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -108823,7 +109058,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -109816,7 +110051,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]",
"TargetGroupName": "System.String",
@@ -109893,7 +110128,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -110210,7 +110445,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -110493,7 +110728,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]",
"TargetGroupName": "System.String",
@@ -110570,7 +110805,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -110887,7 +111122,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -111170,7 +111405,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]",
"TargetGroupName": "System.String",
@@ -111247,7 +111482,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]",
"TargetGroupName": "System.String",
@@ -111602,7 +111837,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]",
"TargetGroupName": "System.String",
@@ -111901,7 +112136,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MembershipType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobTargetGroupMembershipType]",
"TargetGroupName": "System.String",
@@ -112002,7 +112237,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]",
"TargetGroupName": "System.String",
@@ -113037,7 +113272,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]",
"TargetGroupName": "System.String",
@@ -113217,7 +113452,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]",
"TargetGroupName": "System.String",
@@ -113421,7 +113656,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]",
"TargetGroupName": "System.String",
@@ -114148,7 +114383,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MembershipType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobTargetGroupMembershipType]",
"TargetGroupName": "System.String",
@@ -114231,7 +114466,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]",
"TargetGroupName": "System.String",
@@ -115126,7 +115361,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]",
"TargetGroupName": "System.String",
@@ -115282,7 +115517,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]",
"TargetGroupName": "System.String",
@@ -115462,7 +115697,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Targets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]",
"TargetGroupName": "System.String",
@@ -116137,7 +116372,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel",
"RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]",
@@ -116223,7 +116458,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -116796,7 +117031,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -116936,7 +117171,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -117367,7 +117602,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel",
"RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]",
@@ -117453,7 +117688,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel",
"RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]",
@@ -117817,7 +118052,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobStepModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Output": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel",
"RetryIntervalBackoffMultiplier": "System.Nullable`1[System.Double]",
@@ -118053,7 +118288,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -118136,7 +118371,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -118453,7 +118688,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -118736,7 +118971,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -118819,7 +119054,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -119180,7 +119415,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScheduleType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobScheduleType]",
"Enabled": "System.Nullable`1[System.Boolean]",
@@ -119485,7 +119720,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreateTime": "System.Nullable`1[System.DateTime]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -119571,7 +119806,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -120338,7 +120573,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -120628,7 +120863,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"WorkerCount": "System.Nullable`1[System.Int32]",
@@ -121201,7 +121436,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreateTime": "System.Nullable`1[System.DateTime]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -121287,7 +121522,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreateTime": "System.Nullable`1[System.DateTime]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -122079,7 +122314,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreateTime": "System.Nullable`1[System.DateTime]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -122324,7 +122559,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreateTime": "System.Nullable`1[System.DateTime]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -122804,7 +123039,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreateTime": "System.Nullable`1[System.DateTime]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -122890,7 +123125,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreateTime": "System.Nullable`1[System.DateTime]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -123564,7 +123799,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobExecutionModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreateTime": "System.Nullable`1[System.DateTime]",
"StartTime": "System.Nullable`1[System.DateTime]",
@@ -124177,7 +124412,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"ServerName": "System.String",
@@ -124286,7 +124521,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -124533,7 +124768,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"ServerName": "System.String",
@@ -124922,7 +125157,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -125328,7 +125563,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"InstanceName": "System.String",
@@ -125437,7 +125672,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -125658,7 +125893,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"InstanceName": "System.String",
@@ -126047,7 +126282,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -126427,7 +126662,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"ServerName": "System.String",
@@ -126536,7 +126771,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -126783,7 +127018,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"ServerName": "System.String",
@@ -127172,7 +127407,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -127578,7 +127813,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"InstanceName": "System.String",
@@ -127687,7 +127922,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -127908,7 +128143,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"InstanceName": "System.String",
@@ -128297,7 +128532,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -128656,7 +128891,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"ServerName": "System.String",
@@ -128766,7 +129001,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -129345,7 +129580,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -129535,7 +129770,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -129872,7 +130107,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"ServerName": "System.String",
@@ -129982,7 +130217,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -130295,7 +130530,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -130560,7 +130795,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"InstanceName": "System.String",
@@ -130670,7 +130905,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -131223,7 +131458,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -131387,7 +131622,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -131698,7 +131933,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"InstanceName": "System.String",
@@ -131808,7 +132043,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -132095,7 +132330,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -132353,7 +132588,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"ServerName": "System.String",
@@ -132462,7 +132697,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -132707,7 +132942,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"ServerName": "System.String",
@@ -133096,7 +133331,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -133500,7 +133735,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"InstanceName": "System.String",
@@ -133609,7 +133844,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -133828,7 +134063,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"InstanceName": "System.String",
@@ -134217,7 +134452,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -134631,7 +134866,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"ServerName": "System.String",
@@ -134740,7 +134975,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -135317,7 +135552,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -135603,7 +135838,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SqlDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"ServerName": "System.String",
@@ -135910,7 +136145,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"InstanceName": "System.String",
@@ -136019,7 +136254,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -136570,7 +136805,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -136830,7 +137065,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SensitivityLabels": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
"InstanceName": "System.String",
@@ -137082,7 +137317,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -137419,7 +137654,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel+DatabaseState",
"OperationId": "System.Guid",
@@ -137790,7 +138025,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModelExpanded",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModelExpanded, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModelExpanded, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ServiceTierAdvisor": "Microsoft.Azure.Management.Sql.LegacySdk.Models.ServiceTierAdvisorProperties",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -138134,6 +138369,24 @@
"ValidateRangeMax": null,
"ValidateNotNullOrEmpty": true
},
+ {
+ "Name": "ReadableSecondary",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
{
"Name": "AsJob",
"AliasList": [],
@@ -138288,6 +138541,30 @@
"ValueFromPipeline": false,
"ValueFromPipelineByPropertyName": true
},
+ {
+ "ParameterMetadata": {
+ "Name": "ReadableSecondary",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
{
"ParameterMetadata": {
"Name": "AsJob",
@@ -138466,7 +138743,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -138711,7 +138988,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -139198,7 +139475,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -139768,7 +140045,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -140368,7 +140645,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -140775,7 +141052,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -141154,7 +141431,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -141363,7 +141640,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -141988,7 +142265,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -142460,7 +142737,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -143111,7 +143388,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Properties": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel+DatabaseState",
"OperationId": "System.Guid",
@@ -143482,7 +143759,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model",
"Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackupExpirationTime": "System.Nullable`1[System.DateTime]",
"BackupTime": "System.Nullable`1[System.DateTime]",
@@ -143562,7 +143839,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -144607,7 +144884,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -144797,7 +145074,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -145066,7 +145343,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model",
"Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackupExpirationTime": "System.Nullable`1[System.DateTime]",
"BackupTime": "System.Nullable`1[System.DateTime]",
@@ -145182,7 +145459,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model",
"Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackupExpirationTime": "System.Nullable`1[System.DateTime]",
"BackupTime": "System.Nullable`1[System.DateTime]",
@@ -145542,7 +145819,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model",
"Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseLongTermRetentionBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"BackupExpirationTime": "System.Nullable`1[System.DateTime]",
"BackupTime": "System.Nullable`1[System.DateTime]",
@@ -145844,7 +146121,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model",
"Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupShortTermRetentionPolicyModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupShortTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupShortTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RetentionDays": "System.Int32",
"ResourceGroupName": "System.String",
@@ -145919,7 +146196,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -146148,7 +146425,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -146549,7 +146826,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model",
"Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"LastAvailableBackupDate": "System.DateTime",
"ResourceGroupName": "System.String",
@@ -146824,7 +147101,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model",
"Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDeletedDatabaseBackupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDeletedDatabaseBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDeletedDatabaseBackupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationDate": "System.DateTime",
"DeletionDate": "System.DateTime",
@@ -147150,7 +147427,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model",
"Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupLongTermRetentionPolicyModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupLongTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupLongTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"WeekOfYear": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -147428,7 +147705,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model",
"Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"State": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState",
"Location": "System.String",
@@ -147701,7 +147978,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model",
"Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseRestorePointModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseRestorePointModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseRestorePointModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RestorePointCreationDate": "System.Nullable`1[System.DateTime]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
@@ -147977,7 +148254,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model",
"Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseRestorePointModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseRestorePointModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseRestorePointModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RestorePointCreationDate": "System.Nullable`1[System.DateTime]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
@@ -148295,7 +148572,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model",
"Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseRestorePointModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseRestorePointModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseRestorePointModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RestorePointCreationDate": "System.Nullable`1[System.DateTime]",
"EarliestRestoreDate": "System.Nullable`1[System.DateTime]",
@@ -148655,7 +148932,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -151768,7 +152045,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model",
"Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupShortTermRetentionPolicyModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupShortTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupShortTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RetentionDays": "System.Int32",
"ResourceGroupName": "System.String",
@@ -151861,7 +152138,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -152158,7 +152435,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -152587,7 +152864,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model",
"Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupLongTermRetentionPolicyModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupLongTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseBackupLongTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"WeekOfYear": "System.Nullable`1[System.Int32]",
"ResourceGroupName": "System.String",
@@ -153611,7 +153888,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model",
"Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"State": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState",
"Location": "System.String",
@@ -153668,7 +153945,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model",
"Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -153864,7 +154141,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model",
"Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -154096,7 +154373,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupShortTermRetentionPolicyModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupShortTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabaseBackup.Model.AzureSqlManagedDatabaseBackupShortTermRetentionPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RetentionDays": "System.Int32",
"DeletionDate": "System.Nullable`1[System.DateTime]",
@@ -154177,7 +154454,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationDate": "System.Nullable`1[System.DateTime]",
"EarliestRestorePoint": "System.Nullable`1[System.DateTime]",
@@ -154380,7 +154657,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedDatabase.Model.AzureSqlManagedDatabaseBaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"CreationDate": "System.Nullable`1[System.DateTime]",
"EarliestRestorePoint": "System.Nullable`1[System.DateTime]",
@@ -154838,7 +155115,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -155213,7 +155490,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -155588,7 +155865,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsUpToDate": "System.Nullable`1[System.Boolean]",
"LastAliveTime": "System.Nullable`1[System.DateTime]",
@@ -155888,7 +156165,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentLinkedDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentLinkedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentLinkedDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SeverName": "System.String",
"DatabaseId": "System.String",
@@ -156176,7 +156453,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Schema": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel",
"LastSyncTime": "System.Nullable`1[System.DateTime]",
@@ -156525,7 +156802,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupLogModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupLogModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupLogModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"TimeStamp": "System.Nullable`1[System.DateTime]",
"LogLevel": "System.String",
@@ -156989,7 +157266,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MemberDatabasePassword": "System.Security.SecureString",
"ResourceId": "System.String",
@@ -157386,7 +157663,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tables": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaTableModel]",
"LastUpdateTime": "System.Nullable`1[System.DateTime]"
@@ -157750,7 +158027,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsUpToDate": "System.Nullable`1[System.Boolean]",
"LastAliveTime": "System.Nullable`1[System.DateTime]",
@@ -158454,7 +158731,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentKeyModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SyncAgentKey": "System.String"
},
@@ -158723,7 +159000,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Schema": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel",
"LastSyncTime": "System.Nullable`1[System.DateTime]",
@@ -159372,7 +159649,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MemberDatabasePassword": "System.Security.SecureString",
"ResourceId": "System.String",
@@ -160890,7 +161167,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncAgentModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsUpToDate": "System.Nullable`1[System.Boolean]",
"LastAliveTime": "System.Nullable`1[System.DateTime]",
@@ -161274,7 +161551,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Schema": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel",
"LastSyncTime": "System.Nullable`1[System.DateTime]",
@@ -161707,7 +161984,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MemberDatabasePassword": "System.Security.SecureString",
"ResourceId": "System.String",
@@ -162188,7 +162465,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Schema": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel",
"LastSyncTime": "System.Nullable`1[System.DateTime]",
@@ -162579,7 +162856,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Schema": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel",
"LastSyncTime": "System.Nullable`1[System.DateTime]",
@@ -162970,7 +163247,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Schema": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel",
"LastSyncTime": "System.Nullable`1[System.DateTime]",
@@ -163445,7 +163722,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncMemberModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MemberDatabasePassword": "System.Security.SecureString",
"ResourceId": "System.String",
@@ -163884,7 +164161,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Schema": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel",
"LastSyncTime": "System.Nullable`1[System.DateTime]",
@@ -164313,7 +164590,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataMasking.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingPolicyModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DataMaskingState": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DataMaskingStateType",
"DatabaseName": "System.String",
@@ -164586,7 +164863,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataMasking.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MaskingFunction": "Microsoft.Azure.Commands.Sql.DataMasking.Model.MaskingFunction",
"NumberFrom": "System.Nullable`1[System.Double]",
@@ -164992,7 +165269,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataMasking.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MaskingFunction": "Microsoft.Azure.Commands.Sql.DataMasking.Model.MaskingFunction",
"NumberFrom": "System.Nullable`1[System.Double]",
@@ -165724,7 +166001,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataMasking.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MaskingFunction": "Microsoft.Azure.Commands.Sql.DataMasking.Model.MaskingFunction",
"NumberFrom": "System.Nullable`1[System.Double]",
@@ -166214,7 +166491,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataMasking.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingPolicyModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DataMaskingState": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DataMaskingStateType",
"DatabaseName": "System.String",
@@ -166619,7 +166896,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataMasking.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DatabaseDataMaskingRuleModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MaskingFunction": "Microsoft.Azure.Commands.Sql.DataMasking.Model.MaskingFunction",
"NumberFrom": "System.Nullable`1[System.Double]",
@@ -167351,7 +167628,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model",
"Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.DatabaseAuditModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.DatabaseAuditModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.DatabaseAuditModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AuditActionGroup": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]",
"BlobStorageTargetState": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditStateType",
@@ -167472,7 +167749,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -167743,7 +168020,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -167960,7 +168237,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model",
"Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.ServerAuditModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.ServerAuditModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.ServerAuditModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AuditActionGroup": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]",
"BlobStorageTargetState": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditStateType",
@@ -168061,7 +168338,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Server.Model",
"Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -168297,7 +168574,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Server.Model",
"Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -168582,7 +168859,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -168853,7 +169130,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -169125,7 +169402,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Server.Model",
"Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -169361,7 +169638,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Server.Model",
"Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -169592,7 +169869,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model",
"Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups",
"GenericTypeArguments": [],
@@ -169894,7 +170171,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -170049,7 +170326,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model",
"Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups",
"GenericTypeArguments": [],
@@ -170491,7 +170768,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model",
"Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups",
"GenericTypeArguments": [],
@@ -170861,7 +171138,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -170983,7 +171260,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model",
"Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups",
"GenericTypeArguments": [],
@@ -171379,7 +171656,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model",
"Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups",
"GenericTypeArguments": [],
@@ -171645,7 +171922,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Server.Model",
"Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -171765,7 +172042,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model",
"Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups",
"GenericTypeArguments": [],
@@ -172183,7 +172460,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model",
"Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups",
"GenericTypeArguments": [],
@@ -172553,7 +172830,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Server.Model",
"Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -172622,7 +172899,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model",
"Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups",
"GenericTypeArguments": [],
@@ -172999,7 +173276,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Model",
"Name": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlDatabaseAdvisorModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlDatabaseAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlDatabaseAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RecommendedActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction]",
"LastChecked": "System.Nullable`1[System.DateTime]",
@@ -173383,7 +173660,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Model",
"Name": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlElasticPoolAdvisorModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlElasticPoolAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlElasticPoolAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RecommendedActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction]",
"LastChecked": "System.Nullable`1[System.DateTime]",
@@ -173767,7 +174044,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Model",
"Name": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlServerAdvisorModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlServerAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlServerAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RecommendedActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction]",
"LastChecked": "System.Nullable`1[System.DateTime]",
@@ -174104,7 +174381,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Model",
"Name": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlDatabaseAdvisorModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlDatabaseAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlDatabaseAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RecommendedActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction]",
"LastChecked": "System.Nullable`1[System.DateTime]",
@@ -174206,7 +174483,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet",
"Name": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -174426,7 +174703,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet",
"Name": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -174658,7 +174935,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Model",
"Name": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlElasticPoolAdvisorModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlElasticPoolAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlElasticPoolAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RecommendedActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction]",
"LastChecked": "System.Nullable`1[System.DateTime]",
@@ -174760,7 +175037,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet",
"Name": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -174980,7 +175257,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet",
"Name": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -175212,7 +175489,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Model",
"Name": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlServerAdvisorModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlServerAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Model.AzureSqlServerAdvisorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"RecommendedActions": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.Sql.LegacySdk.Models.RecommendedAction]",
"LastChecked": "System.Nullable`1[System.DateTime]",
@@ -175309,7 +175586,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet",
"Name": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -175511,7 +175788,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet",
"Name": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Advisor.Cmdlet.AdvisorAutoExecuteStatus, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -175719,7 +175996,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model",
"Name": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ManagedInstanceAdvancedDataSecurityPolicyModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ManagedInstanceAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ManagedInstanceAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsEnabled": "System.Boolean",
"ManagedInstanceName": "System.String",
@@ -175774,7 +176051,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -175922,7 +176199,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -176192,7 +176469,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model",
"Name": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ServerAdvancedDataSecurityPolicyModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ServerAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ServerAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsEnabled": "System.Boolean",
"ServerName": "System.String",
@@ -176247,7 +176524,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Server.Model",
"Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -176385,7 +176662,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Server.Model",
"Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -176647,7 +176924,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model",
"Name": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ManagedInstanceAdvancedDataSecurityPolicyModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ManagedInstanceAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ManagedInstanceAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsEnabled": "System.Boolean",
"ManagedInstanceName": "System.String",
@@ -176756,7 +177033,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -177068,7 +177345,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -177318,7 +177595,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model",
"Name": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ServerAdvancedDataSecurityPolicyModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ServerAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ServerAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsEnabled": "System.Boolean",
"ServerName": "System.String",
@@ -177427,7 +177704,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Server.Model",
"Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -177729,7 +178006,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Server.Model",
"Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -177971,7 +178248,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model",
"Name": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ManagedInstanceAdvancedDataSecurityPolicyModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ManagedInstanceAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ManagedInstanceAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsEnabled": "System.Boolean",
"ManagedInstanceName": "System.String",
@@ -178026,7 +178303,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -178174,7 +178451,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model",
"Name": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ManagedInstance.Model.AzureSqlManagedInstanceModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Sku": "Microsoft.Azure.Management.Internal.Resources.Models.Sku",
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
@@ -178444,7 +178721,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model",
"Name": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ServerAdvancedDataSecurityPolicyModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ServerAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.AdvancedThreatProtection.Model.ServerAdvancedDataSecurityPolicyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"IsEnabled": "System.Boolean",
"ServerName": "System.String",
@@ -178499,7 +178776,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Server.Model",
"Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -178637,7 +178914,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.Sql.Server.Model",
"Name": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Server.Model.AzureSqlServerModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Identity": "Microsoft.Azure.Management.Sql.Models.ResourceIdentity",
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
@@ -179030,7 +179307,7 @@
"Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.RecurringScansInterval, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -179198,7 +179475,7 @@
"System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -179210,7 +179487,7 @@
"Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.DatabaseReadScale, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -179698,7 +179975,7 @@
"Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.TriggerType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -179793,7 +180070,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -179805,7 +180082,7 @@
"Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentScanErrorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Code": "System.String",
"Message": "System.String"
@@ -179850,7 +180127,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -179862,7 +180139,7 @@
"Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel": {
"Namespace": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model",
"Name": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.VulnerabilityAssessment.Model.VulnerabilityAssessmentRuleBaselineRowModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Result": "System.Collections.Generic.IList`1[System.String]"
},
@@ -179985,7 +180262,7 @@
"Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.ServerKeyType": {
"Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model",
"Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.ServerKeyType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.ServerKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.ServerKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -180080,7 +180357,7 @@
"Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel": {
"Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model",
"Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceKeyVaultKeyModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.ServerKeyType",
"CreationDate": "System.Nullable`1[System.DateTime]",
@@ -180161,7 +180438,7 @@
"Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType": {
"Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model",
"Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -180256,7 +180533,7 @@
"Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceTransparentDataEncryptionProtectorModel": {
"Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model",
"Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceTransparentDataEncryptionProtectorModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureRmSqlManagedInstanceTransparentDataEncryptionProtectorModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.EncryptionProtectorType",
"ResourceGroupName": "System.String",
@@ -180353,7 +180630,7 @@
"Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType": {
"Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model",
"Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -180448,7 +180725,7 @@
"Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionActivityStatusType": {
"Namespace": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model",
"Name": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionActivityStatusType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionActivityStatusType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.TransparentDataEncryptionActivityStatusType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -180543,7 +180820,7 @@
"Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType": {
"Namespace": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model",
"Name": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ThreatDetection.Model.ThreatDetectionStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -180771,7 +181048,7 @@
"Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel+ServerKeyType": {
"Namespace": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model",
"Name": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel+ServerKeyType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel+ServerKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Model.AzureSqlServerKeyVaultKeyModel+ServerKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -180866,7 +181143,7 @@
"Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationActivityModel+ServerDisasterRecoveryConfigurationState": {
"Namespace": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model",
"Name": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationActivityModel+ServerDisasterRecoveryConfigurationState",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationActivityModel+ServerDisasterRecoveryConfigurationState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ServerDisasterRecoveryConfiguration.Model.AzureSqlServerDisasterRecoveryConfigurationActivityModel+ServerDisasterRecoveryConfigurationState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Current": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Requested": "System.Collections.Generic.IDictionary`2[System.String,System.String]"
@@ -180911,7 +181188,7 @@
"Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections": {
"Namespace": "Microsoft.Azure.Commands.Sql.Replication.Model",
"Name": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Replication.Model.AllowConnections, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -181285,7 +181562,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServerVersionCapabilityModel]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServerVersionCapabilityModel]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServerVersionCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServerVersionCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -181297,7 +181574,7 @@
"Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServerVersionCapabilityModel": {
"Namespace": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model",
"Name": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServerVersionCapabilityModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServerVersionCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServerVersionCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SupportedEditions": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.EditionCapabilityModel]",
"Status": "System.String",
@@ -181343,7 +181620,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.EditionCapabilityModel]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.EditionCapabilityModel]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.EditionCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.EditionCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -181355,7 +181632,7 @@
"Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.EditionCapabilityModel": {
"Namespace": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model",
"Name": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.EditionCapabilityModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.EditionCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.EditionCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SupportedServiceObjectives": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServiceObjectiveCapabilityModel]",
"Status": "System.String",
@@ -181401,7 +181678,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServiceObjectiveCapabilityModel]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServiceObjectiveCapabilityModel]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServiceObjectiveCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServiceObjectiveCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -181413,7 +181690,7 @@
"Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServiceObjectiveCapabilityModel": {
"Namespace": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model",
"Name": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServiceObjectiveCapabilityModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServiceObjectiveCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.ServiceObjectiveCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SupportedMaxSizes": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeRangeCapabilityModel]",
"Id": "System.Nullable`1[System.Guid]",
@@ -181460,7 +181737,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeRangeCapabilityModel]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeRangeCapabilityModel]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeRangeCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeRangeCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -181472,7 +181749,7 @@
"Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeRangeCapabilityModel": {
"Namespace": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model",
"Name": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeRangeCapabilityModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeRangeCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeRangeCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MinValue": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeCapabilityModel",
"MaxValue": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeCapabilityModel",
@@ -181520,7 +181797,7 @@
"Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeCapabilityModel": {
"Namespace": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model",
"Name": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeCapabilityModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Location_Capabilities.Model.MaxSizeCapabilityModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Limit": "System.Nullable`1[System.Int32]",
"Unit": "System.String",
@@ -181791,7 +182068,7 @@
"Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType": {
"Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model",
"Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.AuthenticationType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -181886,7 +182163,7 @@
"Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType": {
"Namespace": "Microsoft.Azure.Commands.Sql.ImportExport.Model",
"Name": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ImportExport.Model.StorageKeyType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -182138,7 +182415,7 @@
"Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]",
"CreationDate": "System.DateTime",
@@ -182365,7 +182642,7 @@
"Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel": {
"Namespace": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Elastic_Jobs.Model.AzureSqlElasticJobStepOutputModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SubscriptionId": "System.Nullable`1[System.Guid]",
"Credential": "System.String",
@@ -182416,7 +182693,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -182428,7 +182705,7 @@
"Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel": {
"Namespace": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model",
"Name": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.ElasticJobs.Model.AzureSqlElasticJobTargetModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"MembershipType": "System.Nullable`1[Microsoft.Azure.Management.Sql.Models.JobTargetGroupMembershipType]",
"TargetGroupName": "System.String",
@@ -182591,7 +182868,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -182603,8 +182880,9 @@
"Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityLabelModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
+ "Rank": "System.Nullable`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityRank]",
"SchemaName": "System.String",
"TableName": "System.String",
"ColumnName": "System.String",
@@ -182650,10 +182928,117 @@
}
]
},
+ "System.Nullable`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityRank]": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityRank]",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityRank, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityRank"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityRank": {
+ "Namespace": "Microsoft.Azure.Commands.Sql.DataClassification.Model",
+ "Name": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityRank",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataClassification.Model.SensitivityRank, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "CompareTo",
+ "Parameters": [
+ {
+ "Name": "target",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "HasFlag",
+ "Parameters": [
+ {
+ "Name": "flag",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetTypeCode",
+ "Parameters": [],
+ "ReturnType": "System.TypeCode"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": []
+ },
"Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel+DatabaseState": {
"Namespace": "Microsoft.Azure.Commands.Sql.Database.Model",
"Name": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel+DatabaseState",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel+DatabaseState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Database.Model.AzureSqlDatabaseActivityModel+DatabaseState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Current": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
"Requested": "System.Collections.Generic.IDictionary`2[System.String,System.String]"
@@ -182823,7 +183208,7 @@
"Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState": {
"Namespace": "Microsoft.Azure.Commands.Sql.Backup.Model",
"Name": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Backup.Model.AzureSqlDatabaseGeoBackupPolicyModel+GeoBackupPolicyState, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -182918,7 +183303,7 @@
"Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Tables": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaTableModel]",
"MasterSyncMemberName": "System.String"
@@ -182978,7 +183363,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaTableModel]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaTableModel]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaTableModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaTableModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -182990,7 +183375,7 @@
"Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaTableModel": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaTableModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaTableModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaTableModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Columns": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaColumnModel]",
"QuotedName": "System.String"
@@ -183050,7 +183435,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaColumnModel]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaColumnModel]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaColumnModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaColumnModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -183062,7 +183447,7 @@
"Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaColumnModel": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaColumnModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaColumnModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncGroupSchemaColumnModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"QuotedName": "System.String",
"DataSize": "System.String",
@@ -183283,7 +183668,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaTableModel]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaTableModel]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaTableModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaTableModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -183295,7 +183680,7 @@
"Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaTableModel": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaTableModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaTableModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaTableModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"HasError": "System.Boolean",
"Columns": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaColumnModel]",
@@ -183353,7 +183738,7 @@
"System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaColumnModel]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaColumnModel]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaColumnModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaColumnModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -183365,7 +183750,7 @@
"Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaColumnModel": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataSync.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaColumnModel",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaColumnModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataSync.Model.AzureSqlSyncFullSchemaColumnModel, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"HasError": "System.Boolean",
"IsPrimaryKey": "System.Boolean",
@@ -183425,7 +183810,7 @@
"Microsoft.Azure.Commands.Sql.DataMasking.Model.DataMaskingStateType": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataMasking.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DataMaskingStateType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DataMaskingStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.DataMaskingStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -183520,7 +183905,7 @@
"Microsoft.Azure.Commands.Sql.DataMasking.Model.MaskingFunction": {
"Namespace": "Microsoft.Azure.Commands.Sql.DataMasking.Model",
"Name": "Microsoft.Azure.Commands.Sql.DataMasking.Model.MaskingFunction",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.MaskingFunction, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.DataMasking.Model.MaskingFunction, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -183615,7 +184000,7 @@
"Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]": {
"Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model",
"Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups[], Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups",
"GenericTypeArguments": [],
@@ -183625,7 +184010,7 @@
"Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups": {
"Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model",
"Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditActionGroups, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -183720,7 +184105,7 @@
"Microsoft.Azure.Commands.Sql.Auditing.Model.AuditStateType": {
"Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model",
"Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditStateType",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.AuditStateType, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -183815,7 +184200,7 @@
"Microsoft.Azure.Commands.Sql.Auditing.Model.StorageKeyKind": {
"Namespace": "Microsoft.Azure.Commands.Sql.Auditing.Model",
"Name": "Microsoft.Azure.Commands.Sql.Auditing.Model.StorageKeyKind",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.StorageKeyKind, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.4.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Sql.Auditing.Model.StorageKeyKind, Microsoft.Azure.PowerShell.Cmdlets.Sql, Version=2.5.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Support.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Support.dll.json
new file mode 100644
index 000000000000..ef30b95ac6aa
--- /dev/null
+++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Support.dll.json
@@ -0,0 +1,11263 @@
+{
+ "Cmdlets": [
+ {
+ "VerbName": "Get",
+ "NounName": "AzSupportTicket",
+ "Name": "Get-AzSupportTicket",
+ "ClassName": "Microsoft.Azure.Commands.Support.SupportTickets.GetAzSupportTicket",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 2,
+ "SupportsPaging": true,
+ "DefaultParameterSetName": "ListParameterSet",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.PSSupportTicket",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.PSSupportTicket, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "ContactDetail": "Microsoft.Azure.Commands.Support.Models.PSContactProfile",
+ "QuotaTicketDetail": "Microsoft.Azure.Commands.Support.Models.PSQuotaTicketDetail",
+ "ServiceLevelAgreement": "Microsoft.Azure.Commands.Support.Models.PSServiceLevelAgreement",
+ "SupportEngineer": "Microsoft.Azure.Commands.Support.Models.PSSupportEngineer",
+ "Require24X7Response": "System.Nullable`1[System.Boolean]",
+ "ModifiedDate": "System.Nullable`1[System.DateTime]",
+ "CreatedDate": "System.Nullable`1[System.DateTime]",
+ "ProblemStartTime": "System.Nullable`1[System.DateTime]",
+ "Status": "System.String",
+ "ServiceDisplayName": "System.String",
+ "ServiceId": "System.String",
+ "SupportPlanType": "System.String",
+ "Type": "System.String",
+ "TechnicalTicketResourceId": "System.String",
+ "EnrollmentId": "System.String",
+ "Severity": "System.String",
+ "ProblemClassificationDisplayName": "System.String",
+ "ProblemClassificationId": "System.String",
+ "Description": "System.String",
+ "SupportTicketId": "System.String",
+ "Title": "System.String",
+ "Name": "System.String",
+ "Id": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "Name",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Filter",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "GetByNameParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "ListParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Filter",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "New",
+ "NounName": "AzSupportTicket",
+ "Name": "New-AzSupportTicket",
+ "ClassName": "Microsoft.Azure.Commands.Support.SupportTickets.NewAzSupportTicket",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "CreateSupportTicketWithContactDetailParameterSet",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.PSSupportTicket",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.PSSupportTicket, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "ContactDetail": "Microsoft.Azure.Commands.Support.Models.PSContactProfile",
+ "QuotaTicketDetail": "Microsoft.Azure.Commands.Support.Models.PSQuotaTicketDetail",
+ "ServiceLevelAgreement": "Microsoft.Azure.Commands.Support.Models.PSServiceLevelAgreement",
+ "SupportEngineer": "Microsoft.Azure.Commands.Support.Models.PSSupportEngineer",
+ "Require24X7Response": "System.Nullable`1[System.Boolean]",
+ "ModifiedDate": "System.Nullable`1[System.DateTime]",
+ "CreatedDate": "System.Nullable`1[System.DateTime]",
+ "ProblemStartTime": "System.Nullable`1[System.DateTime]",
+ "Status": "System.String",
+ "ServiceDisplayName": "System.String",
+ "ServiceId": "System.String",
+ "SupportPlanType": "System.String",
+ "Type": "System.String",
+ "TechnicalTicketResourceId": "System.String",
+ "EnrollmentId": "System.String",
+ "Severity": "System.String",
+ "ProblemClassificationDisplayName": "System.String",
+ "ProblemClassificationId": "System.String",
+ "Description": "System.String",
+ "SupportTicketId": "System.String",
+ "Title": "System.String",
+ "Name": "System.String",
+ "Id": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "Name",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Title",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Description",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ProblemClassificationId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Severity",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.Severity",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.Severity, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "CompareTo",
+ "Parameters": [
+ {
+ "Name": "target",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "HasFlag",
+ "Parameters": [
+ {
+ "Name": "flag",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetTypeCode",
+ "Parameters": [],
+ "ReturnType": "System.TypeCode"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "CustomerContactDetail",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.PSContactProfile",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.PSContactProfile, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "FirstName": "System.String",
+ "LastName": "System.String",
+ "PreferredContactMethod": "System.String",
+ "PrimaryEmailAddress": "System.String",
+ "PhoneNumber": "System.String",
+ "PreferredTimeZone": "System.String",
+ "Country": "System.String",
+ "PreferredSupportLanguage": "System.String",
+ "AdditionalEmailAddresses": "System.String[]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "CustomerFirstName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "CustomerLastName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "PreferredContactMethod",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.ContactMethod",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.ContactMethod, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "CompareTo",
+ "Parameters": [
+ {
+ "Name": "target",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "HasFlag",
+ "Parameters": [
+ {
+ "Name": "flag",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetTypeCode",
+ "Parameters": [],
+ "ReturnType": "System.TypeCode"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "CustomerPrimaryEmailAddress",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "AdditionalEmailAddress",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": "System.String",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "CustomerPhoneNumber",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "CustomerPreferredTimeZone",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "CustomerCountry",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "CustomerPreferredSupportLanguage",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ProblemStartTime",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.DateTime",
+ "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "TechnicalTicketResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "QuotaTicketDetail",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.PSQuotaTicketDetail",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.PSQuotaTicketDetail, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "QuotaChangeRequests": "Microsoft.Azure.Commands.Support.Models.PSQuotaChangeRequest[]",
+ "QuotaChangeRequestVersion": "System.String",
+ "QuotaChangeRequestSubType": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "CSPHomeTenantId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Require24X7Response",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Title",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Description",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProblemClassificationId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Severity",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.Severity",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.Severity, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "CompareTo",
+ "Parameters": [
+ {
+ "Name": "target",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "HasFlag",
+ "Parameters": [
+ {
+ "Name": "flag",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetTypeCode",
+ "Parameters": [],
+ "ReturnType": "System.TypeCode"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProblemStartTime",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.DateTime",
+ "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CSPHomeTenantId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Require24X7Response",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "CreateSupportTicketWithContactObjectParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "CustomerContactDetail",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.PSContactProfile",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.PSContactProfile, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "FirstName": "System.String",
+ "LastName": "System.String",
+ "PreferredContactMethod": "System.String",
+ "PrimaryEmailAddress": "System.String",
+ "PhoneNumber": "System.String",
+ "PreferredTimeZone": "System.String",
+ "Country": "System.String",
+ "PreferredSupportLanguage": "System.String",
+ "AdditionalEmailAddresses": "System.String[]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Title",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Description",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProblemClassificationId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Severity",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.Severity",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.Severity, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "CompareTo",
+ "Parameters": [
+ {
+ "Name": "target",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "HasFlag",
+ "Parameters": [
+ {
+ "Name": "flag",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetTypeCode",
+ "Parameters": [],
+ "ReturnType": "System.TypeCode"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProblemStartTime",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.DateTime",
+ "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CSPHomeTenantId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Require24X7Response",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "CreateTechnicalSupportTicketWithContactObjectParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "CustomerContactDetail",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.PSContactProfile",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.PSContactProfile, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "FirstName": "System.String",
+ "LastName": "System.String",
+ "PreferredContactMethod": "System.String",
+ "PrimaryEmailAddress": "System.String",
+ "PhoneNumber": "System.String",
+ "PreferredTimeZone": "System.String",
+ "Country": "System.String",
+ "PreferredSupportLanguage": "System.String",
+ "AdditionalEmailAddresses": "System.String[]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TechnicalTicketResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Title",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Description",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProblemClassificationId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Severity",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.Severity",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.Severity, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "CompareTo",
+ "Parameters": [
+ {
+ "Name": "target",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "HasFlag",
+ "Parameters": [
+ {
+ "Name": "flag",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetTypeCode",
+ "Parameters": [],
+ "ReturnType": "System.TypeCode"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProblemStartTime",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.DateTime",
+ "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CSPHomeTenantId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Require24X7Response",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "CreateQuotaSupportTicketWithContactObjectParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "CustomerContactDetail",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.PSContactProfile",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.PSContactProfile, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "FirstName": "System.String",
+ "LastName": "System.String",
+ "PreferredContactMethod": "System.String",
+ "PrimaryEmailAddress": "System.String",
+ "PhoneNumber": "System.String",
+ "PreferredTimeZone": "System.String",
+ "Country": "System.String",
+ "PreferredSupportLanguage": "System.String",
+ "AdditionalEmailAddresses": "System.String[]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "QuotaTicketDetail",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.PSQuotaTicketDetail",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.PSQuotaTicketDetail, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "QuotaChangeRequests": "Microsoft.Azure.Commands.Support.Models.PSQuotaChangeRequest[]",
+ "QuotaChangeRequestVersion": "System.String",
+ "QuotaChangeRequestSubType": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Title",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Description",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProblemClassificationId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Severity",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.Severity",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.Severity, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "CompareTo",
+ "Parameters": [
+ {
+ "Name": "target",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "HasFlag",
+ "Parameters": [
+ {
+ "Name": "flag",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetTypeCode",
+ "Parameters": [],
+ "ReturnType": "System.TypeCode"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProblemStartTime",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.DateTime",
+ "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CSPHomeTenantId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Require24X7Response",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "CreateSupportTicketWithContactDetailParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "CustomerFirstName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CustomerLastName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PreferredContactMethod",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.ContactMethod",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.ContactMethod, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "CompareTo",
+ "Parameters": [
+ {
+ "Name": "target",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "HasFlag",
+ "Parameters": [
+ {
+ "Name": "flag",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetTypeCode",
+ "Parameters": [],
+ "ReturnType": "System.TypeCode"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CustomerPrimaryEmailAddress",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AdditionalEmailAddress",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": "System.String",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CustomerPhoneNumber",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CustomerPreferredTimeZone",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CustomerCountry",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CustomerPreferredSupportLanguage",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Title",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Description",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProblemClassificationId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Severity",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.Severity",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.Severity, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "CompareTo",
+ "Parameters": [
+ {
+ "Name": "target",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "HasFlag",
+ "Parameters": [
+ {
+ "Name": "flag",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetTypeCode",
+ "Parameters": [],
+ "ReturnType": "System.TypeCode"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProblemStartTime",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.DateTime",
+ "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CSPHomeTenantId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Require24X7Response",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "CreateTechnicalSupportTicketWithContactDetailParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "CustomerFirstName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CustomerLastName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PreferredContactMethod",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.ContactMethod",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.ContactMethod, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "CompareTo",
+ "Parameters": [
+ {
+ "Name": "target",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "HasFlag",
+ "Parameters": [
+ {
+ "Name": "flag",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetTypeCode",
+ "Parameters": [],
+ "ReturnType": "System.TypeCode"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CustomerPrimaryEmailAddress",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AdditionalEmailAddress",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": "System.String",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CustomerPhoneNumber",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CustomerPreferredTimeZone",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CustomerCountry",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CustomerPreferredSupportLanguage",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "TechnicalTicketResourceId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Title",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Description",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProblemClassificationId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Severity",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.Severity",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.Severity, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "CompareTo",
+ "Parameters": [
+ {
+ "Name": "target",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "HasFlag",
+ "Parameters": [
+ {
+ "Name": "flag",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetTypeCode",
+ "Parameters": [],
+ "ReturnType": "System.TypeCode"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProblemStartTime",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.DateTime",
+ "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CSPHomeTenantId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Require24X7Response",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "CreateQuotaSupportTicketWithContactDetailParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "CustomerFirstName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CustomerLastName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PreferredContactMethod",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.ContactMethod",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.ContactMethod, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "CompareTo",
+ "Parameters": [
+ {
+ "Name": "target",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "HasFlag",
+ "Parameters": [
+ {
+ "Name": "flag",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetTypeCode",
+ "Parameters": [],
+ "ReturnType": "System.TypeCode"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CustomerPrimaryEmailAddress",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AdditionalEmailAddress",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": "System.String",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CustomerPhoneNumber",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CustomerPreferredTimeZone",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CustomerCountry",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CustomerPreferredSupportLanguage",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "QuotaTicketDetail",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.PSQuotaTicketDetail",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.PSQuotaTicketDetail, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "QuotaChangeRequests": "Microsoft.Azure.Commands.Support.Models.PSQuotaChangeRequest[]",
+ "QuotaChangeRequestVersion": "System.String",
+ "QuotaChangeRequestSubType": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Title",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Description",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProblemClassificationId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Severity",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.Severity",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.Severity, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "CompareTo",
+ "Parameters": [
+ {
+ "Name": "target",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "HasFlag",
+ "Parameters": [
+ {
+ "Name": "flag",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetTypeCode",
+ "Parameters": [],
+ "ReturnType": "System.TypeCode"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ProblemStartTime",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.DateTime",
+ "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CSPHomeTenantId",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Require24X7Response",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Update",
+ "NounName": "AzSupportTicket",
+ "Name": "Update-AzSupportTicket",
+ "ClassName": "Microsoft.Azure.Commands.Support.SupportTickets.UpdateAzSupportTicket",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "UpdateByNameWithContactDetailParameterSet",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.PSSupportTicket",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.PSSupportTicket, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "ContactDetail": "Microsoft.Azure.Commands.Support.Models.PSContactProfile",
+ "QuotaTicketDetail": "Microsoft.Azure.Commands.Support.Models.PSQuotaTicketDetail",
+ "ServiceLevelAgreement": "Microsoft.Azure.Commands.Support.Models.PSServiceLevelAgreement",
+ "SupportEngineer": "Microsoft.Azure.Commands.Support.Models.PSSupportEngineer",
+ "Require24X7Response": "System.Nullable`1[System.Boolean]",
+ "ModifiedDate": "System.Nullable`1[System.DateTime]",
+ "CreatedDate": "System.Nullable`1[System.DateTime]",
+ "ProblemStartTime": "System.Nullable`1[System.DateTime]",
+ "Status": "System.String",
+ "ServiceDisplayName": "System.String",
+ "ServiceId": "System.String",
+ "SupportPlanType": "System.String",
+ "Type": "System.String",
+ "TechnicalTicketResourceId": "System.String",
+ "EnrollmentId": "System.String",
+ "Severity": "System.String",
+ "ProblemClassificationDisplayName": "System.String",
+ "ProblemClassificationId": "System.String",
+ "Description": "System.String",
+ "SupportTicketId": "System.String",
+ "Title": "System.String",
+ "Name": "System.String",
+ "Id": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "Name",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.PSSupportTicket",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.PSSupportTicket, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "ContactDetail": "Microsoft.Azure.Commands.Support.Models.PSContactProfile",
+ "QuotaTicketDetail": "Microsoft.Azure.Commands.Support.Models.PSQuotaTicketDetail",
+ "ServiceLevelAgreement": "Microsoft.Azure.Commands.Support.Models.PSServiceLevelAgreement",
+ "SupportEngineer": "Microsoft.Azure.Commands.Support.Models.PSSupportEngineer",
+ "Require24X7Response": "System.Nullable`1[System.Boolean]",
+ "ModifiedDate": "System.Nullable`1[System.DateTime]",
+ "CreatedDate": "System.Nullable`1[System.DateTime]",
+ "ProblemStartTime": "System.Nullable`1[System.DateTime]",
+ "Status": "System.String",
+ "ServiceDisplayName": "System.String",
+ "ServiceId": "System.String",
+ "SupportPlanType": "System.String",
+ "Type": "System.String",
+ "TechnicalTicketResourceId": "System.String",
+ "EnrollmentId": "System.String",
+ "Severity": "System.String",
+ "ProblemClassificationDisplayName": "System.String",
+ "ProblemClassificationId": "System.String",
+ "Description": "System.String",
+ "SupportTicketId": "System.String",
+ "Title": "System.String",
+ "Name": "System.String",
+ "Id": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Severity",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.Severity",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.Severity, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "CompareTo",
+ "Parameters": [
+ {
+ "Name": "target",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "HasFlag",
+ "Parameters": [
+ {
+ "Name": "flag",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetTypeCode",
+ "Parameters": [],
+ "ReturnType": "System.TypeCode"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Status",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.Status",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.Status, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "CompareTo",
+ "Parameters": [
+ {
+ "Name": "target",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "HasFlag",
+ "Parameters": [
+ {
+ "Name": "flag",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetTypeCode",
+ "Parameters": [],
+ "ReturnType": "System.TypeCode"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "CustomerContactDetail",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.PSContactProfile",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.PSContactProfile, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "FirstName": "System.String",
+ "LastName": "System.String",
+ "PreferredContactMethod": "System.String",
+ "PrimaryEmailAddress": "System.String",
+ "PhoneNumber": "System.String",
+ "PreferredTimeZone": "System.String",
+ "Country": "System.String",
+ "PreferredSupportLanguage": "System.String",
+ "AdditionalEmailAddresses": "System.String[]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "CustomerFirstName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "CustomerLastName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "PreferredContactMethod",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.ContactMethod",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.ContactMethod, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "CompareTo",
+ "Parameters": [
+ {
+ "Name": "target",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "HasFlag",
+ "Parameters": [
+ {
+ "Name": "flag",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetTypeCode",
+ "Parameters": [],
+ "ReturnType": "System.TypeCode"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "CustomerPrimaryEmailAddress",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "AdditionalEmailAddress",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": "System.String",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "CustomerPhoneNumber",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "CustomerPreferredTimeZone",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "CustomerCountry",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "CustomerPreferredSupportLanguage",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "UpdateByNameWithContactDetailParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CustomerFirstName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CustomerLastName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PreferredContactMethod",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.ContactMethod",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.ContactMethod, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "CompareTo",
+ "Parameters": [
+ {
+ "Name": "target",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "HasFlag",
+ "Parameters": [
+ {
+ "Name": "flag",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetTypeCode",
+ "Parameters": [],
+ "ReturnType": "System.TypeCode"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CustomerPrimaryEmailAddress",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AdditionalEmailAddress",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": "System.String",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CustomerPhoneNumber",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CustomerPreferredTimeZone",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CustomerCountry",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CustomerPreferredSupportLanguage",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Severity",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.Severity",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.Severity, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "CompareTo",
+ "Parameters": [
+ {
+ "Name": "target",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "HasFlag",
+ "Parameters": [
+ {
+ "Name": "flag",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetTypeCode",
+ "Parameters": [],
+ "ReturnType": "System.TypeCode"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Status",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.Status",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.Status, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "CompareTo",
+ "Parameters": [
+ {
+ "Name": "target",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "HasFlag",
+ "Parameters": [
+ {
+ "Name": "flag",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetTypeCode",
+ "Parameters": [],
+ "ReturnType": "System.TypeCode"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "UpdateByNameWithContactObjectParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CustomerContactDetail",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.PSContactProfile",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.PSContactProfile, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "FirstName": "System.String",
+ "LastName": "System.String",
+ "PreferredContactMethod": "System.String",
+ "PrimaryEmailAddress": "System.String",
+ "PhoneNumber": "System.String",
+ "PreferredTimeZone": "System.String",
+ "Country": "System.String",
+ "PreferredSupportLanguage": "System.String",
+ "AdditionalEmailAddresses": "System.String[]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Severity",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.Severity",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.Severity, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "CompareTo",
+ "Parameters": [
+ {
+ "Name": "target",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "HasFlag",
+ "Parameters": [
+ {
+ "Name": "flag",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetTypeCode",
+ "Parameters": [],
+ "ReturnType": "System.TypeCode"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Status",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.Status",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.Status, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "CompareTo",
+ "Parameters": [
+ {
+ "Name": "target",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "HasFlag",
+ "Parameters": [
+ {
+ "Name": "flag",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetTypeCode",
+ "Parameters": [],
+ "ReturnType": "System.TypeCode"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "UpdateByInputObjectWithContactDetailParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.PSSupportTicket",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.PSSupportTicket, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "ContactDetail": "Microsoft.Azure.Commands.Support.Models.PSContactProfile",
+ "QuotaTicketDetail": "Microsoft.Azure.Commands.Support.Models.PSQuotaTicketDetail",
+ "ServiceLevelAgreement": "Microsoft.Azure.Commands.Support.Models.PSServiceLevelAgreement",
+ "SupportEngineer": "Microsoft.Azure.Commands.Support.Models.PSSupportEngineer",
+ "Require24X7Response": "System.Nullable`1[System.Boolean]",
+ "ModifiedDate": "System.Nullable`1[System.DateTime]",
+ "CreatedDate": "System.Nullable`1[System.DateTime]",
+ "ProblemStartTime": "System.Nullable`1[System.DateTime]",
+ "Status": "System.String",
+ "ServiceDisplayName": "System.String",
+ "ServiceId": "System.String",
+ "SupportPlanType": "System.String",
+ "Type": "System.String",
+ "TechnicalTicketResourceId": "System.String",
+ "EnrollmentId": "System.String",
+ "Severity": "System.String",
+ "ProblemClassificationDisplayName": "System.String",
+ "ProblemClassificationId": "System.String",
+ "Description": "System.String",
+ "SupportTicketId": "System.String",
+ "Title": "System.String",
+ "Name": "System.String",
+ "Id": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CustomerFirstName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CustomerLastName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PreferredContactMethod",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.ContactMethod",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.ContactMethod, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "CompareTo",
+ "Parameters": [
+ {
+ "Name": "target",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "HasFlag",
+ "Parameters": [
+ {
+ "Name": "flag",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetTypeCode",
+ "Parameters": [],
+ "ReturnType": "System.TypeCode"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CustomerPrimaryEmailAddress",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AdditionalEmailAddress",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": "System.String",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CustomerPhoneNumber",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CustomerPreferredTimeZone",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CustomerCountry",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CustomerPreferredSupportLanguage",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Severity",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.Severity",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.Severity, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "CompareTo",
+ "Parameters": [
+ {
+ "Name": "target",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "HasFlag",
+ "Parameters": [
+ {
+ "Name": "flag",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetTypeCode",
+ "Parameters": [],
+ "ReturnType": "System.TypeCode"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Status",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.Status",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.Status, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "CompareTo",
+ "Parameters": [
+ {
+ "Name": "target",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "HasFlag",
+ "Parameters": [
+ {
+ "Name": "flag",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetTypeCode",
+ "Parameters": [],
+ "ReturnType": "System.TypeCode"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "UpdateByInputObjectWithContactObjectParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "InputObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.PSSupportTicket",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.PSSupportTicket, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "ContactDetail": "Microsoft.Azure.Commands.Support.Models.PSContactProfile",
+ "QuotaTicketDetail": "Microsoft.Azure.Commands.Support.Models.PSQuotaTicketDetail",
+ "ServiceLevelAgreement": "Microsoft.Azure.Commands.Support.Models.PSServiceLevelAgreement",
+ "SupportEngineer": "Microsoft.Azure.Commands.Support.Models.PSSupportEngineer",
+ "Require24X7Response": "System.Nullable`1[System.Boolean]",
+ "ModifiedDate": "System.Nullable`1[System.DateTime]",
+ "CreatedDate": "System.Nullable`1[System.DateTime]",
+ "ProblemStartTime": "System.Nullable`1[System.DateTime]",
+ "Status": "System.String",
+ "ServiceDisplayName": "System.String",
+ "ServiceId": "System.String",
+ "SupportPlanType": "System.String",
+ "Type": "System.String",
+ "TechnicalTicketResourceId": "System.String",
+ "EnrollmentId": "System.String",
+ "Severity": "System.String",
+ "ProblemClassificationDisplayName": "System.String",
+ "ProblemClassificationId": "System.String",
+ "Description": "System.String",
+ "SupportTicketId": "System.String",
+ "Title": "System.String",
+ "Name": "System.String",
+ "Id": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "CustomerContactDetail",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.PSContactProfile",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.PSContactProfile, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "FirstName": "System.String",
+ "LastName": "System.String",
+ "PreferredContactMethod": "System.String",
+ "PrimaryEmailAddress": "System.String",
+ "PhoneNumber": "System.String",
+ "PreferredTimeZone": "System.String",
+ "Country": "System.String",
+ "PreferredSupportLanguage": "System.String",
+ "AdditionalEmailAddresses": "System.String[]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Severity",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.Severity",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.Severity, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "CompareTo",
+ "Parameters": [
+ {
+ "Name": "target",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "HasFlag",
+ "Parameters": [
+ {
+ "Name": "flag",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetTypeCode",
+ "Parameters": [],
+ "ReturnType": "System.TypeCode"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Status",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.Status",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.Status, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "CompareTo",
+ "Parameters": [
+ {
+ "Name": "target",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "HasFlag",
+ "Parameters": [
+ {
+ "Name": "flag",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetTypeCode",
+ "Parameters": [],
+ "ReturnType": "System.TypeCode"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Severity",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.Severity",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.Severity, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "CompareTo",
+ "Parameters": [
+ {
+ "Name": "target",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "HasFlag",
+ "Parameters": [
+ {
+ "Name": "flag",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetTypeCode",
+ "Parameters": [],
+ "ReturnType": "System.TypeCode"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Status",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.Status",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.Status, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "CompareTo",
+ "Parameters": [
+ {
+ "Name": "target",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "HasFlag",
+ "Parameters": [
+ {
+ "Name": "flag",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetTypeCode",
+ "Parameters": [],
+ "ReturnType": "System.TypeCode"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Get",
+ "NounName": "AzSupportService",
+ "Name": "Get-AzSupportService",
+ "ClassName": "Microsoft.Azure.Commands.Support.Services.GetAzSupportService",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "ListParameterSet",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.PSSupportService",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.PSSupportService, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "DisplayName": "System.String",
+ "ResourceTypes": "System.String[]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "Id",
+ "AliasList": [
+ "Name"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "GetByNameParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Id",
+ "AliasList": [
+ "Name"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "ListParameterSet",
+ "Parameters": []
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Get",
+ "NounName": "AzSupportProblemClassification",
+ "Name": "Get-AzSupportProblemClassification",
+ "ClassName": "Microsoft.Azure.Commands.Support.ProblemClassifications.GetAzSupportProblemClassification",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "GetByNameParameterSet",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.PSSupportProblemClassification",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.PSSupportProblemClassification, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "DisplayName": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "ServiceId",
+ "AliasList": [
+ "ServiceName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Id",
+ "AliasList": [
+ "Name"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "ServiceObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.PSSupportService",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.PSSupportService, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "DisplayName": "System.String",
+ "ResourceTypes": "System.String[]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "GetByNameParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ServiceId",
+ "AliasList": [
+ "ServiceName"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Id",
+ "AliasList": [
+ "Name"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "GetByParentObjectParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Id",
+ "AliasList": [
+ "Name"
+ ],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "ServiceObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.PSSupportService",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.PSSupportService, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "DisplayName": "System.String",
+ "ResourceTypes": "System.String[]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Get",
+ "NounName": "AzSupportTicketCommunication",
+ "Name": "Get-AzSupportTicketCommunication",
+ "ClassName": "Microsoft.Azure.Commands.Support.Communications.GetAzSupportTicketCommunication",
+ "SupportsShouldProcess": false,
+ "ConfirmImpact": 2,
+ "SupportsPaging": true,
+ "DefaultParameterSetName": "GetByNameParameterSet",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.PSSupportTicketCommunication",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.PSSupportTicketCommunication, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "CreatedDate": "System.Nullable`1[System.DateTime]",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "CommunicationType": "System.String",
+ "CommunicationDirection": "System.String",
+ "Sender": "System.String",
+ "Subject": "System.String",
+ "Body": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "SupportTicketName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Name",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "SupportTicketObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.PSSupportTicket",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.PSSupportTicket, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "ContactDetail": "Microsoft.Azure.Commands.Support.Models.PSContactProfile",
+ "QuotaTicketDetail": "Microsoft.Azure.Commands.Support.Models.PSQuotaTicketDetail",
+ "ServiceLevelAgreement": "Microsoft.Azure.Commands.Support.Models.PSServiceLevelAgreement",
+ "SupportEngineer": "Microsoft.Azure.Commands.Support.Models.PSSupportEngineer",
+ "Require24X7Response": "System.Nullable`1[System.Boolean]",
+ "ModifiedDate": "System.Nullable`1[System.DateTime]",
+ "CreatedDate": "System.Nullable`1[System.DateTime]",
+ "ProblemStartTime": "System.Nullable`1[System.DateTime]",
+ "Status": "System.String",
+ "ServiceDisplayName": "System.String",
+ "ServiceId": "System.String",
+ "SupportPlanType": "System.String",
+ "Type": "System.String",
+ "TechnicalTicketResourceId": "System.String",
+ "EnrollmentId": "System.String",
+ "Severity": "System.String",
+ "ProblemClassificationDisplayName": "System.String",
+ "ProblemClassificationId": "System.String",
+ "Description": "System.String",
+ "SupportTicketId": "System.String",
+ "Title": "System.String",
+ "Name": "System.String",
+ "Id": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Filter",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "GetByNameParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "SupportTicketName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Filter",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "GetByParentObjectParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "SupportTicketObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.PSSupportTicket",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.PSSupportTicket, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "ContactDetail": "Microsoft.Azure.Commands.Support.Models.PSContactProfile",
+ "QuotaTicketDetail": "Microsoft.Azure.Commands.Support.Models.PSQuotaTicketDetail",
+ "ServiceLevelAgreement": "Microsoft.Azure.Commands.Support.Models.PSServiceLevelAgreement",
+ "SupportEngineer": "Microsoft.Azure.Commands.Support.Models.PSSupportEngineer",
+ "Require24X7Response": "System.Nullable`1[System.Boolean]",
+ "ModifiedDate": "System.Nullable`1[System.DateTime]",
+ "CreatedDate": "System.Nullable`1[System.DateTime]",
+ "ProblemStartTime": "System.Nullable`1[System.DateTime]",
+ "Status": "System.String",
+ "ServiceDisplayName": "System.String",
+ "ServiceId": "System.String",
+ "SupportPlanType": "System.String",
+ "Type": "System.String",
+ "TechnicalTicketResourceId": "System.String",
+ "EnrollmentId": "System.String",
+ "Severity": "System.String",
+ "ProblemClassificationDisplayName": "System.String",
+ "ProblemClassificationId": "System.String",
+ "Description": "System.String",
+ "SupportTicketId": "System.String",
+ "Title": "System.String",
+ "Name": "System.String",
+ "Id": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Filter",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "New",
+ "NounName": "AzSupportTicketCommunication",
+ "Name": "New-AzSupportTicketCommunication",
+ "ClassName": "Microsoft.Azure.Commands.Support.Communications.NewAzSupportTicketCommunication",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "CreateByNameParameterSet",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.PSSupportTicketCommunication",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.PSSupportTicketCommunication, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "CreatedDate": "System.Nullable`1[System.DateTime]",
+ "Id": "System.String",
+ "Name": "System.String",
+ "Type": "System.String",
+ "CommunicationType": "System.String",
+ "CommunicationDirection": "System.String",
+ "Sender": "System.String",
+ "Subject": "System.String",
+ "Body": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "SupportTicketName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "SupportTicketObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.PSSupportTicket",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.PSSupportTicket, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "ContactDetail": "Microsoft.Azure.Commands.Support.Models.PSContactProfile",
+ "QuotaTicketDetail": "Microsoft.Azure.Commands.Support.Models.PSQuotaTicketDetail",
+ "ServiceLevelAgreement": "Microsoft.Azure.Commands.Support.Models.PSServiceLevelAgreement",
+ "SupportEngineer": "Microsoft.Azure.Commands.Support.Models.PSSupportEngineer",
+ "Require24X7Response": "System.Nullable`1[System.Boolean]",
+ "ModifiedDate": "System.Nullable`1[System.DateTime]",
+ "CreatedDate": "System.Nullable`1[System.DateTime]",
+ "ProblemStartTime": "System.Nullable`1[System.DateTime]",
+ "Status": "System.String",
+ "ServiceDisplayName": "System.String",
+ "ServiceId": "System.String",
+ "SupportPlanType": "System.String",
+ "Type": "System.String",
+ "TechnicalTicketResourceId": "System.String",
+ "EnrollmentId": "System.String",
+ "Severity": "System.String",
+ "ProblemClassificationDisplayName": "System.String",
+ "ProblemClassificationId": "System.String",
+ "Description": "System.String",
+ "SupportTicketId": "System.String",
+ "Title": "System.String",
+ "Name": "System.String",
+ "Id": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "Name",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Subject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Body",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Sender",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "CreateByNameParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "SupportTicketName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Subject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Body",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Sender",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "CreateByParentObjectParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "SupportTicketObject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.PSSupportTicket",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.PSSupportTicket, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "ContactDetail": "Microsoft.Azure.Commands.Support.Models.PSContactProfile",
+ "QuotaTicketDetail": "Microsoft.Azure.Commands.Support.Models.PSQuotaTicketDetail",
+ "ServiceLevelAgreement": "Microsoft.Azure.Commands.Support.Models.PSServiceLevelAgreement",
+ "SupportEngineer": "Microsoft.Azure.Commands.Support.Models.PSSupportEngineer",
+ "Require24X7Response": "System.Nullable`1[System.Boolean]",
+ "ModifiedDate": "System.Nullable`1[System.DateTime]",
+ "CreatedDate": "System.Nullable`1[System.DateTime]",
+ "ProblemStartTime": "System.Nullable`1[System.DateTime]",
+ "Status": "System.String",
+ "ServiceDisplayName": "System.String",
+ "ServiceId": "System.String",
+ "SupportPlanType": "System.String",
+ "Type": "System.String",
+ "TechnicalTicketResourceId": "System.String",
+ "EnrollmentId": "System.String",
+ "Severity": "System.String",
+ "ProblemClassificationDisplayName": "System.String",
+ "ProblemClassificationId": "System.String",
+ "Description": "System.String",
+ "SupportTicketId": "System.String",
+ "Title": "System.String",
+ "Name": "System.String",
+ "Id": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": true,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Subject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Body",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Sender",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "Name",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Subject",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Body",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Sender",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AsJob",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "New",
+ "NounName": "AzSupportContactProfileObject",
+ "Name": "New-AzSupportContactProfileObject",
+ "ClassName": "Microsoft.Azure.PowerShell.Cmdlets.Support.SupportTickets.NewAzSupportContactProfileObject",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "__AllParameterSets",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.PSContactProfile",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.PSContactProfile, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "FirstName": "System.String",
+ "LastName": "System.String",
+ "PreferredContactMethod": "System.String",
+ "PrimaryEmailAddress": "System.String",
+ "PhoneNumber": "System.String",
+ "PreferredTimeZone": "System.String",
+ "Country": "System.String",
+ "PreferredSupportLanguage": "System.String",
+ "AdditionalEmailAddresses": "System.String[]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "FirstName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "LastName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "PreferredContactMethod",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.ContactMethod",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.ContactMethod, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "CompareTo",
+ "Parameters": [
+ {
+ "Name": "target",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "HasFlag",
+ "Parameters": [
+ {
+ "Name": "flag",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetTypeCode",
+ "Parameters": [],
+ "ReturnType": "System.TypeCode"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "PrimaryEmailAddress",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "AdditionalEmailAddress",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": "System.String",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "PhoneNumber",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "PreferredTimeZone",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "Country",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "PreferredSupportLanguage",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "FirstName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "LastName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PreferredContactMethod",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.ContactMethod",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.ContactMethod, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "CompareTo",
+ "Parameters": [
+ {
+ "Name": "target",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "format",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "ToString",
+ "Parameters": [
+ {
+ "Name": "provider",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "HasFlag",
+ "Parameters": [
+ {
+ "Name": "flag",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetTypeCode",
+ "Parameters": [],
+ "ReturnType": "System.TypeCode"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PrimaryEmailAddress",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "AdditionalEmailAddress",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": "System.String",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PhoneNumber",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PreferredTimeZone",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "Country",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PreferredSupportLanguage",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ],
+ "AliasList": []
+ }
+ ],
+ "TypeDictionary": {
+ "System.String": {
+ "Namespace": null,
+ "Name": "System.String",
+ "AssemblyQualifiedName": null,
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "System.Boolean": {
+ "Namespace": null,
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": null,
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "System.Byte": {
+ "Namespace": null,
+ "Name": "System.Byte",
+ "AssemblyQualifiedName": null,
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "System.SByte": {
+ "Namespace": null,
+ "Name": "System.SByte",
+ "AssemblyQualifiedName": null,
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "System.Int16": {
+ "Namespace": null,
+ "Name": "System.Int16",
+ "AssemblyQualifiedName": null,
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "System.UInt16": {
+ "Namespace": null,
+ "Name": "System.UInt16",
+ "AssemblyQualifiedName": null,
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "System.Int32": {
+ "Namespace": null,
+ "Name": "System.Int32",
+ "AssemblyQualifiedName": null,
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "System.UInt32": {
+ "Namespace": null,
+ "Name": "System.UInt32",
+ "AssemblyQualifiedName": null,
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "System.Int64": {
+ "Namespace": null,
+ "Name": "System.Int64",
+ "AssemblyQualifiedName": null,
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "System.UInt64": {
+ "Namespace": null,
+ "Name": "System.UInt64",
+ "AssemblyQualifiedName": null,
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "System.Single": {
+ "Namespace": null,
+ "Name": "System.Single",
+ "AssemblyQualifiedName": null,
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "System.Double": {
+ "Namespace": null,
+ "Name": "System.Double",
+ "AssemblyQualifiedName": null,
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "System.Decimal": {
+ "Namespace": null,
+ "Name": "System.Decimal",
+ "AssemblyQualifiedName": null,
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "System.Char": {
+ "Namespace": null,
+ "Name": "System.Char",
+ "AssemblyQualifiedName": null,
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "Microsoft.Azure.Commands.Support.Models.PSContactProfile": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.PSContactProfile",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.PSContactProfile, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "FirstName": "System.String",
+ "LastName": "System.String",
+ "PreferredContactMethod": "System.String",
+ "PrimaryEmailAddress": "System.String",
+ "PhoneNumber": "System.String",
+ "PreferredTimeZone": "System.String",
+ "Country": "System.String",
+ "PreferredSupportLanguage": "System.String",
+ "AdditionalEmailAddresses": "System.String[]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "System.String[]": {
+ "Namespace": "System",
+ "Name": "System.String[]",
+ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": "System.String",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "System.Type": {
+ "Namespace": "System",
+ "Name": "System.Type",
+ "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "Microsoft.Azure.Commands.Support.Models.PSQuotaTicketDetail": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.PSQuotaTicketDetail",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.PSQuotaTicketDetail, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "QuotaChangeRequests": "Microsoft.Azure.Commands.Support.Models.PSQuotaChangeRequest[]",
+ "QuotaChangeRequestVersion": "System.String",
+ "QuotaChangeRequestSubType": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "Microsoft.Azure.Commands.Support.Models.PSQuotaChangeRequest[]": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.PSQuotaChangeRequest[]",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.PSQuotaChangeRequest[], Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {},
+ "ElementType": "Microsoft.Azure.Commands.Support.Models.PSQuotaChangeRequest",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "Microsoft.Azure.Commands.Support.Models.PSQuotaChangeRequest": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.PSQuotaChangeRequest",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.PSQuotaChangeRequest, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "Region": "System.String",
+ "Payload": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "Microsoft.Azure.Commands.Support.Models.PSServiceLevelAgreement": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.PSServiceLevelAgreement",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.PSServiceLevelAgreement, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "StartTime": "System.Nullable`1[System.DateTime]",
+ "ExpirationTime": "System.Nullable`1[System.DateTime]",
+ "SlaMinutes": "System.Nullable`1[System.Int32]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "System.Nullable`1[System.DateTime]": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.DateTime]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.DateTime"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "System.DateTime": {
+ "Namespace": "System",
+ "Name": "System.DateTime",
+ "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "System.Nullable`1[System.Int32]": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "Microsoft.Azure.Commands.Support.Models.PSSupportEngineer": {
+ "Namespace": "Microsoft.Azure.Commands.Support.Models",
+ "Name": "Microsoft.Azure.Commands.Support.Models.PSSupportEngineer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Support.Models.PSSupportEngineer, Microsoft.Azure.PowerShell.Cmdlets.Support, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
+ "Properties": {
+ "EmailAddress": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ }
+ ]
+ },
+ "System.Nullable`1[System.Boolean]": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Boolean]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Boolean"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Account": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount",
+ "Environment": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment",
+ "Subscription": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription",
+ "Tenant": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTenant",
+ "TokenCache": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTokenCache",
+ "VersionProfile": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "TenantMap": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "Id": "System.String",
+ "Credential": "System.String",
+ "Type": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "System.Collections.Generic.IDictionary`2[System.String,System.String]": {
+ "Namespace": "System.Collections.Generic",
+ "Name": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.String",
+ "System.String"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "OnPremise": "System.Boolean",
+ "VersionProfiles": "System.Collections.Generic.IList`1[System.String]",
+ "AzureDataLakeStoreFileSystemEndpointSuffix": "System.String",
+ "AzureDataLakeAnalyticsCatalogAndJobEndpointSuffix": "System.String",
+ "BatchEndpointResourceId": "System.String",
+ "DataLakeEndpointResourceId": "System.String",
+ "GraphEndpointResourceId": "System.String",
+ "AzureKeyVaultServiceEndpointResourceId": "System.String",
+ "AzureKeyVaultDnsSuffix": "System.String",
+ "TrafficManagerDnsSuffix": "System.String",
+ "SqlDatabaseDnsSuffix": "System.String",
+ "StorageEndpointSuffix": "System.String",
+ "ActiveDirectoryServiceEndpointResourceId": "System.String",
+ "GraphUrl": "System.String",
+ "GalleryUrl": "System.String",
+ "ActiveDirectoryAuthority": "System.String",
+ "PublishSettingsFileUrl": "System.String",
+ "ManagementPortalUrl": "System.String",
+ "ResourceManagerUrl": "System.String",
+ "ServiceManagementUrl": "System.String",
+ "AdTenant": "System.String",
+ "Name": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "System.Collections.Generic.IList`1[System.String]": {
+ "Namespace": "System.Collections.Generic",
+ "Name": "System.Collections.Generic.IList`1[System.String]",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.String"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Id": "System.String",
+ "Name": "System.String",
+ "State": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTenant": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTenant",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTenant, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Id": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTokenCache": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTokenCache",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTokenCache, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "CacheData": "System.Byte[]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "System.Byte[]": {
+ "Namespace": "System",
+ "Name": "System.Byte[]",
+ "AssemblyQualifiedName": "System.Byte[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": "System.Byte",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "System.Void": {
+ "Namespace": "System",
+ "Name": "System.Void",
+ "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]": {
+ "Namespace": "System.Collections.Generic",
+ "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]": {
+ "Namespace": "System.Collections.Generic",
+ "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]": {
+ "Namespace": "System.Collections.Generic",
+ "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]",
+ "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "System.TypeCode": {
+ "Namespace": "System",
+ "Name": "System.TypeCode",
+ "AssemblyQualifiedName": "System.TypeCode, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ }
+ }
+}
diff --git a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Websites.dll.json b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Websites.dll.json
index c654d8e38431..fc4afab79364 100644
--- a/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Websites.dll.json
+++ b/tools/Tools.Common/SerializedCmdlets/Microsoft.Azure.PowerShell.Cmdlets.Websites.dll.json
@@ -1,5 +1,1424 @@
{
"Cmdlets": [
+ {
+ "VerbName": "Add",
+ "NounName": "AzWebAppTrafficRouting",
+ "Name": "Add-AzWebAppTrafficRouting",
+ "ClassName": "Microsoft.Azure.Commands.WebApps.Cmdlets.TrafficRouting.AddAzureWebAppTrafficRoutingRuleCmdlet",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "RoutingParameterSet",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Management.WebSites.Models",
+ "Name": "Microsoft.Azure.Management.WebSites.Models.RampUpRule",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.WebSites.Models.RampUpRule, Microsoft.Azure.Management.Websites, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "ReroutePercentage": "System.Nullable`1[System.Double]",
+ "ChangeStep": "System.Nullable`1[System.Double]",
+ "MinReroutePercentage": "System.Nullable`1[System.Double]",
+ "MaxReroutePercentage": "System.Nullable`1[System.Double]",
+ "ChangeIntervalInMinutes": "System.Nullable`1[System.Int32]",
+ "ActionHostName": "System.String",
+ "ChangeDecisionCallbackUrl": "System.String",
+ "Name": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "actionHostName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "reroutePercentage",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "changeStep",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "changeIntervalInMinutes",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "minReroutePercentage",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "maxReroutePercentage",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "changeDecisionCallbackUrl",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "name",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "WebAppName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "RoutingRule",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "RoutingParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "WebAppName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RoutingRule",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Get",
+ "NounName": "AzWebAppTrafficRouting",
+ "Name": "Get-AzWebAppTrafficRouting",
+ "ClassName": "Microsoft.Azure.Commands.WebApps.Cmdlets.TrafficRouting.GetAzureWebAppTrafficRoutingRule",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "RoutingParameterSet",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Management.WebSites.Models",
+ "Name": "Microsoft.Azure.Management.WebSites.Models.RampUpRule",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.WebSites.Models.RampUpRule, Microsoft.Azure.Management.Websites, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "ReroutePercentage": "System.Nullable`1[System.Double]",
+ "ChangeStep": "System.Nullable`1[System.Double]",
+ "MinReroutePercentage": "System.Nullable`1[System.Double]",
+ "MaxReroutePercentage": "System.Nullable`1[System.Double]",
+ "ChangeIntervalInMinutes": "System.Nullable`1[System.Int32]",
+ "ActionHostName": "System.String",
+ "ChangeDecisionCallbackUrl": "System.String",
+ "Name": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "actionHostName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "reroutePercentage",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "changeStep",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "changeIntervalInMinutes",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "minReroutePercentage",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "maxReroutePercentage",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "changeDecisionCallbackUrl",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "name",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "WebAppName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "RuleName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "RoutingParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "WebAppName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RuleName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Remove",
+ "NounName": "AzWebAppTrafficRouting",
+ "Name": "Remove-AzWebAppTrafficRouting",
+ "ClassName": "Microsoft.Azure.Commands.WebApps.Cmdlets.TrafficRouting.RemoveAzureWebAppTrafficRoutingRuleCmdlet",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "RoutingParameterSet",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.Boolean",
+ "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "WebAppName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "RuleName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "RoutingParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "WebAppName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RuleName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "PassThru",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Management.Automation",
+ "Name": "System.Management.Automation.SwitchParameter",
+ "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ],
+ "AliasList": []
+ },
+ {
+ "VerbName": "Update",
+ "NounName": "AzWebAppTrafficRouting",
+ "Name": "Update-AzWebAppTrafficRouting",
+ "ClassName": "Microsoft.Azure.Commands.WebApps.Cmdlets.TrafficRouting.UpdateAzureWebAppTrafficRoutingRuleCmdlet",
+ "SupportsShouldProcess": true,
+ "ConfirmImpact": 2,
+ "SupportsPaging": false,
+ "DefaultParameterSetName": "RoutingParameterSet",
+ "OutputTypes": [
+ {
+ "Type": {
+ "Namespace": "Microsoft.Azure.Management.WebSites.Models",
+ "Name": "Microsoft.Azure.Management.WebSites.Models.RampUpRule",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.WebSites.Models.RampUpRule, Microsoft.Azure.Management.Websites, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "ReroutePercentage": "System.Nullable`1[System.Double]",
+ "ChangeStep": "System.Nullable`1[System.Double]",
+ "MinReroutePercentage": "System.Nullable`1[System.Double]",
+ "MaxReroutePercentage": "System.Nullable`1[System.Double]",
+ "ChangeIntervalInMinutes": "System.Nullable`1[System.Int32]",
+ "ActionHostName": "System.String",
+ "ChangeDecisionCallbackUrl": "System.String",
+ "Name": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "actionHostName",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "reroutePercentage",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "changeStep",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "changeIntervalInMinutes",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "minReroutePercentage",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "maxReroutePercentage",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "changeDecisionCallbackUrl",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "name",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "ParameterSets": [
+ "__AllParameterSets"
+ ]
+ }
+ ],
+ "Parameters": [
+ {
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "WebAppName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "RoutingRule",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ }
+ ],
+ "ParameterSets": [
+ {
+ "Name": "RoutingParameterSet",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "ResourceGroupName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "WebAppName",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System",
+ "Name": "System.String",
+ "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "RoutingRule",
+ "AliasList": [],
+ "Type": {
+ "Namespace": "System.Collections",
+ "Name": "System.Collections.Hashtable",
+ "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": true
+ },
+ "Mandatory": true,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ },
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ },
+ {
+ "Name": "__AllParameterSets",
+ "Parameters": [
+ {
+ "ParameterMetadata": {
+ "Name": "DefaultProfile",
+ "AliasList": [
+ "AzContext",
+ "AzureRmContext",
+ "AzureCredential"
+ ],
+ "Type": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "ValidateSet": [],
+ "ValidateRangeMin": null,
+ "ValidateRangeMax": null,
+ "ValidateNotNullOrEmpty": false
+ },
+ "Mandatory": false,
+ "Position": -2147483648,
+ "ValueFromPipeline": false,
+ "ValueFromPipelineByPropertyName": false
+ }
+ ]
+ }
+ ],
+ "AliasList": []
+ },
{
"VerbName": "Get",
"NounName": "AzWebAppSlot",
@@ -14,7 +1433,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -179,7 +1598,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -512,7 +1931,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -832,7 +2251,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -1073,7 +2492,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -1537,7 +2956,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -2098,7 +3517,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -2524,7 +3943,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -2985,7 +4404,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -3228,7 +4647,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -3411,7 +4830,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -3854,7 +5273,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -4429,7 +5848,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -4834,7 +6253,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -5122,7 +6541,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -5387,7 +6806,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -5598,7 +7017,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -5763,7 +7182,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -6028,7 +7447,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -6239,7 +7658,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -6769,7 +8188,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[], Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[], Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath",
"GenericTypeArguments": [],
@@ -6921,7 +8340,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -7671,7 +9090,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[], Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[], Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath",
"GenericTypeArguments": [],
@@ -8304,7 +9723,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -9061,7 +10480,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -9538,7 +10957,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -9801,7 +11220,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -9966,7 +11385,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -10231,7 +11650,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -10442,7 +11861,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -10607,7 +12026,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -10872,7 +12291,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -11138,7 +12557,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -11214,7 +12633,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -11411,7 +12830,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -11603,7 +13022,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -11699,7 +13118,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -11863,7 +13282,7 @@
"Type": {
"Namespace": "System",
"Name": "System.Nullable`1[Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction]",
- "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -11968,7 +13387,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Cmdlets.BackupRestore",
"Name": "Microsoft.Azure.Commands.WebApps.Cmdlets.BackupRestore.AzureWebAppSnapshot",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.BackupRestore.AzureWebAppSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.BackupRestore.AzureWebAppSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"SnapshotTime": "System.DateTime",
"ResourceGroupName": "System.String",
@@ -12096,7 +13515,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -12453,7 +13872,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -12985,7 +14404,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -14053,7 +15472,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -14506,7 +15925,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -14890,7 +16309,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -15391,7 +16810,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -15654,7 +17073,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models.WebApp",
"Name": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile",
"Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription",
@@ -16047,7 +17466,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models.WebApp",
"Name": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile",
"Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription",
@@ -16357,7 +17776,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models.WebApp",
"Name": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile",
"Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription",
@@ -17062,7 +18481,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models.WebApp",
"Name": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile",
"Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription",
@@ -17530,7 +18949,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models.WebApp",
"Name": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile",
"Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription",
@@ -17889,7 +19308,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models.WebApp",
"Name": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile",
"Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription",
@@ -18082,7 +19501,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models.WebApp",
"Name": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile",
"Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription",
@@ -18333,7 +19752,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models.WebApp",
"Name": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile",
"Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription",
@@ -18788,7 +20207,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models.WebApp",
"Name": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile",
"Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription",
@@ -18957,7 +20376,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScmSiteUseMainSiteRestrictionConfig": "System.Boolean",
"MainSiteAccessRestrictions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction]",
@@ -20311,7 +21730,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScmSiteUseMainSiteRestrictionConfig": "System.Boolean",
"MainSiteAccessRestrictions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction]",
@@ -20579,7 +21998,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScmSiteUseMainSiteRestrictionConfig": "System.Boolean",
"MainSiteAccessRestrictions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction]",
@@ -20973,7 +22392,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScmSiteUseMainSiteRestrictionConfig": "System.Boolean",
"MainSiteAccessRestrictions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction]",
@@ -21115,7 +22534,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScmSiteUseMainSiteRestrictionConfig": "System.Boolean",
"MainSiteAccessRestrictions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction]",
@@ -21437,7 +22856,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestrictionConfig, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"ScmSiteUseMainSiteRestrictionConfig": "System.Boolean",
"MainSiteAccessRestrictions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction]",
@@ -21804,7 +23223,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models.WebApp",
"Name": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile",
"Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription",
@@ -22319,7 +23738,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models.WebApp",
"Name": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile",
"Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription",
@@ -22592,7 +24011,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps",
"Name": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackupConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackupConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackupConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Databases": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting[]",
"KeepAtLeastOneBackup": "System.Nullable`1[System.Boolean]",
@@ -22798,7 +24217,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -23347,7 +24766,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -23634,7 +25053,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps",
"Name": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.PSAzureDeletedWebApp",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.PSAzureDeletedWebApp, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.PSAzureDeletedWebApp, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"DeletionTime": "System.DateTime",
"DeletedSiteId": "System.Int32",
@@ -23960,7 +25379,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps",
"Name": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackup, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackup, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Databases": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting[]",
"Scheduled": "System.Nullable`1[System.Boolean]",
@@ -24101,7 +25520,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -24458,7 +25877,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -24649,7 +26068,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps",
"Name": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackupConfiguration",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackupConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackupConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Databases": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting[]",
"KeepAtLeastOneBackup": "System.Nullable`1[System.Boolean]",
@@ -24765,7 +26184,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -25030,7 +26449,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -25241,7 +26660,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps",
"Name": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackup, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackup, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Databases": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting[]",
"Scheduled": "System.Nullable`1[System.Boolean]",
@@ -25364,7 +26783,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -25629,7 +27048,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -25840,7 +27259,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps",
"Name": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackup",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackup, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps.AzureWebAppBackup, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Databases": "Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting[]",
"Scheduled": "System.Nullable`1[System.Boolean]",
@@ -25981,7 +27400,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -26338,7 +27757,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -26749,7 +28168,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -27106,7 +28525,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -27297,7 +28716,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models.WebApp",
"Name": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSCertificate",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSCertificate, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSCertificate, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile",
"CerBlob": "System.Byte[]",
@@ -27718,7 +29137,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -28075,7 +29494,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -28408,7 +29827,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -29053,7 +30472,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -29311,7 +30730,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -29775,7 +31194,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -30232,7 +31651,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -30582,7 +32001,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -30987,7 +32406,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -31275,7 +32694,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -31540,7 +32959,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -31751,7 +33170,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -31898,7 +33317,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models.WebApp",
"Name": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile",
"Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription",
@@ -32135,7 +33554,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models.WebApp",
"Name": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebApp.PSAppServicePlan, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"HostingEnvironmentProfile": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile",
"Sku": "Microsoft.Azure.Management.WebSites.Models.SkuDescription",
@@ -32627,7 +34046,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -33164,7 +34583,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -33572,7 +34991,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -34009,7 +35428,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -34252,7 +35671,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "System.Nullable`1[Microsoft.Azure.Management.WebSites.Models.AzureStorageType]",
"Name": "System.String",
@@ -34913,7 +36332,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -35270,7 +36689,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -35461,7 +36880,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -35646,7 +37065,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -36384,7 +37803,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -37200,7 +38619,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -37419,7 +38838,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -37872,7 +39291,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -38202,7 +39621,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -38583,7 +40002,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -38853,7 +40272,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -39094,7 +40513,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -39305,7 +40724,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -39452,7 +40871,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -39693,7 +41112,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -39904,7 +41323,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -40452,7 +41871,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[], Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[], Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath",
"GenericTypeArguments": [],
@@ -40568,7 +41987,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -41202,7 +42621,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[], Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[], Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath",
"GenericTypeArguments": [],
@@ -41634,7 +43053,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -41897,7 +43316,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -42044,7 +43463,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -42285,7 +43704,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -42496,7 +43915,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -42643,7 +44062,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -42884,7 +44303,7 @@
"Type": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSSite",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSSite, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"AzureStoragePath": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
"CloningInfo": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -43223,10 +44642,234 @@
"Methods": [],
"Constructors": []
},
+ "System.Nullable`1[System.Double]": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Double]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Double, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Double"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "System.Nullable`1[System.Int32]": {
+ "Namespace": "System",
+ "Name": "System.Nullable`1[System.Int32]",
+ "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.Int32"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "System.Type": {
+ "Namespace": "System",
+ "Name": "System.Type",
+ "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Account": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount",
+ "Environment": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment",
+ "Subscription": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription",
+ "Tenant": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTenant",
+ "TokenCache": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTokenCache",
+ "VersionProfile": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "TenantMap": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "Id": "System.String",
+ "Credential": "System.String",
+ "Type": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "System.Collections.Generic.IDictionary`2[System.String,System.String]": {
+ "Namespace": "System.Collections.Generic",
+ "Name": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
+ "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.String",
+ "System.String"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "OnPremise": "System.Boolean",
+ "VersionProfiles": "System.Collections.Generic.IList`1[System.String]",
+ "AzureDataLakeStoreFileSystemEndpointSuffix": "System.String",
+ "AzureDataLakeAnalyticsCatalogAndJobEndpointSuffix": "System.String",
+ "BatchEndpointResourceId": "System.String",
+ "DataLakeEndpointResourceId": "System.String",
+ "GraphEndpointResourceId": "System.String",
+ "AzureKeyVaultServiceEndpointResourceId": "System.String",
+ "AzureKeyVaultDnsSuffix": "System.String",
+ "TrafficManagerDnsSuffix": "System.String",
+ "SqlDatabaseDnsSuffix": "System.String",
+ "StorageEndpointSuffix": "System.String",
+ "ActiveDirectoryServiceEndpointResourceId": "System.String",
+ "GraphUrl": "System.String",
+ "GalleryUrl": "System.String",
+ "ActiveDirectoryAuthority": "System.String",
+ "PublishSettingsFileUrl": "System.String",
+ "ManagementPortalUrl": "System.String",
+ "ResourceManagerUrl": "System.String",
+ "ServiceManagementUrl": "System.String",
+ "AdTenant": "System.String",
+ "Name": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "System.Collections.Generic.IList`1[System.String]": {
+ "Namespace": "System.Collections.Generic",
+ "Name": "System.Collections.Generic.IList`1[System.String]",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "System.String"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Id": "System.String",
+ "Name": "System.String",
+ "State": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTenant": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTenant",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTenant, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Id": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTokenCache": {
+ "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions",
+ "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTokenCache",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTokenCache, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "CacheData": "System.Byte[]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "Clear",
+ "Parameters": [],
+ "ReturnType": "System.Void"
+ }
+ ],
+ "Constructors": []
+ },
+ "System.Byte[]": {
+ "Namespace": "System",
+ "Name": "System.Byte[]",
+ "AssemblyQualifiedName": "System.Byte[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": "System.Byte",
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "System.Void": {
+ "Namespace": "System",
+ "Name": "System.Void",
+ "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [],
+ "Constructors": []
+ },
+ "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]": {
+ "Namespace": "System.Collections.Generic",
+ "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
+ "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]": {
+ "Namespace": "System.Collections.Generic",
+ "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
+ "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
+ "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]": {
+ "Namespace": "System.Collections.Generic",
+ "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]",
+ "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Properties": {},
+ "ElementType": null,
+ "GenericTypeArguments": [
+ "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription"
+ ],
+ "Methods": [],
+ "Constructors": []
+ },
"Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[]",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[], Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath[], Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath",
"GenericTypeArguments": [],
@@ -43236,7 +44879,7 @@
"Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.WebAppAzureStoragePath, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Type": "System.Nullable`1[Microsoft.Azure.Management.WebSites.Models.AzureStorageType]",
"Name": "System.String",
@@ -43399,16 +45042,6 @@
"Methods": [],
"Constructors": []
},
- "System.Type": {
- "Namespace": "System",
- "Name": "System.Type",
- "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
"Microsoft.Azure.Management.WebSites.Models.CloningInfo": {
"Namespace": "Microsoft.Azure.Management.WebSites.Models",
"Name": "Microsoft.Azure.Management.WebSites.Models.CloningInfo",
@@ -43518,19 +45151,6 @@
}
]
},
- "System.Collections.Generic.IDictionary`2[System.String,System.String]": {
- "Namespace": "System.Collections.Generic",
- "Name": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
- "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [
- "System.String",
- "System.String"
- ],
- "Methods": [],
- "Constructors": []
- },
"System.Nullable`1[System.Boolean]": {
"Namespace": "System",
"Name": "System.Nullable`1[System.Boolean]",
@@ -43565,16 +45185,6 @@
"Methods": [],
"Constructors": []
},
- "System.Void": {
- "Namespace": "System",
- "Name": "System.Void",
- "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
"Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile": {
"Namespace": "Microsoft.Azure.Management.WebSites.Models",
"Name": "Microsoft.Azure.Management.WebSites.Models.HostingEnvironmentProfile",
@@ -44570,18 +46180,6 @@
}
]
},
- "System.Nullable`1[System.Int32]": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Int32]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [
- "System.Int32"
- ],
- "Methods": [],
- "Constructors": []
- },
"Microsoft.Azure.Management.WebSites.Models.SlowRequestsBasedTrigger": {
"Namespace": "Microsoft.Azure.Management.WebSites.Models",
"Name": "Microsoft.Azure.Management.WebSites.Models.SlowRequestsBasedTrigger",
@@ -44631,178 +46229,166 @@
"ReturnType": null,
"Parameters": [
{
- "Name": "timeTaken",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "count",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "timeInterval",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
- },
- "System.Collections.Generic.IList`1[Microsoft.Azure.Management.WebSites.Models.StatusCodesBasedTrigger]": {
- "Namespace": "System.Collections.Generic",
- "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.WebSites.Models.StatusCodesBasedTrigger]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.WebSites.Models.StatusCodesBasedTrigger, Microsoft.Azure.Management.Websites, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [
- "Microsoft.Azure.Management.WebSites.Models.StatusCodesBasedTrigger"
- ],
- "Methods": [],
- "Constructors": []
- },
- "Microsoft.Azure.Management.WebSites.Models.StatusCodesBasedTrigger": {
- "Namespace": "Microsoft.Azure.Management.WebSites.Models",
- "Name": "Microsoft.Azure.Management.WebSites.Models.StatusCodesBasedTrigger",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.WebSites.Models.StatusCodesBasedTrigger, Microsoft.Azure.Management.Websites, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Status": "System.Nullable`1[System.Int32]",
- "SubStatus": "System.Nullable`1[System.Int32]",
- "Win32Status": "System.Nullable`1[System.Int32]",
- "Count": "System.Nullable`1[System.Int32]",
- "TimeInterval": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
- },
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "status",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "subStatus",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "win32Status",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "count",
- "Type": "System.Reflection.RuntimeParameterInfo"
- },
- {
- "Name": "timeInterval",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ]
- }
- ]
- },
- "Microsoft.Azure.Management.WebSites.Models.CorsSettings": {
- "Namespace": "Microsoft.Azure.Management.WebSites.Models",
- "Name": "Microsoft.Azure.Management.WebSites.Models.CorsSettings",
- "AssemblyQualifiedName": "Microsoft.Azure.Management.WebSites.Models.CorsSettings, Microsoft.Azure.Management.Websites, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "AllowedOrigins": "System.Collections.Generic.IList`1[System.String]",
- "SupportCredentials": "System.Nullable`1[System.Boolean]"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "ToString",
- "Parameters": [],
- "ReturnType": "System.String"
- },
- {
- "Name": "Equals",
- "Parameters": [
- {
- "Name": "obj",
- "Type": "System.Reflection.RuntimeParameterInfo"
- }
- ],
- "ReturnType": "System.Boolean"
- },
- {
- "Name": "GetHashCode",
- "Parameters": [],
- "ReturnType": "System.Int32"
- },
- {
- "Name": "GetType",
- "Parameters": [],
- "ReturnType": "System.Type"
- }
- ],
- "Constructors": [
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": []
- },
- {
- "Name": "",
- "ReturnType": null,
- "Parameters": [
- {
- "Name": "allowedOrigins",
+ "Name": "timeTaken",
"Type": "System.Reflection.RuntimeParameterInfo"
},
{
- "Name": "supportCredentials",
+ "Name": "count",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "timeInterval",
"Type": "System.Reflection.RuntimeParameterInfo"
}
]
}
]
},
- "System.Collections.Generic.IList`1[System.String]": {
+ "System.Collections.Generic.IList`1[Microsoft.Azure.Management.WebSites.Models.StatusCodesBasedTrigger]": {
"Namespace": "System.Collections.Generic",
- "Name": "System.Collections.Generic.IList`1[System.String]",
- "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Management.WebSites.Models.StatusCodesBasedTrigger]",
+ "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Management.WebSites.Models.StatusCodesBasedTrigger, Microsoft.Azure.Management.Websites, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
- "System.String"
+ "Microsoft.Azure.Management.WebSites.Models.StatusCodesBasedTrigger"
],
"Methods": [],
"Constructors": []
},
+ "Microsoft.Azure.Management.WebSites.Models.StatusCodesBasedTrigger": {
+ "Namespace": "Microsoft.Azure.Management.WebSites.Models",
+ "Name": "Microsoft.Azure.Management.WebSites.Models.StatusCodesBasedTrigger",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.WebSites.Models.StatusCodesBasedTrigger, Microsoft.Azure.Management.Websites, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "Status": "System.Nullable`1[System.Int32]",
+ "SubStatus": "System.Nullable`1[System.Int32]",
+ "Win32Status": "System.Nullable`1[System.Int32]",
+ "Count": "System.Nullable`1[System.Int32]",
+ "TimeInterval": "System.String"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "status",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "subStatus",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "win32Status",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "count",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "timeInterval",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
+ "Microsoft.Azure.Management.WebSites.Models.CorsSettings": {
+ "Namespace": "Microsoft.Azure.Management.WebSites.Models",
+ "Name": "Microsoft.Azure.Management.WebSites.Models.CorsSettings",
+ "AssemblyQualifiedName": "Microsoft.Azure.Management.WebSites.Models.CorsSettings, Microsoft.Azure.Management.Websites, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
+ "Properties": {
+ "AllowedOrigins": "System.Collections.Generic.IList`1[System.String]",
+ "SupportCredentials": "System.Nullable`1[System.Boolean]"
+ },
+ "ElementType": null,
+ "GenericTypeArguments": [],
+ "Methods": [
+ {
+ "Name": "ToString",
+ "Parameters": [],
+ "ReturnType": "System.String"
+ },
+ {
+ "Name": "Equals",
+ "Parameters": [
+ {
+ "Name": "obj",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ],
+ "ReturnType": "System.Boolean"
+ },
+ {
+ "Name": "GetHashCode",
+ "Parameters": [],
+ "ReturnType": "System.Int32"
+ },
+ {
+ "Name": "GetType",
+ "Parameters": [],
+ "ReturnType": "System.Type"
+ }
+ ],
+ "Constructors": [
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": []
+ },
+ {
+ "Name": "",
+ "ReturnType": null,
+ "Parameters": [
+ {
+ "Name": "allowedOrigins",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ },
+ {
+ "Name": "supportCredentials",
+ "Type": "System.Reflection.RuntimeParameterInfo"
+ }
+ ]
+ }
+ ]
+ },
"Microsoft.Azure.Management.WebSites.Models.Experiments": {
"Namespace": "Microsoft.Azure.Management.WebSites.Models",
"Name": "Microsoft.Azure.Management.WebSites.Models.Experiments",
@@ -44958,18 +46544,6 @@
}
]
},
- "System.Nullable`1[System.Double]": {
- "Namespace": "System",
- "Name": "System.Nullable`1[System.Double]",
- "AssemblyQualifiedName": "System.Nullable`1[[System.Double, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [
- "System.Double"
- ],
- "Methods": [],
- "Constructors": []
- },
"Microsoft.Azure.Management.WebSites.Models.PushSettings": {
"Namespace": "Microsoft.Azure.Management.WebSites.Models",
"Name": "Microsoft.Azure.Management.WebSites.Models.PushSettings",
@@ -47115,161 +48689,6 @@
"Methods": [],
"Constructors": []
},
- "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Account": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount",
- "Environment": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment",
- "Subscription": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription",
- "Tenant": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTenant",
- "TokenCache": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTokenCache",
- "VersionProfile": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "TenantMap": "System.Collections.Generic.IDictionary`2[System.String,System.String]",
- "Id": "System.String",
- "Credential": "System.String",
- "Type": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "OnPremise": "System.Boolean",
- "VersionProfiles": "System.Collections.Generic.IList`1[System.String]",
- "AzureDataLakeStoreFileSystemEndpointSuffix": "System.String",
- "AzureDataLakeAnalyticsCatalogAndJobEndpointSuffix": "System.String",
- "BatchEndpointResourceId": "System.String",
- "DataLakeEndpointResourceId": "System.String",
- "GraphEndpointResourceId": "System.String",
- "AzureKeyVaultServiceEndpointResourceId": "System.String",
- "AzureKeyVaultDnsSuffix": "System.String",
- "TrafficManagerDnsSuffix": "System.String",
- "SqlDatabaseDnsSuffix": "System.String",
- "StorageEndpointSuffix": "System.String",
- "ActiveDirectoryServiceEndpointResourceId": "System.String",
- "GraphUrl": "System.String",
- "GalleryUrl": "System.String",
- "ActiveDirectoryAuthority": "System.String",
- "PublishSettingsFileUrl": "System.String",
- "ManagementPortalUrl": "System.String",
- "ResourceManagerUrl": "System.String",
- "ServiceManagementUrl": "System.String",
- "AdTenant": "System.String",
- "Name": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Id": "System.String",
- "Name": "System.String",
- "State": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTenant": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTenant",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTenant, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "Id": "System.String"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTokenCache": {
- "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions",
- "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTokenCache",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTokenCache, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35",
- "Properties": {
- "CacheData": "System.Byte[]"
- },
- "ElementType": null,
- "GenericTypeArguments": [],
- "Methods": [
- {
- "Name": "Clear",
- "Parameters": [],
- "ReturnType": "System.Void"
- }
- ],
- "Constructors": []
- },
- "System.Byte[]": {
- "Namespace": "System",
- "Name": "System.Byte[]",
- "AssemblyQualifiedName": "System.Byte[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": "System.Byte",
- "GenericTypeArguments": [],
- "Methods": [],
- "Constructors": []
- },
- "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]": {
- "Namespace": "System.Collections.Generic",
- "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]",
- "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [
- "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount"
- ],
- "Methods": [],
- "Constructors": []
- },
- "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]": {
- "Namespace": "System.Collections.Generic",
- "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]",
- "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [
- "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment"
- ],
- "Methods": [],
- "Constructors": []
- },
- "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]": {
- "Namespace": "System.Collections.Generic",
- "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]",
- "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
- "Properties": {},
- "ElementType": null,
- "GenericTypeArguments": [
- "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription"
- ],
- "Methods": [],
- "Constructors": []
- },
"Microsoft.Azure.Management.WebSites.Models.ResourceMetricName": {
"Namespace": "Microsoft.Azure.Management.WebSites.Models",
"Name": "Microsoft.Azure.Management.WebSites.Models.ResourceMetricName",
@@ -47509,7 +48928,7 @@
"Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Utilities",
"Name": "Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Utilities.SwapWithPreviewAction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [],
@@ -48126,7 +49545,7 @@
"System.Collections.Generic.List`1[Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction]": {
"Namespace": "System.Collections.Generic",
"Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction]",
- "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
+ "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e",
"Properties": {},
"ElementType": null,
"GenericTypeArguments": [
@@ -48138,7 +49557,7 @@
"Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction": {
"Namespace": "Microsoft.Azure.Commands.WebApps.Models",
"Name": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction",
- "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.7.0.0, Culture=neutral, PublicKeyToken=null",
+ "AssemblyQualifiedName": "Microsoft.Azure.Commands.WebApps.Models.PSAccessRestriction, Microsoft.Azure.PowerShell.Cmdlets.Websites, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null",
"Properties": {
"Priority": "System.Int32",
"RuleName": "System.String",